diff --git a/Neural graph module/ngm.ipynb b/Neural graph module/ngm.ipynb new file mode 100644 index 0000000000000000000000000000000000000000..bf75c0e5c224fa7785492429a288b518ec45bada --- /dev/null +++ b/Neural graph module/ngm.ipynb @@ -0,0 +1,121 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "import datasets\n", + "import torch\n", + "import torch.nn as nn\n", + "import pandas as pd\n", + "import numpy as np\n", + "from transformers import BertTokenizer, BertModel\n", + "from transformers.models.bert.modeling_bert import shift_tokens_right\n" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "tokenizer = BertTokenizer.from_pretrained(\"bert-base-uncased\")" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "\n", + "class NgmOne(nn.Module):\n", + " def __init__(self):\n", + " super(NgmOne, self).__init__()\n", + " self.tokenizer = BertTokenizer.from_pretrained(\"bert-base-uncased\")\n", + " self.bert = BertModel.from_pretrained(\"bert-base-uncased\")\n", + " self.linear = nn.Linear(768, 1)\n", + " self.softmax = nn.Softmax(dim=1)\n", + " \n", + " def forward(self, triplet, question):\n", + " \"\"\"Triplet is a list of subject entity, relation, object entity, None if not present\"\"\"\n", + " \n", + " #seq = \"[CLS] \" + question + \" [SEP] \"\n", + " if triplet[0] is not None:\n", + " #seq += \"[SUB] [SEP] \" + triplet[0]\n", + " tokenized_seq = self.tokenizer(question, \"[SUB]\", triplet[0])#, padding=True, truncation=True)\n", + " elif triplet[2] is not None:\n", + " #seq += \"[OBJ] [SEP] \" + triplet[2]\n", + " tokenized_seq = self.tokenizer(question, \"[OBJ]\", triplet[2])#, padding=True, truncation=True)\n", + " \n", + " x = self.bert.forward(**tokenized_seq)\n", + " x = self.linear(x)\n", + " \n", + " x = self.softmax(x)\n", + " return x\n", + "\n", + "\n", + "\n" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "def encode(batch):\n", + " return tokenizer(batch, padding=\"max_length\", max_length=256, return_tensors=\"pt\")\n", + "\n", + "\n", + "def convert_to_features(example_batch):\n", + " input_encodings = encode(example_batch['text'])\n", + " target_encodings = encode(example_batch['summary'])\n", + "\n", + " labels = target_encodings['input_ids']\n", + " decoder_input_ids = shift_tokens_right(\n", + " labels, model.config.pad_token_id, model.config.decoder_start_token_id)\n", + " labels[labels[:, :] == model.config.pad_token_id] = -100\n", + "\n", + " encodings = {\n", + " 'input_ids': input_encodings['input_ids'],\n", + " 'attention_mask': input_encodings['attention_mask'],\n", + " 'decoder_input_ids': decoder_input_ids,\n", + " 'labels': labels,\n", + " }\n", + "\n", + " return encodings\n", + "\n", + "\n", + "def get_dataset(path):\n", + " df = pd.read_csv(path, sep=\",\", on_bad_lines='skip')\n", + " dataset = datasets.Dataset.from_pandas(df)\n", + " dataset = dataset.map(convert_to_features, batched=True)\n", + " columns = ['input_ids', 'labels', 'decoder_input_ids', 'attention_mask', ]\n", + " dataset.set_format(type='torch', columns=columns)\n", + " return dataset\n" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3.9.11 64-bit", + "language": "python", + "name": "python3" + }, + "language_info": { + "name": "python", + "version": "3.9.11" + }, + "orig_nbformat": 4, + "vscode": { + "interpreter": { + "hash": "64e7cd3b4b88defe39dd61a4584920400d6beb2615ab2244e340c2e20eecdfe9" + } + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/QALD/combined-requeried-linked-test.json b/QALD/combined-requeried-linked-test.json new file mode 100644 index 0000000000000000000000000000000000000000..097634ffcf463716c7707e450f548f4651058a0f --- /dev/null +++ b/QALD/combined-requeried-linked-test.json @@ -0,0 +1 @@ +{"questions": [{"id": "1", "question": [{"language": "en", "string": "Who is the daughter of Bill Clinton married to?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> PREFIX dbp: <http://dbpedia.org/property/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { dbr:Bill_Clinton dbo:child ?child . ?child dbo:spouse ?uri . ?uri rdfs:label ?string }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Marc_Mezvinsky"}}, "entities": [{"URI": "http://dbpedia.org/resource/Bill_Clinton", "surface form": "Bill Clinton"}], "relations": [{"URI": "http://dbpedia.org/ontology/child", "surface form": "daughter"}, {"URI": "http://dbpedia.org/ontology/spouse", "surface form": "married"}]}, {"id": "6", "question": [{"language": "en", "string": "Who created Goofy?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Goofy> <http://dbpedia.org/ontology/creator> ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bob_Ogle"}}, "entities": [{"URI": "http://dbpedia.org/resource/Goofy", "surface form": "Goofy"}], "relations": [{"URI": "http://dbpedia.org/ontology/creator", "surface form": "created"}]}, {"id": "7", "question": [{"language": "en", "string": "Which museum exhibits The Scream by Munch?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:The_Scream dbo:museum ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Gallery_(Norway)"}}, "entities": [{"URI": "http://dbpedia.org/resource/The_Scream", "surface form": "The Scream by Munch"}], "relations": [{"URI": "http://dbpedia.org/ontology/museum", "surface form": "museum"}, {"URI": "http://dbpedia.org/ontology/sport", "surface form": "exhibits"}]}, {"id": "8", "question": [{"language": "en", "string": "In which country is the Limerick Lake?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Limerick_Lake dbo:country ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Canada"}}, "entities": [{"URI": "http://dbpedia.org/resource/Limerick_Lake", "surface form": "Limerick Lake"}], "relations": [{"URI": "http://dbpedia.org/ontology/country", "surface form": "country"}]}, {"id": "10", "question": [{"language": "en", "string": "Which mountain is the highest after the Annapurna?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Annapurna> <http://dbpedia.org/ontology/elevation> ?elevation . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Mountain> . ?uri <http://dbpedia.org/ontology/elevation> ?otherelevation . FILTER (?otherelevation < ?elevation) . } ORDER BY DESC(?otherelevation) OFFSET 0 LIMIT 1 "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gasherbrum_I"}}, "entities": [{"URI": "http://dbpedia.org/resource/Annapurna_I_Middle_Peak", "surface form": "Annapurna"}], "relations": [{"URI": "http://dbpedia.org/ontology/mountainRange", "surface form": "mountain"}, {"URI": "http://dbpedia.org/ontology/elevation", "surface form": "highest"}]}, {"id": "11", "question": [{"language": "en", "string": "In which films directed by Garry Marshall was Julia Roberts starring?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Film> ; <http://dbpedia.org/ontology/starring> <http://dbpedia.org/resource/Julia_Roberts> ; <http://dbpedia.org/ontology/director> <http://dbpedia.org/resource/Garry_Marshall> }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Valentine's_Day_(2010_film)"}}, "entities": [{"URI": "http://dbpedia.org/resource/Garry_Marshall", "surface form": "Garry Marshall was Julia Roberts"}], "relations": [{"URI": "http://dbpedia.org/ontology/numberOfFilms", "surface form": "films"}, {"URI": "http://dbpedia.org/ontology/president", "surface form": "directed"}, {"URI": "http://dbpedia.org/ontology/starring", "surface form": "starring"}]}, {"id": "17", "question": [{"language": "en", "string": "What is the area code of Berlin?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?string WHERE { res:Berlin dbo:areaCode ?string }"}, "answers": {"string": {"type": "literal", "value": "030"}}, "entities": [{"URI": "http://dbpedia.org/resource/Berlin", "surface form": "Berlin"}], "relations": [{"URI": "http://dbpedia.org/ontology/areaCode", "surface form": "area code"}]}, {"id": "20", "question": [{"language": "en", "string": "Give me all soccer clubs in Spain."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/SoccerClub> { ?uri <http://dbpedia.org/ontology/ground> <http://dbpedia.org/resource/Spain> } UNION { ?uri <http://dbpedia.org/property/ground> ?ground FILTER regex(?ground, \"Spain\") } }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/And\u00e9s_CF"}}, "entities": [{"URI": "http://dbpedia.org/resource/Spain", "surface form": "Spain"}], "relations": [{"URI": "http://dbpedia.org/ontology/clubsRecordGoalscorer", "surface form": "soccer clubs"}]}, {"id": "23", "question": [{"language": "en", "string": "Which telecommunications organizations are located in Belgium?"}], "query": {"sparql": "SELECT (COUNT(DISTINCT ?uri) AS ?c) WHERE { ?uri a <http://dbpedia.org/ontology/Organisation> { ?uri <http://dbpedia.org/ontology/industry> <http://dbpedia.org/resource/Telecommunication> } UNION { ?uri <http://dbpedia.org/property/industry> ?industry FILTER regex(?industry, \"Telecommunications\") } { ?uri <http://dbpedia.org/ontology/location> <http://dbpedia.org/resource/Belgium> } UNION { ?uri <http://dbpedia.org/property/locationCountry> \"Belgium\"@en } }"}, "answers": {"c": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "7"}}, "entities": [{"URI": "http://dbpedia.org/resource/Complex_organizations", "surface form": "telecommunications organizations"}, {"URI": "http://dbpedia.org/resource/Belgium", "surface form": "Belgium"}], "relations": [{"URI": "http://dbpedia.org/ontology/place", "surface form": "located"}]}, {"id": "26", "question": [{"language": "en", "string": "Give me the homepage of Forbes."}], "query": {"sparql": "PREFIX res: <http://dbpedia.org/resource/> PREFIX foaf: <http://xmlns.com/foaf/0.1/> SELECT DISTINCT ?string WHERE { res:Forbes foaf:homepage ?string }"}, "answers": {"string": {"type": "uri", "value": "https://www.forbes.com/%7Cforbes.com"}}, "entities": [{"URI": "http://dbpedia.org/resource/Forbes", "surface form": "Forbes"}], "relations": []}, {"id": "28", "question": [{"language": "en", "string": "Who was the wife of President Lincoln?"}], "query": {"sparql": "PREFIX dbr: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT ?uri ?string WHERE { dbr:Abraham_Lincoln onto:spouse ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mary_Todd_Lincoln"}}, "entities": [{"URI": "http://dbpedia.org/resource/USS_President_Lincoln_(1907)", "surface form": "President Lincoln"}], "relations": [{"URI": "http://dbpedia.org/ontology/spouse", "surface form": "wife"}]}, {"id": "34", "question": [{"language": "en", "string": "Which actors were born in Germany?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Actor> { ?uri <http://dbpedia.org/ontology/birthPlace> <http://dbpedia.org/resource/Germany> } UNION { ?uri <http://dbpedia.org/ontology/birthPlace> ?place . ?place <http://dbpedia.org/ontology/country> <http://dbpedia.org/resource/Germany> } }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Friederike_Caroline_Neuber"}}, "entities": [{"URI": "http://dbpedia.org/resource/Germany", "surface form": "Germany"}], "relations": [{"URI": "http://dbpedia.org/ontology/award", "surface form": "actors"}, {"URI": "http://dbpedia.org/ontology/birthPlace", "surface form": "born"}]}, {"id": "36", "question": [{"language": "en", "string": "Which people were born in Heraklion?"}], "query": {"sparql": "PREFIX yago: <http://dbpedia.org/class/yago/> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Person ; onto:birthPlace <http://dbpedia.org/resource/Heraklion>. }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Anastasios_Triantafyllou"}}, "entities": [{"URI": "http://dbpedia.org/resource/Heraklion", "surface form": "Heraklion"}], "relations": [{"URI": "http://dbpedia.org/ontology/birthPlace", "surface form": "born"}]}, {"id": "39", "question": [{"language": "en", "string": "Which software has been published by Mean Hamster Software?"}], "query": {"sparql": "PREFIX res: <http://dbpedia.org/resource/> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Software { ?uri prop:publisher \"Mean Hamster Software\"@en } UNION { ?uri onto:publisher res:Mean_Hamster_Software } }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Riven"}}, "entities": [{"URI": "http://dbpedia.org/resource/Software", "surface form": "software"}, {"URI": "http://dbpedia.org/resource/Mean_Hamster_Software", "surface form": "Mean Hamster Software"}], "relations": [{"URI": "http://dbpedia.org/ontology/publisher", "surface form": "published"}]}, {"id": "40", "question": [{"language": "en", "string": "Who owns Aldi?"}], "query": {"sparql": "PREFIX res: <http://dbpedia.org/resource/> PREFIX dbp: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Aldi dbp:founders ?uri }"}, "answers": {"uri": {"type": "literal", "xml:lang": "en", "value": "Karl and Theo Albrecht"}}, "entities": [{"URI": "http://dbpedia.org/resource/Aldi", "surface form": "Aldi"}], "relations": [{"URI": "http://dbpedia.org/ontology/family", "surface form": "owns"}]}, {"id": "43", "question": [{"language": "en", "string": "Which country has the most official languages?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Country> . ?uri <http://dbpedia.org/property/officialLanguages> ?language . } ORDER BY DESC(COUNT(?language)) OFFSET 0 LIMIT 1"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/South_Africa"}}, "entities": [], "relations": [{"URI": "http://dbpedia.org/ontology/country", "surface form": "country"}, {"URI": "http://dbpedia.org/ontology/incumbent", "surface form": "official languages"}]}, {"id": "47", "question": [{"language": "en", "string": "Who wrote the book The pillars of the Earth?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> SELECT DISTINCT ?uri WHERE { res:The_Pillars_of_the_Earth dbo:author ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ken_Follett"}}, "entities": [{"URI": "http://dbpedia.org/resource/The_Pillars_of_the_Earth", "surface form": "The Pillars of the Earth"}], "relations": [{"URI": "http://dbpedia.org/ontology/author", "surface form": "wrote"}]}, {"id": "49", "question": [{"language": "en", "string": "Give me all soccer clubs in the Premier League."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/SoccerClub> ; <http://dbpedia.org/ontology/league> <http://dbpedia.org/resource/Premier_League> }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/2010\u201311_Tottenham_Hotspur_F.C._season"}}, "entities": [{"URI": "http://dbpedia.org/resource/Premier_League", "surface form": "Premier League"}], "relations": [{"URI": "http://dbpedia.org/ontology/clubsRecordGoalscorer", "surface form": "soccer clubs"}]}, {"id": "50", "question": [{"language": "en", "string": "When was Capcom founded?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/>PREFIX res: <http://dbpedia.org/resource/>SELECT DISTINCT ?date WHERE { res:Capcom dbo:foundingDate ?date .}"}, "answers": {"date": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#date", "value": "1979-05-30"}}, "entities": [{"URI": "http://dbpedia.org/resource/Capcom", "surface form": "Capcom"}], "relations": [{"URI": "http://dbpedia.org/ontology/foundingYear", "surface form": "founded"}]}, {"id": "52", "question": [{"language": "en", "string": "What is the highest mountain?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Mountain> ; <http://dbpedia.org/ontology/elevation> ?elevation } ORDER BY DESC(?elevation) OFFSET 0 LIMIT 1"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pico_Alto"}}, "entities": [], "relations": [{"URI": "http://dbpedia.org/ontology/highestMountain", "surface form": "highest mountain"}]}, {"id": "55", "question": [{"language": "en", "string": "When was Alberta admitted as province?"}], "query": {"sparql": "SELECT DISTINCT ?date WHERE { <http://dbpedia.org/resource/Alberta> <http://dbpedia.org/property/admittancedate> ?date }"}, "answers": {"date": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#date", "value": "1905-09-01"}}, "entities": [{"URI": "http://dbpedia.org/resource/Alberta", "surface form": "Alberta"}], "relations": [{"URI": "http://dbpedia.org/property/known", "surface form": "admitted"}, {"URI": "http://dbpedia.org/ontology/province", "surface form": "province"}]}, {"id": "57", "question": [{"language": "en", "string": "Give me a list of all trumpet players that were bandleaders."}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { ?uri dbo:occupation res:Bandleader ; dbo:instrument res:Trumpet }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Danny_Davis_(country_musician)"}}, "entities": [{"URI": "http://dbpedia.org/resource/Trumpet", "surface form": "trumpet players"}, {"URI": "http://dbpedia.org/resource/List_of_American_big_band_bandleaders", "surface form": "bandleaders"}], "relations": []}, {"id": "61", "question": [{"language": "en", "string": "Who is the youngest player in the Premier League?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { ?uri dbo:team ?team . ?league dbo:league res:Premier_League . ?league dbo:team ?team . ?uri dbo:birthDate ?date } ORDER BY DESC(?date) LIMIT 1"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ben_Doak"}}, "entities": [{"URI": "http://dbpedia.org/resource/Premier_League", "surface form": "Premier League"}], "relations": [{"URI": "http://dbpedia.org/ontology/participant", "surface form": "player"}]}, {"id": "62", "question": [{"language": "en", "string": "Give me all members of Prodigy."}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:The_Prodigy dbo:bandMember ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Maxim_(musician)"}}, "entities": [{"URI": "http://dbpedia.org/resource/The_Prodigy", "surface form": "Prodigy"}], "relations": [{"URI": "http://dbpedia.org/ontology/bandMember", "surface form": "members"}]}, {"id": "66", "question": [{"language": "en", "string": "How tall is Michael Jordan?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?num WHERE { res:Michael_Jordan dbo:height ?num }"}, "answers": {"num": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#double", "value": "1.9812"}}, "entities": [{"URI": "http://dbpedia.org/resource/Michael_Jordan", "surface form": "Michael Jordan"}], "relations": [{"URI": "http://dbpedia.org/ontology/height", "surface form": "tall"}]}, {"id": "67", "question": [{"language": "en", "string": "What is the capital of Canada?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Canada dbo:capital ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ottawa"}}, "entities": [{"URI": "http://dbpedia.org/resource/Canada", "surface form": "Canada"}], "relations": [{"URI": "http://dbpedia.org/ontology/capital", "surface form": "capital"}]}, {"id": "68", "question": [{"language": "en", "string": "Who is the governor of Texas?"}], "query": {"sparql": "PREFIX res: <http://dbpedia.org/resource/> PREFIX dbp: <http://dbpedia.org/property/> SELECT DISTINCT ?string WHERE { res:Texas dbp:governor ?string }"}, "answers": {"string": {"type": "uri", "value": "http://dbpedia.org/resource/Greg_Abbott"}}, "entities": [{"URI": "http://dbpedia.org/resource/Texas", "surface form": "Texas"}], "relations": [{"URI": "http://dbpedia.org/ontology/governor", "surface form": "governor"}]}, {"id": "70", "question": [{"language": "en", "string": "How many official languages are spoken on the Seychelles?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/>PREFIX res: <http://dbpedia.org/resource/>SELECT COUNT(DISTINCT ?x) WHERE { res:Seychelles dbo:officialLanguage ?x .}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "3"}}, "entities": [{"URI": "http://dbpedia.org/resource/Seychelles", "surface form": "Seychelles"}], "relations": [{"URI": "http://dbpedia.org/ontology/officialLanguage", "surface form": "official languages"}, {"URI": "http://dbpedia.org/ontology/spokenIn", "surface form": "spoken"}]}, {"id": "71", "question": [{"language": "en", "string": "Give me all movies directed by Francis Ford Coppola."}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Film ; dbo:director res:Francis_Ford_Coppola }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dementia_13"}}, "entities": [{"URI": "http://dbpedia.org/resource/Francis_Ford_Coppola", "surface form": "Francis Ford Coppola"}], "relations": [{"URI": "http://dbpedia.org/ontology/film", "surface form": "movies"}, {"URI": "http://dbpedia.org/ontology/president", "surface form": "directed"}]}, {"id": "73", "question": [{"language": "en", "string": "What is the birth name of Angela Merkel?"}], "query": {"sparql": "SELECT DISTINCT ?string WHERE { <http://dbpedia.org/resource/Angela_Merkel> <http://dbpedia.org/property/birthName> ?string }"}, "answers": {"string": {"type": "literal", "xml:lang": "en", "value": "Angela Dorothea Kasner"}}, "entities": [{"URI": "http://dbpedia.org/resource/Angela_Merkel", "surface form": "Angela Merkel"}], "relations": [{"URI": "http://dbpedia.org/property/birthName", "surface form": "birth name"}]}, {"id": "78", "question": [{"language": "en", "string": "Give me all companies in Munich."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Company> { ?uri <http://dbpedia.org/ontology/location> <http://dbpedia.org/resource/Munich> } UNION { ?uri <http://dbpedia.org/ontology/headquarter> <http://dbpedia.org/resource/Munich> } UNION { ?uri <http://dbpedia.org/ontology/locationCity> <http://dbpedia.org/resource/Munich> } }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Allianz"}}, "entities": [{"URI": "http://dbpedia.org/resource/Companies_listed_on_the_New_York_Stock_Exchange_(J)", "surface form": "companies"}, {"URI": "http://dbpedia.org/resource/Munich", "surface form": "Munich"}], "relations": []}, {"id": "79", "question": [{"language": "en", "string": "List all boardgames by GMT."}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> SELECT ?uri WHERE { ?uri dbo:publisher res:GMT_Games }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fields_of_Fire_(game)"}}, "entities": [{"URI": "http://dbpedia.org/resource/Generic_Mapping_Tools", "surface form": "GMT"}, {"URI": "http://dbpedia.org/resource/Belarus", "surface form": "Boardgames by"}], "relations": []}, {"id": "81", "question": [{"language": "en", "string": "Give me all Frisian islands that belong to the Netherlands."}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX yago: <http://dbpedia.org/class/yago/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type yago:WikicatFrisianIslands ; dbo:country res:Netherlands }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Frisian_Islands"}}, "entities": [{"URI": "http://dbpedia.org/resource/Frisian_Islands", "surface form": "Frisian islands"}, {"URI": "http://dbpedia.org/resource/Netherlands_Antilles_at_the_2007_Pan_American_Games", "surface form": "Netherlands"}], "relations": [{"URI": "http://dbpedia.org/property/rank", "surface form": "belong"}]}, {"id": "85", "question": [{"language": "en", "string": "Which U.S. states are in the same timezone as Utah?"}], "query": {"sparql": "PREFIX yago: <http://dbpedia.org/class/yago/> PREFIX res: <http://dbpedia.org/resource/> PREFIX dbp: <http://dbpedia.org/property/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { res:Utah dbp:timezone ?x . ?uri rdf:type yago:WikicatStatesOfTheUnitedStates ; dbp:timezone ?x FILTER ( ?uri != res:Utah ) }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Montana"}}, "entities": [{"URI": "http://dbpedia.org/resource/Usk,_Washington", "surface form": "US"}, {"URI": "http://dbpedia.org/resource/Utah", "surface form": "Utah"}], "relations": [{"URI": "http://dbpedia.org/ontology/timeZone", "surface form": "timezone"}]}, {"id": "88", "question": [{"language": "en", "string": "Give me all Argentine films."}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX yago: <http://dbpedia.org/class/yago/> PREFIX res: <http://dbpedia.org/resource/> PREFIX dbp: <http://dbpedia.org/property/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { { ?uri rdf:type yago:ArgentineFilms } UNION { ?uri rdf:type dbo:Film { ?uri dbo:country res:Argentina } UNION { ?uri dbp:country \"Argentina\"@en } } }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/All\u00e1_en_el_Norte"}}, "entities": [{"URI": "http://dbpedia.org/resource/Argentina", "surface form": "Argentine films"}, {"URI": "http://dbpedia.org/resource/Lists_of_Argentine_films", "surface form": "Argentine films"}], "relations": [{"URI": "http://dbpedia.org/ontology/country", "surface form": ""}]}, {"id": "89", "question": [{"language": "en", "string": "Give me all launch pads operated by NASA."}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:LaunchPad ; dbo:operator res:NASA }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Wallops_Flight_Facility_Launch_Area_3"}}, "entities": [{"URI": "http://dbpedia.org/resource/NASA", "surface form": "NASA"}], "relations": [{"URI": "http://dbpedia.org/ontology/institution", "surface form": "launch"}, {"URI": "http://dbpedia.org/ontology/operatedBy", "surface form": "pads operated"}]}, {"id": "90", "question": [{"language": "en", "string": "Which ships were called after Benjamin Franklin?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/shipNamesake> <http://dbpedia.org/resource/Benjamin_Franklin> }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ben_Franklin_(PX-15)"}}, "entities": [{"URI": "http://dbpedia.org/resource/Benjamin_Franklin", "surface form": "Benjamin Franklin"}], "relations": [{"URI": "http://dbpedia.org/ontology/shipBeam", "surface form": "ships"}, {"URI": "http://dbpedia.org/property/nickname", "surface form": "called"}]}, {"id": "92", "question": [{"language": "en", "string": "How many children did Benjamin Franklin have?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT (COUNT(DISTINCT ?uri) AS ?c) WHERE { res:Benjamin_Franklin dbo:child ?uri }"}, "answers": {"c": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "3"}}, "entities": [{"URI": "http://dbpedia.org/resource/Benjamin_Franklin", "surface form": "Benjamin Franklin"}], "relations": [{"URI": "http://dbpedia.org/property/children", "surface form": "children"}]}, {"id": "95", "question": [{"language": "en", "string": "Who was called Scarface?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> SELECT ?uri WHERE { ?uri dbo:alias ?alias FILTER contains(lcase(?alias), \"scarface\") }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/%22Scarface%22_John_Williams"}}, "entities": [{"URI": "http://dbpedia.org/resource/Scarface", "surface form": "Scarface"}], "relations": [{"URI": "http://dbpedia.org/ontology/alias", "surface form": "called"}]}, {"id": "98", "question": [{"language": "en", "string": "Who created the comic Captain America?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Captain_America dbo:creator ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jack_Kirby"}}, "entities": [{"URI": "http://dbpedia.org/resource/Captain_Comic", "surface form": "comic Captain America"}], "relations": [{"URI": "http://dbpedia.org/ontology/creator", "surface form": "created"}]}, {"id": "100", "question": [{"language": "en", "string": "What is the largest city in Australia?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Australia dbo:largestCity ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sydney"}}, "entities": [{"URI": "http://dbpedia.org/resource/Australia", "surface form": "Australia"}], "relations": [{"URI": "http://dbpedia.org/ontology/largestCity", "surface form": "largest city"}]}, {"id": "102", "question": [{"language": "en", "string": "Where is the residence of the prime minister of Spain?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Prime_Minister_of_Spain> <http://dbpedia.org/property/residence> ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Palacio_de_la_Moncloa"}}, "entities": [{"URI": "http://dbpedia.org/resource/Spain", "surface form": "Spain"}], "relations": [{"URI": "http://dbpedia.org/ontology/residence", "surface form": "residence"}, {"URI": "http://dbpedia.org/ontology/primeMinister", "surface form": "prime minister"}]}, {"id": "103", "question": [{"language": "en", "string": "Show me all songs from Bruce Springsteen released between 1980 and 1990."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Song> . ?uri <http://dbpedia.org/ontology/artist> <http://dbpedia.org/resource/Bruce_Springsteen> . ?uri <http://dbpedia.org/ontology/releaseDate> ?date . FILTER (?date >= '1980-01-01'^^xsd:date && ?date <= '1990-12-31'^^xsd:date) }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Johnny_99_(song)"}}, "entities": [{"URI": "http://dbpedia.org/resource/Bruce_Springsteen", "surface form": "Bruce Springsteen"}, {"URI": "http://dbpedia.org/resource/1980", "surface form": "1980"}, {"URI": "http://dbpedia.org/resource/1990", "surface form": "1990"}], "relations": [{"URI": "http://dbpedia.org/ontology/show", "surface form": "show"}, {"URI": "http://dbpedia.org/ontology/anthem", "surface form": "songs"}, {"URI": "http://dbpedia.org/property/released", "surface form": "released"}]}, {"id": "105", "question": [{"language": "en", "string": "Who painted The Storm on the Sea of Galilee?"}], "query": {"sparql": "PREFIX res: <http://dbpedia.org/resource/> PREFIX dbp: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:The_Storm_on_the_Sea_of_Galilee dbo:author ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rembrandt"}}, "entities": [{"URI": "http://dbpedia.org/resource/The_Storm_on_the_Sea_of_Galilee", "surface form": "The Storm on the Sea of Galilee"}], "relations": [{"URI": "http://dbpedia.org/property/artist", "surface form": "painted"}]}, {"id": "106", "question": [{"language": "en", "string": "For which label did Elvis record his first album?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?x rdf:type dbo:Album ; dbo:artist res:Elvis_Presley ; dbo:releaseDate ?y ; dbo:recordLabel ?uri } ORDER BY ASC(?y) OFFSET 0 LIMIT 1"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/RCA_Records"}}, "entities": [{"URI": "http://dbpedia.org/resource/Elvis_(1973_album)", "surface form": "Elvis"}], "relations": [{"URI": "http://dbpedia.org/property/label", "surface form": "label"}, {"URI": "http://dbpedia.org/ontology/recordLabel", "surface form": "record"}, {"URI": "http://dbpedia.org/ontology/album", "surface form": "album"}]}, {"id": "108", "question": [{"language": "en", "string": "Which countries have places with more than two caves?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?cave rdf:type dbo:Cave ; dbo:location ?uri . ?uri rdf:type dbo:Country } GROUP BY ?uri HAVING ( COUNT(?cave) > 2 )"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Georgia_(country)"}}, "entities": [{"URI": "http://dbpedia.org/resource/Countries_of_the_United_Kingdom", "surface form": "countries"}, {"URI": "http://dbpedia.org/resource/Caves_of_Aggtelek_Karst_and_Slovak_Karst", "surface form": "caves"}], "relations": [{"URI": "http://dbpedia.org/ontology/place", "surface form": "places"}]}, {"id": "109", "question": [{"language": "en", "string": "Give me the capitals of all countries in Africa."}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbc: <http://dbpedia.org/resource/Category:> PREFIX dct: <http://purl.org/dc/terms/> SELECT DISTINCT ?uri WHERE { ?country dct:subject dbc:Countries_in_Africa ; dbo:capital ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Buea"}}, "entities": [{"URI": "http://dbpedia.org/resource/Countries_of_the_United_Kingdom", "surface form": "countries"}, {"URI": "http://dbpedia.org/resource/Africa", "surface form": "Africa"}], "relations": [{"URI": "http://dbpedia.org/ontology/principal", "surface form": "capitals"}]}, {"id": "110", "question": [{"language": "en", "string": "How many employees does IBM have?"}], "query": {"sparql": "SELECT DISTINCT ?number WHERE { <http://dbpedia.org/resource/IBM> <http://dbpedia.org/ontology/numberOfEmployees> ?number }"}, "answers": {"number": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#nonNegativeInteger", "value": "282100"}}, "entities": [{"URI": "http://dbpedia.org/resource/IBM", "surface form": "IBM"}], "relations": [{"URI": "http://dbpedia.org/ontology/numberOfEmployees", "surface form": "employees"}]}, {"id": "111", "question": [{"language": "en", "string": "Which states border Illinois?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Illinois> <http://dbpedia.org/property/borderingstates> ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kentucky"}}, "entities": [{"URI": "http://dbpedia.org/resource/Illinois", "surface form": "Illinois"}], "relations": [{"URI": "http://dbpedia.org/ontology/border", "surface form": "border"}]}, {"id": "113", "question": [{"language": "en", "string": "What is the highest mountain in Australia?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Mountain ; dbo:locatedInArea res:Australia ; dbo:elevation ?elevation } ORDER BY DESC(?elevation) LIMIT 1"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mawson_Peak"}}, "entities": [{"URI": "http://dbpedia.org/resource/Australia", "surface form": "Australia"}], "relations": [{"URI": "http://dbpedia.org/property/elevation", "surface form": "highest mountain"}]}, {"id": "114", "question": [{"language": "en", "string": "Give me all companies in the advertising industry."}], "query": {"sparql": "SELECT (COUNT(DISTINCT ?uri) AS ?c) WHERE { ?uri a <http://dbpedia.org/ontology/Company> { ?uri <http://dbpedia.org/ontology/industry> <http://dbpedia.org/resource/Advertising> } UNION { ?uri <http://dbpedia.org/ontology/industry> ?industry FILTER regex(?industry, \"advertising\", \"i\") } }"}, "answers": {"c": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "361"}}, "entities": [{"URI": "http://dbpedia.org/resource/Companies_listed_on_the_New_York_Stock_Exchange_(J)", "surface form": "companies"}], "relations": [{"URI": "http://dbpedia.org/property/industry", "surface form": "advertising industry"}]}, {"id": "115", "question": [{"language": "en", "string": "Who was the wife of U.S. president Lincoln?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Abraham_Lincoln dbo:spouse ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mary_Todd_Lincoln"}}, "entities": [{"URI": "http://dbpedia.org/resource/Abraham_Lincoln", "surface form": "Lincoln"}], "relations": [{"URI": "http://dbpedia.org/ontology/spouse", "surface form": "wife"}]}, {"id": "116", "question": [{"language": "en", "string": "Give me all video games published by Mean Hamster Software."}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:VideoGame ; dbo:publisher res:Mean_Hamster_Software }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Riven"}}, "entities": [{"URI": "http://dbpedia.org/resource/Mean_Hamster_Software", "surface form": "Mean Hamster Software"}], "relations": [{"URI": "http://dbpedia.org/ontology/film", "surface form": "video games"}, {"URI": "http://dbpedia.org/ontology/publisher", "surface form": "published"}]}, {"id": "117", "question": [{"language": "en", "string": "Which languages are spoken in Estonia?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/spokenIn> <http://dbpedia.org/resource/Estonia> }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/V\u00f5ro_language"}}, "entities": [{"URI": "http://dbpedia.org/resource/Estonia", "surface form": "Estonia"}], "relations": [{"URI": "http://dbpedia.org/ontology/language", "surface form": "languages"}, {"URI": "http://dbpedia.org/ontology/spokenIn", "surface form": "spoken"}]}, {"id": "118", "question": [{"language": "en", "string": "How many films did Hal Roach produce?"}], "query": {"sparql": "SELECT (COUNT(DISTINCT ?uri) AS ?c) WHERE { ?uri <http://dbpedia.org/ontology/producer> <http://dbpedia.org/resource/Hal_Roach> }"}, "answers": {"c": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "539"}}, "entities": [{"URI": "http://dbpedia.org/resource/Hal_Roach", "surface form": "Hal Roach"}], "relations": [{"URI": "http://dbpedia.org/ontology/numberOfFilms", "surface form": "films"}, {"URI": "http://dbpedia.org/ontology/producer", "surface form": "produce"}]}, {"id": "120", "question": [{"language": "en", "string": "Which airports are located in California, USA?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Airport> { ?uri <http://dbpedia.org/ontology/location> <http://dbpedia.org/resource/California> } UNION { ?uri <http://dbpedia.org/ontology/city> <http://dbpedia.org/resource/California> } UNION { ?uri <http://dbpedia.org/ontology/city> ?city . ?city <http://dbpedia.org/ontology/isPartOf> <http://dbpedia.org/resource/California> } UNION { ?uri <http://dbpedia.org/ontology/operator> <http://dbpedia.org/resource/California> } }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Amboy_Airfield"}}, "entities": [{"URI": "http://dbpedia.org/resource/United_States", "surface form": "USA"}, {"URI": "http://dbpedia.org/resource/California,_Cincinnati", "surface form": "California,"}], "relations": [{"URI": "http://dbpedia.org/ontology/targetAirport", "surface form": "airports"}, {"URI": "http://dbpedia.org/ontology/place", "surface form": "located"}]}, {"id": "121", "question": [{"language": "en", "string": "Give me all Canadian Grunge record labels."}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:RecordLabel ; dbo:genre res:Grunge ; dbo:country res:Canada }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Murderecords"}}, "entities": [{"URI": "http://dbpedia.org/resource/Canada", "surface form": "Canadian Grunge record labels"}, {"URI": "http://dbpedia.org/resource/Canadian_independent_record_labels", "surface form": "Canadian Grunge record labels"}], "relations": [{"URI": "http://dbpedia.org/ontology/country", "surface form": ""}]}, {"id": "122", "question": [{"language": "en", "string": "Give me all movies with Tom Cruise."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Film> ; <http://dbpedia.org/ontology/starring> <http://dbpedia.org/resource/Tom_Cruise> }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/All_the_Right_Moves_(film)"}}, "entities": [{"URI": "http://dbpedia.org/resource/Tom_Cruise", "surface form": "Tom Cruise"}], "relations": [{"URI": "http://dbpedia.org/ontology/film", "surface form": "movies"}]}, {"id": "125", "question": [{"language": "en", "string": "Who developed Minecraft?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Minecraft> <http://dbpedia.org/ontology/developer> ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mojang_Studios"}}, "entities": [{"URI": "http://dbpedia.org/resource/Minecraft", "surface form": "Minecraft"}], "relations": [{"URI": "http://dbpedia.org/ontology/developer", "surface form": "developed"}]}, {"id": "126", "question": [{"language": "en", "string": "List all games by GMT."}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { ?uri dbo:publisher res:GMT_Games }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fields_of_Fire_(game)"}}, "entities": [{"URI": "http://dbpedia.org/resource/Generic_Mapping_Tools", "surface form": "GMT"}], "relations": [{"URI": "http://dbpedia.org/ontology/games", "surface form": "games"}]}, {"id": "127", "question": [{"language": "en", "string": "In which U.S. state is Fort Knox located?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX dbp: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Fort_Knox dbo:location ?uri . ?uri dbo:country res:United_States }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kentucky"}}, "entities": [{"URI": "http://dbpedia.org/resource/United_States", "surface form": "U.S."}, {"URI": "http://dbpedia.org/resource/Fort_Knox", "surface form": "Fort Knox"}], "relations": [{"URI": "http://dbpedia.org/property/location", "surface form": "located"}, {"URI": "http://dbpedia.org/ontology/country", "surface form": "state"}]}, {"id": "129", "question": [{"language": "en", "string": "Give me all actors starring in Last Action Hero."}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Last_Action_Hero dbo:starring ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Art_Carney"}}, "entities": [{"URI": "http://dbpedia.org/resource/Last_Action_Hero", "surface form": "Last Action Hero"}], "relations": [{"URI": "http://dbpedia.org/ontology/starring", "surface form": "starring"}]}, {"id": "130", "question": [{"language": "en", "string": "Who wrote the book Les Piliers de la terre?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:The_Pillars_of_the_Earth dbo:author ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ken_Follett"}}, "entities": [{"URI": "http://dbpedia.org/resource/La_Terre", "surface form": "book Les Piliers de la terre"}], "relations": [{"URI": "http://dbpedia.org/ontology/author", "surface form": "wrote"}]}, {"id": "131", "question": [{"language": "en", "string": "Give me all taikonauts."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { { ?uri a <http://dbpedia.org/ontology/Astronaut> ; <http://dbpedia.org/ontology/nationality> <http://dbpedia.org/resource/People's_Republic_of_China> } UNION { ?uri a <http://dbpedia.org/ontology/Astronaut> ; <http://dbpedia.org/ontology/nationality> <http://dbpedia.org/resource/China> } }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tang_Hongbo"}}, "entities": [{"URI": "http://dbpedia.org/resource/Astronaut", "surface form": "Taikonauts"}], "relations": []}, {"id": "134", "question": [{"language": "en", "string": "How many programming languages are there?"}], "query": {"sparql": "SELECT (COUNT(DISTINCT ?uri) AS ?c) WHERE { ?uri a <http://dbpedia.org/ontology/ProgrammingLanguage> }"}, "answers": {"c": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "3328"}}, "entities": [], "relations": [{"URI": "http://dbpedia.org/ontology/programmingLanguage", "surface form": "programming languages"}]}, {"id": "136", "question": [{"language": "en", "string": "When was Carlo Giuliani shot?"}], "query": {"sparql": "PREFIX res: <http://dbpedia.org/resource/> PREFIX dbp: <http://dbpedia.org/property/> SELECT DISTINCT xsd:date(?date) WHERE { res:Death_of_Carlo_Giuliani dbo:deathDate ?date }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#date", "value": "2001-07-20"}}, "entities": [{"URI": "http://dbpedia.org/resource/Carlo_Giuliani,_Boy", "surface form": "Carlo Giuliani"}], "relations": [{"URI": "http://dbpedia.org/ontology/discharge", "surface form": "shot"}]}, {"id": "137", "question": [{"language": "en", "string": "Which rivers flow into a German lake?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/River> . ?x <http://dbpedia.org/ontology/inflow> ?uri ; a <http://dbpedia.org/ontology/Lake> ; <http://dbpedia.org/ontology/country> <http://dbpedia.org/resource/Germany> }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alster"}}, "entities": [{"URI": "http://dbpedia.org/resource/Germany", "surface form": "German lake"}, {"URI": "http://dbpedia.org/resource/German_Lake", "surface form": "German lake"}], "relations": [{"URI": "http://dbpedia.org/ontology/operator", "surface form": "rivers"}, {"URI": "http://dbpedia.org/property/float", "surface form": "flow"}, {"URI": "http://dbpedia.org/ontology/country", "surface form": ""}]}, {"id": "140", "question": [{"language": "en", "string": "How many pages does War and Peace have?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?n WHERE { res:War_and_Peace dbo:numberOfPages ?n }"}, "answers": {"n": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#positiveInteger", "value": "1225"}}, "entities": [{"URI": "http://dbpedia.org/resource/War_and_Peace", "surface form": "War and Peace"}], "relations": []}, {"id": "141", "question": [{"language": "en", "string": "Which ingredients do I need for carrot cake?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Carrot_cake dbo:ingredient ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Carrot"}}, "entities": [{"URI": "http://dbpedia.org/resource/I", "surface form": "I"}, {"URI": "http://dbpedia.org/resource/Carrot_cake", "surface form": "carrot cake"}], "relations": [{"URI": "http://dbpedia.org/ontology/ingredient", "surface form": "ingredients"}]}, {"id": "147", "question": [{"language": "en", "string": "Where was Bach born?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Johann_Sebastian_Bach dbo:birthPlace ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Eisenach"}}, "entities": [{"URI": "http://dbpedia.org/resource/Johann_Sebastian_Bach", "surface form": "Bach"}], "relations": [{"URI": "http://dbpedia.org/ontology/birthPlace", "surface form": "born"}]}, {"id": "148", "question": [{"language": "en", "string": "Which of Tim Burton's films had the highest budget?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { ?uri dbo:director res:Tim_Burton ; dbo:budget ?b } ORDER BY ?b OFFSET 0 LIMIT 1"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Big_Eyes"}}, "entities": [{"URI": "http://dbpedia.org/resource/Tim_Burton", "surface form": "Tim Burton"}], "relations": [{"URI": "http://dbpedia.org/ontology/numberOfFilms", "surface form": " films"}, {"URI": "http://dbpedia.org/ontology/elevation", "surface form": "highest budget"}]}, {"id": "150", "question": [{"language": "en", "string": "What are the top-10 action role-playing video games according to IGN?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://purl.org/dc/terms/subject> <http://dbpedia.org/resource/Category:Action_role-playing_video_games> ; <http://dbpedia.org/property/ign> ?score } ORDER BY DESC(?score) LIMIT 10"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Battleheart_Legacy"}}, "entities": [{"URI": "http://dbpedia.org/resource/Action_role-playing_games", "surface form": "top-10 action role-playing video games"}, {"URI": "http://dbpedia.org/resource/IGN", "surface form": "IGN"}], "relations": []}, {"id": "159", "question": [{"language": "en", "string": "Who was the first to climb Mount Everest?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Mount_Everest dbo:firstAscentPerson ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tenzing_Norgay"}}, "entities": [{"URI": "http://dbpedia.org/resource/Mount_Everest", "surface form": "Mount Everest"}], "relations": [{"URI": "http://dbpedia.org/ontology/board", "surface form": "climb"}]}, {"id": "163", "question": [{"language": "en", "string": "How many James Bond movies are there?"}], "query": {"sparql": "SELECT (COUNT(DISTINCT ?uri) as ?c) WHERE { ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/class/yago/JamesBondFilms> . } "}, "answers": {"c": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}, "entities": [{"URI": "http://dbpedia.org/resource/James_Bond", "surface form": "James Bond movies"}], "relations": []}, {"id": "170", "question": [{"language": "en", "string": "Give me all cosmonauts."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Astronaut> { ?uri <http://dbpedia.org/ontology/nationality> <http://dbpedia.org/resource/Russia> } UNION { ?uri <http://dbpedia.org/ontology/nationality> <http://dbpedia.org/resource/Soviet_Union> } }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Valery_Kubasov"}}, "entities": [{"URI": "http://dbpedia.org/resource/Cosmonauts_Alley", "surface form": "Cosmonauts"}], "relations": []}, {"id": "171", "question": [{"language": "en", "string": "Give me a list of all bandleaders that play trumpet."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/occupation> <http://dbpedia.org/resource/Bandleader> ; <http://dbpedia.org/ontology/instrument> <http://dbpedia.org/resource/Trumpet> }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Danny_Davis_(country_musician)"}}, "entities": [{"URI": "http://dbpedia.org/resource/Geraldo_(bandleader)", "surface form": "bandleaders"}], "relations": [{"URI": "http://dbpedia.org/ontology/starring", "surface form": "play"}, {"URI": "http://dbpedia.org/ontology/head", "surface form": "trumpet"}]}, {"id": "172", "question": [{"language": "en", "string": "Which countries have more than ten caves?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Country> . ?cave a <http://dbpedia.org/ontology/Cave> { ?cave <http://dbpedia.org/ontology/location> ?uri } UNION { ?cave <http://dbpedia.org/ontology/location> ?loc . ?loc <http://dbpedia.org/ontology/country> ?uri } } GROUP BY ?uri HAVING ( COUNT(?cave) > 10 )"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jamaica"}}, "entities": [{"URI": "http://dbpedia.org/resource/Countries_of_the_United_Kingdom", "surface form": "countries"}, {"URI": "http://dbpedia.org/resource/Caves_of_Aggtelek_Karst_and_Slovak_Karst", "surface form": "caves"}], "relations": []}, {"id": "175", "question": [{"language": "en", "string": "Give me all actors starring in movies directed by William Shatner."}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { ?x dbo:director res:William_Shatner ; dbo:starring ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/DeForest_Kelley"}}, "entities": [{"URI": "http://dbpedia.org/resource/William_Shatner", "surface form": "William Shatner"}], "relations": [{"URI": "http://dbpedia.org/ontology/artist", "surface form": "actors"}, {"URI": "http://dbpedia.org/ontology/starring", "surface form": "starring"}, {"URI": "http://dbpedia.org/ontology/film", "surface form": "movies"}, {"URI": "http://dbpedia.org/property/directedby", "surface form": "directed"}]}, {"id": "176", "question": [{"language": "en", "string": "Give me all Methodist politicians."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Politician> ; <http://dbpedia.org/ontology/religion> <http://dbpedia.org/resource/Methodism> }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bourke_B._Hickenlooper"}}, "entities": [{"URI": "http://dbpedia.org/resource/Chicago_Politicians", "surface form": "Methodist politicians"}], "relations": []}, {"id": "182", "question": [{"language": "en", "string": "Which Chess players died in the same place they were born in?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/ChessPlayer> ; <http://dbpedia.org/ontology/birthPlace> ?x ; <http://dbpedia.org/ontology/deathPlace> ?y FILTER ( ?x = ?y ) }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bertus_Enklaar"}}, "entities": [{"URI": "http://dbpedia.org/resource/The_Chess_Players_(film)", "surface form": "Chess players"}], "relations": [{"URI": "http://dbpedia.org/ontology/deathDate", "surface form": "died"}, {"URI": "http://dbpedia.org/ontology/place", "surface form": "place"}, {"URI": "http://dbpedia.org/ontology/birthPlace", "surface form": "born"}]}, {"id": "184", "question": [{"language": "en", "string": "What is the official language of Suriname?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Suriname dbo:officialLanguage ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Surinamese_Dutch"}}, "entities": [{"URI": "http://dbpedia.org/resource/Suriname", "surface form": "Suriname"}], "relations": [{"URI": "http://dbpedia.org/ontology/officialLanguage", "surface form": "official language"}]}, {"id": "187", "question": [{"language": "en", "string": "Give me all libraries established earlier than 1400."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Library> ; <http://dbpedia.org/property/established> ?year FILTER ( ?year < 1400 ) }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Library_of_Pergamum"}}, "entities": [{"URI": "http://dbpedia.org/resource/Libraries_in_Brighton_and_Hove", "surface form": "libraries"}, {"URI": "http://dbpedia.org/resource/1400", "surface form": "1400"}], "relations": [{"URI": "http://dbpedia.org/ontology/established", "surface form": "established"}, {"URI": "http://dbpedia.org/ontology/date", "surface form": "when"}]}, {"id": "188", "question": [{"language": "en", "string": "Give me all federal chancellors of Germany."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Person> { ?uri <http://dbpedia.org/ontology/office> \"Chancellor of Germany\" } UNION { ?uri <http://dbpedia.org/property/office> <http://dbpedia.org/resource/Chancellor_of_Germany> } }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Franz_von_Papen"}}, "entities": [{"URI": "http://dbpedia.org/resource/Germany", "surface form": "Germany"}], "relations": [{"URI": "http://dbpedia.org/ontology/federalState", "surface form": "federal chancellors"}]}, {"id": "189", "question": [{"language": "en", "string": "How many Aldi stores are there?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?number WHERE { res:Aldi dbo:numberOfLocations ?number }"}, "answers": {"number": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#nonNegativeInteger", "value": "11235"}}, "entities": [{"URI": "http://dbpedia.org/resource/Aldi", "surface form": "Aldi stores"}], "relations": []}, {"id": "191", "question": [{"language": "en", "string": "Who wrote the book The Pillars of the Earth?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:The_Pillars_of_the_Earth dbo:author ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ken_Follett"}}, "entities": [{"URI": "http://dbpedia.org/resource/The_Pillars_of_the_Earth", "surface form": "The Pillars of the Earth"}], "relations": [{"URI": "http://dbpedia.org/ontology/author", "surface form": "wrote"}]}, {"id": "192", "question": [{"language": "en", "string": "In which U.S. state is Mount McKinley located?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Mount_McKinley> dbo:wikiPageRedirects ?x . ?x <http://dbpedia.org/ontology/locatedInArea> ?uri. ?uri rdf:type yago:WikicatStatesOfTheUnitedStates }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alaska"}}, "entities": [{"URI": "http://dbpedia.org/resource/United_States", "surface form": "US"}, {"URI": "http://dbpedia.org/resource/Denali", "surface form": "Mount McKinley"}], "relations": [{"URI": "http://dbpedia.org/ontology/locatedInArea", "surface form": "located"}]}, {"id": "194", "question": [{"language": "en", "string": "Give me all ESA astronauts."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Astronaut> ; <http://dbpedia.org/property/type> <http://dbpedia.org/resource/European_Space_Agency> }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dirk_Frimout"}}, "entities": [{"URI": "http://dbpedia.org/resource/European_Free_Trade_Association_Surveillance_Authority", "surface form": "ESA"}], "relations": [{"URI": "http://dbpedia.org/ontology/countryWithFirstAstronaut", "surface form": "astronauts"}]}, {"id": "195", "question": [{"language": "en", "string": "Give me all Swedish holidays."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Holiday> ; <http://dbpedia.org/ontology/country> <http://dbpedia.org/resource/Sweden> }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Saint_Knut's_Day"}}, "entities": [{"URI": "http://dbpedia.org/resource/Sweden", "surface form": "Swedish holidays"}, {"URI": "http://dbpedia.org/resource/Swedish", "surface form": "Swedish holidays"}], "relations": [{"URI": "http://dbpedia.org/ontology/country", "surface form": ""}, {"URI": "http://dbpedia.org/ontology/country", "surface form": ""}]}, {"id": "196", "question": [{"language": "en", "string": "Who is the youngest Pulitzer Prize winner?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/award> <http://dbpedia.org/resource/Pulitzer_Prize> . ?uri <http://dbpedia.org/ontology/birthDate> ?d . } ORDER BY DESC(?d) OFFSET 0 LIMIT 1 "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mohammad_Ponir_Hossain"}}, "entities": [{"URI": "http://dbpedia.org/resource/Pulitzer-Prize", "surface form": "Pulitzer Prize winner"}], "relations": []}, {"id": "199", "question": [{"language": "en", "string": "Which programming languages were influenced by Perl?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/ProgrammingLanguage> { ?uri <http://dbpedia.org/ontology/influencedBy> <http://dbpedia.org/resource/Perl> } UNION { <http://dbpedia.org/resource/Perl> <http://dbpedia.org/ontology/influenced> ?uri } }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/BeanShell"}}, "entities": [{"URI": "http://dbpedia.org/resource/Perl", "surface form": "Perl"}], "relations": [{"URI": "http://dbpedia.org/property/programmingLanguage", "surface form": "programming languages"}, {"URI": "http://dbpedia.org/ontology/influenced", "surface form": "influenced"}]}, {"id": "201", "question": [{"language": "en", "string": "Which frequent flyer program has the most airlines?"}], "query": {"sparql": "SELECT ?uri WHERE { ?airline <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Airline> . ?airline <http://dbpedia.org/property/frequentFlyer> ?uri. } GROUP BY ?uri ORDER BY DESC(COUNT(DISTINCT ?airline)) OFFSET 0 LIMIT 1"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Miles_&_More"}}, "entities": [{"URI": "http://dbpedia.org/resource/Frequent-flyer_program", "surface form": "frequent flyer program"}], "relations": [{"URI": "http://dbpedia.org/ontology/icaoAirlineCode", "surface form": "airlines"}]}, {"id": "203", "question": [{"language": "en", "string": "Which artists were born on the same date as Rachel Stevens?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { ?uri a dbo:Artist . dbr:Rachel_Stevens dbo:birthDate ?birthdate . ?uri dbo:birthDate ?birthdate }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vesna_Pisarovi\u0107"}}, "entities": [{"URI": "http://dbpedia.org/resource/Rachel_Stevens", "surface form": "Rachel Stevens"}], "relations": [{"URI": "http://dbpedia.org/property/artist", "surface form": "artists"}, {"URI": "http://dbpedia.org/ontology/birthPlace", "surface form": "born"}]}, {"id": "206", "question": [{"language": "en", "string": "Who is starring in Spanish movies produced by Benicio del Toro?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?film rdf:type dbo:Film ; dbo:country res:Spain ; dbo:producer res:Benicio_del_Toro ; dbo:starring ?uri . ?uri rdf:type dbo:Person }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Benicio_del_Toro"}}, "entities": [{"URI": "http://dbpedia.org/resource/Spain", "surface form": "Spanish movies"}, {"URI": "http://dbpedia.org/resource/The_Movies_(film)", "surface form": "Spanish movies"}, {"URI": "http://dbpedia.org/resource/Benicio_del_Toro", "surface form": "Benicio del Toro"}], "relations": [{"URI": "http://dbpedia.org/ontology/starring", "surface form": "starring"}, {"URI": "http://dbpedia.org/ontology/wineProduced", "surface form": "produced"}, {"URI": "http://dbpedia.org/ontology/country", "surface form": ""}]}, {"id": "207", "question": [{"language": "en", "string": "Give me the currency of China."}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:China dbo:currency ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Renminbi"}}, "entities": [{"URI": "http://dbpedia.org/resource/China", "surface form": "China"}], "relations": [{"URI": "http://dbpedia.org/ontology/currency", "surface form": "currency"}]}, {"id": "209", "question": [{"language": "en", "string": "How many companies were founded by the founder of Facebook?"}], "query": {"sparql": "SELECT (COUNT(DISTINCT ?x) AS ?c) WHERE { <http://dbpedia.org/resource/Facebook> <http://dbpedia.org/ontology/foundedBy> ?uri . ?x <http://dbpedia.org/ontology/foundedBy> ?uri }"}, "answers": {"c": {"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/Facebook", "surface form": "Facebook"}], "relations": [{"URI": "http://dbpedia.org/ontology/foundingYear", "surface form": "founded"}, {"URI": "http://dbpedia.org/ontology/founder", "surface form": "founder"}]}, {"id": "210", "question": [{"language": "en", "string": "How many companies were founded in the same year as Google?"}], "query": {"sparql": "SELECT (COUNT(DISTINCT ?uri) as ?c) WHERE { ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Company> . ?uri <http://dbpedia.org/ontology/foundingYear> ?year . <http://dbpedia.org/resource/Google> <http://dbpedia.org/ontology/foundingYear> ?year . } "}, "answers": {"c": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "1343"}}, "entities": [{"URI": "http://dbpedia.org/resource/Companies_listed_on_the_New_York_Stock_Exchange_(J)", "surface form": "companies"}, {"URI": "http://dbpedia.org/resource/Google", "surface form": "Google"}], "relations": [{"URI": "http://dbpedia.org/ontology/foundingYear", "surface form": "founded"}]}, {"id": "215", "question": [{"language": "en", "string": "Give me all Swiss non-profit organizations."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/type> <http://dbpedia.org/resource/Nonprofit_organization> { ?uri <http://dbpedia.org/ontology/location> <http://dbpedia.org/resource/Switzerland> } UNION { ?uri <http://dbpedia.org/ontology/location> ?x . ?x <http://dbpedia.org/ontology/country> <http://dbpedia.org/resource/Switzerland> } }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Aiducation"}}, "entities": [{"URI": "http://dbpedia.org/resource/Non\u2013profit_organizations_based_in_California", "surface form": "Swiss non-profit organizations"}], "relations": []}, {"id": "220", "question": [{"language": "en", "string": "What is the highest mountain in Italy?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Mountain ; dbo:locatedInArea res:Italy ; dbo:elevation ?num } ORDER BY DESC(?num) OFFSET 0 LIMIT 1"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mont_Blanc"}}, "entities": [{"URI": "http://dbpedia.org/resource/Italy", "surface form": "Italy"}], "relations": [{"URI": "http://dbpedia.org/ontology/elevation", "surface form": "highest mountain"}]}, {"id": "221", "question": [{"language": "en", "string": "Where did the architect of the Eiffel Tower study?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Eiffel_Tower> <http://dbpedia.org/ontology/architect> ?x . ?x <http://dbpedia.org/property/almaMater> ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/\u00c9cole_Sp\u00e9ciale_d'Architecture"}}, "entities": [{"URI": "http://dbpedia.org/resource/Eiffel_Tower", "surface form": "Eiffel Tower study"}], "relations": [{"URI": "http://dbpedia.org/ontology/architect", "surface form": "architect"}]}, {"id": "222", "question": [{"language": "en", "string": "Which Greek parties are pro-European?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/PoliticalParty> ; <http://dbpedia.org/ontology/country> <http://dbpedia.org/resource/Greece> ; <http://dbpedia.org/ontology/ideology> <http://dbpedia.org/resource/Pro-Europeanism> }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Democratic_Alignment_(2015)"}}, "entities": [{"URI": "http://dbpedia.org/resource/Greece", "surface form": "Greek parties are pro-European"}, {"URI": "http://dbpedia.org/resource/Early_Greek_parties", "surface form": "Greek parties are pro-European"}], "relations": [{"URI": "http://dbpedia.org/ontology/country", "surface form": ""}]}, {"id": "223", "question": [{"language": "en", "string": "How high is the Yokohama Marine Tower?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?num WHERE { res:Yokohama_Marine_Tower dbo:height ?num }"}, "answers": {"num": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#double", "value": "106.07"}}, "entities": [{"URI": "http://dbpedia.org/resource/Yokohama_Marine_Tower", "surface form": "Yokohama Marine Tower"}], "relations": [{"URI": "http://dbpedia.org/ontology/height", "surface form": "high"}]}, {"id": "224", "question": [{"language": "en", "string": "How many ethnic groups live in Slovenia?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT (COUNT(DISTINCT ?uri) AS ?c) WHERE { res:Slovenia dbo:ethnicGroup ?uri }"}, "answers": {"c": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "7"}}, "entities": [{"URI": "http://dbpedia.org/resource/Slovenia", "surface form": "Slovenia"}], "relations": [{"URI": "http://dbpedia.org/ontology/ethnicGroup", "surface form": "ethnic"}, {"URI": "http://dbpedia.org/ontology/populationTotal", "surface form": "live"}]}, {"id": "226", "question": [{"language": "en", "string": "Who were the parents of Queen Victoria?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Queen_Victoria dbo:parent ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Prince_Edward,_Duke_of_Kent_and_Strathearn"}}, "entities": [{"URI": "http://dbpedia.org/resource/Queen_Victoria", "surface form": "Queen Victoria"}], "relations": [{"URI": "http://dbpedia.org/ontology/parent", "surface form": "parents"}]}, {"id": "236", "question": [{"language": "en", "string": "Who is the owner of Rolls-Royce?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Rolls-Royce_Motors> <http://dbpedia.org/ontology/owner> ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vickers_plc"}}, "entities": [{"URI": "http://dbpedia.org/resource/Rolls-Royce", "surface form": "Rolls-Royce"}], "relations": [{"URI": "http://dbpedia.org/ontology/owner", "surface form": "owner"}]}, {"id": "237", "question": [{"language": "en", "string": "What is the most frequent cause of death?"}], "query": {"sparql": "SELECT DISTINCT ?x WHERE { ?uri <http://dbpedia.org/ontology/deathCause> ?x . } ORDER BY DESC(COUNT(DISTINCT ?uri)) OFFSET 0 LIMIT 1"}, "answers": {"x": {"type": "uri", "value": "http://dbpedia.org/resource/Gunshot_wound"}}, "entities": [], "relations": [{"URI": "http://dbpedia.org/ontology/patron", "surface form": "frequent"}, {"URI": "http://dbpedia.org/ontology/fate", "surface form": "death"}]}, {"id": "240", "question": [{"language": "en", "string": "Which companies have more than 1 million employees?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Company> { ?uri <http://dbpedia.org/ontology/numberOfEmployees> ?n } UNION { ?uri <http://dbpedia.org/property/numEmployees> ?n } FILTER ( ?n > 1000000 ) }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Walmart"}}, "entities": [{"URI": "http://dbpedia.org/resource/Companies_listed_on_the_New_York_Stock_Exchange_(J)", "surface form": "companies"}], "relations": [{"URI": "http://dbpedia.org/ontology/iso6391Code", "surface form": "1"}, {"URI": "http://dbpedia.org/ontology/numberOfEmployees", "surface form": "employees"}]}, {"id": "242", "question": [{"language": "en", "string": "Show me the book that Muhammad Ali wrote."}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Book ; dbo:author res:Muhammad_Ali }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Soul_of_a_Butterfly"}}, "entities": [{"URI": "http://dbpedia.org/resource/Muhammad_Ali", "surface form": "Muhammad Ali"}], "relations": [{"URI": "http://dbpedia.org/ontology/author", "surface form": "wrote"}]}, {"id": "248", "question": [{"language": "en", "string": "Show a list of soccer clubs that play in the Bundesliga."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/SoccerClub> ; <http://dbpedia.org/ontology/league> <http://dbpedia.org/resource/Bundesliga> }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/1969\u201370_FC_Bayern_Munich_season"}}, "entities": [{"URI": "http://dbpedia.org/resource/Bundesliga", "surface form": "Bundesliga"}], "relations": [{"URI": "http://dbpedia.org/ontology/show", "surface form": "show"}, {"URI": "http://dbpedia.org/ontology/clubsRecordGoalscorer", "surface form": "soccer clubs"}, {"URI": "http://dbpedia.org/ontology/team", "surface form": "play"}]}, {"id": "249", "question": [{"language": "en", "string": "What country is Mount Everest in?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { res:Mount_Everest dbo:locatedInArea ?uri . ?uri rdf:type dbo:Country }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/China"}}, "entities": [{"URI": "http://dbpedia.org/resource/Mount_Everest", "surface form": "Mount Everest"}], "relations": [{"URI": "http://dbpedia.org/ontology/country", "surface form": "country"}]}, {"id": "251", "question": [{"language": "en", "string": "Which programming languages influenced Javascript?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/ProgrammingLanguage> ; <http://dbpedia.org/ontology/influenced> <http://dbpedia.org/resource/JavaScript> }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CoffeeScript"}}, "entities": [{"URI": "http://dbpedia.org/resource/Syntax_(programming_languages)", "surface form": "programming languages languages influenced Javascript"}], "relations": [{"URI": "http://dbpedia.org/property/programming", "surface form": "programming"}]}, {"id": "253", "question": [{"language": "en", "string": "Show me all the breweries in Australia."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Brewery> { ?uri <http://dbpedia.org/ontology/location> <http://dbpedia.org/resource/Australia> } UNION { ?uri <http://dbpedia.org/ontology/location> ?x . ?x <http://dbpedia.org/ontology/country> <http://dbpedia.org/resource/Australia> } }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cascade_Brewery"}}, "entities": [{"URI": "http://dbpedia.org/resource/Palm_Breweries", "surface form": "Breweries in Australia"}], "relations": [{"URI": "http://dbpedia.org/ontology/show", "surface form": "show"}]}, {"id": "254", "question": [{"language": "en", "string": "How much did Pulp Fiction cost?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?n WHERE { res:Pulp_Fiction dbo:budget ?n }"}, "answers": {"n": {"type": "typed-literal", "datatype": "http://dbpedia.org/datatype/usDollar", "value": "8.0"}}, "entities": [{"URI": "http://dbpedia.org/resource/Pulp_Fiction", "surface form": "Pulp Fiction"}], "relations": [{"URI": "http://dbpedia.org/ontology/budget", "surface form": "cost"}]}, {"id": "258", "question": [{"language": "en", "string": "Which book has the most pages?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Book ; dbo:numberOfPages ?n } ORDER BY DESC(?n) OFFSET 0 LIMIT 1"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Tolkien_Reader"}}, "entities": [], "relations": [{"URI": "http://dbpedia.org/ontology/volume", "surface form": "book"}]}, {"id": "261", "question": [{"language": "en", "string": "What is the location of the Houses of Parliament?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT ?uri WHERE { res:Palace_of_Westminster dbo:location ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/United_Kingdom"}}, "entities": [{"URI": "http://dbpedia.org/resource/Palace_of_Westminster", "surface form": "Houses of Parliament"}], "relations": [{"URI": "http://dbpedia.org/ontology/location", "surface form": "location"}]}, {"id": "265", "question": [{"language": "en", "string": "Which airports does Air China serve?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Air_China dbo:targetAirport ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hangzhou_Xiaoshan_International_Airport"}}, "entities": [{"URI": "http://dbpedia.org/resource/Air_China", "surface form": "Air China"}], "relations": [{"URI": "http://dbpedia.org/ontology/hubAirport", "surface form": "airports"}, {"URI": "http://dbpedia.org/property/row", "surface form": "serve"}]}, {"id": "266", "question": [{"language": "en", "string": "In which year was Rachel Stevens born?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Rachel_Stevens dbo:birthYear ?uri }"}, "answers": {"uri": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#gYear", "value": "1978"}}, "entities": [{"URI": "http://dbpedia.org/resource/Rachel_Stevens", "surface form": "Rachel Stevens"}], "relations": [{"URI": "http://dbpedia.org/ontology/birthYear", "surface form": "born"}]}, {"id": "273", "question": [{"language": "en", "string": "Who was president of Pakistan in 1978?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/title> <http://dbpedia.org/resource/President_of_Pakistan> ; <http://dbpedia.org/property/years> 1978 }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Muhammad_Zia-ul-Haq"}}, "entities": [{"URI": "http://dbpedia.org/resource/Pakistan", "surface form": "Pakistan"}, {"URI": "http://dbpedia.org/resource/1978", "surface form": "1978"}], "relations": [{"URI": "http://dbpedia.org/ontology/president", "surface form": "president"}]}, {"id": "275", "question": [{"language": "en", "string": "Give me all types of eating disorders."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/class/yago/WikicatEatingDisorders> }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Disordered_eating"}}, "entities": [{"URI": "http://dbpedia.org/resource/Disorders_of_consciousness", "surface form": "disorders"}], "relations": [{"URI": "http://dbpedia.org/property/type", "surface form": "types"}, {"URI": "http://dbpedia.org/ontology/house", "surface form": "eating"}]}, {"id": "276", "question": [{"language": "en", "string": "Who was married to president Chirac?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Jacques_Chirac dbo:spouse ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bernadette_Chirac"}}, "entities": [{"URI": "http://dbpedia.org/resource/Jacques_Chirac", "surface form": "president Chirac"}], "relations": [{"URI": "http://dbpedia.org/ontology/spouse", "surface form": "married"}]}, {"id": "277", "question": [{"language": "en", "string": "What is the largest metropolitan area in Washington state?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Washington_(state)> <http://dbpedia.org/property/largestmetro> ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Seattle_metropolitan_area"}}, "entities": [{"URI": "http://dbpedia.org/resource/Metropolitan_area", "surface form": "largest metropolitan area"}, {"URI": "http://dbpedia.org/resource/Washington", "surface form": "Washington"}], "relations": []}, {"id": "278", "question": [{"language": "en", "string": "Where in France is sparkling wine produced?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { ?uri dbo:wineProduced res:Sparkling_wine ; dbo:location res:France }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Loire_Valley_(wine)"}}, "entities": [{"URI": "http://dbpedia.org/resource/Sparkling_wines", "surface form": "sparkling wine"}, {"URI": "http://dbpedia.org/resource/France", "surface form": "France"}], "relations": [{"URI": "http://dbpedia.org/ontology/parkingInformation", "surface form": "sparkling"}, {"URI": "http://dbpedia.org/ontology/wineRegion", "surface form": "wine produced"}]}, {"id": "282", "question": [{"language": "en", "string": "Who was the doctoral supervisor of Albert Einstein?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Albert_Einstein dbo:doctoralAdvisor ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alfred_Kleiner"}}, "entities": [{"URI": "http://dbpedia.org/resource/Albert_Einstein", "surface form": "Albert Einstein"}], "relations": [{"URI": "http://dbpedia.org/ontology/doctoralAdvisor", "surface form": "doctoral supervisor"}]}, {"id": "284", "question": [{"language": "en", "string": "Who was on the Apollo 11 mission?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Apollo_11> <http://dbpedia.org/property/crewMembers> ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Buzz_Aldrin"}}, "entities": [{"URI": "http://dbpedia.org/resource/Apollo_11", "surface form": "Apollo 11 mission"}], "relations": []}, {"id": "289", "question": [{"language": "en", "string": "Which Indian company has the most employees?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Company ; dbo:location res:India ; dbo:numberOfEmployees ?n } ORDER BY DESC(?n) OFFSET 0 LIMIT 1"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ministry_of_Railways_(India)"}}, "entities": [{"URI": "http://dbpedia.org/resource/India", "surface form": "Indian company"}, {"URI": "http://dbpedia.org/resource/SPIC_(Indian_company)", "surface form": "Indian company"}], "relations": [{"URI": "http://dbpedia.org/ontology/numberOfEmployees", "surface form": "employees"}, {"URI": "http://dbpedia.org/ontology/country", "surface form": ""}]}, {"id": "291", "question": [{"language": "en", "string": "What is the capital of Cameroon?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Cameroon dbo:capital ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Yaound\u00e9"}}, "entities": [{"URI": "http://dbpedia.org/resource/Cameroon", "surface form": "Cameroon"}], "relations": [{"URI": "http://dbpedia.org/ontology/capital", "surface form": "capital"}]}, {"id": "294", "question": [{"language": "en", "string": "Who wrote Harry Potter?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Harry_Potter> <http://dbpedia.org/property/author> ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/J._K._Rowling"}}, "entities": [{"URI": "http://dbpedia.org/resource/Harry_Potter", "surface form": "Harry Potter"}], "relations": [{"URI": "http://dbpedia.org/property/author", "surface form": "wrote"}]}, {"id": "296", "question": [{"language": "en", "string": "What is the largest country in the world?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Country ; dbo:areaTotal ?n } ORDER BY DESC(?n) OFFSET 0 LIMIT 1"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Asia"}}, "entities": [], "relations": [{"URI": "http://dbpedia.org/ontology/areaTotal", "surface form": "largest country"}]}, {"id": "298", "question": [{"language": "en", "string": "To which party does the mayor of Paris belong?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Paris dbo:mayor ?x . ?x dbo:party ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Socialist_Party_(France)"}}, "entities": [{"URI": "http://dbpedia.org/resource/Paris", "surface form": "Paris"}], "relations": [{"URI": "http://dbpedia.org/ontology/party", "surface form": "party"}, {"URI": "http://dbpedia.org/ontology/mayor", "surface form": "mayor"}, {"URI": "http://dbpedia.org/ontology/date", "surface form": "belong"}]}, {"id": "300", "question": [{"language": "en", "string": "When did Boris Becker end his active career?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?d WHERE { res:Boris_Becker dbo:activeYearsEndDate ?d }"}, "answers": {"d": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#date", "value": "1999-06-25"}}, "entities": [{"URI": "http://dbpedia.org/resource/Boris_Becker", "surface form": "Boris Becker"}], "relations": [{"URI": "http://dbpedia.org/ontology/result", "surface form": "end"}, {"URI": "http://dbpedia.org/ontology/careerPrizeMoney", "surface form": "active career"}]}, {"id": "301", "question": [{"language": "en", "string": "Show me all basketball players that are higher than 2 meters."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/BasketballPlayer> ; <http://dbpedia.org/ontology/height> ?n FILTER ( ?n > 2.0 ) }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alize_Johnson"}}, "entities": [{"URI": "http://dbpedia.org/resource/National_Basketball_Players_Association", "surface form": "basketball players"}], "relations": [{"URI": "http://dbpedia.org/ontology/show", "surface form": "show"}, {"URI": "http://dbpedia.org/ontology/seniority", "surface form": "higher"}, {"URI": "http://dbpedia.org/ontology/iso6392Code", "surface form": "2 meters"}]}, {"id": "303", "question": [{"language": "en", "string": "How many grand-children did Jacques Cousteau have?"}], "query": {"sparql": "SELECT COUNT(DISTINCT ?y AS ?y) WHERE { <http://dbpedia.org/resource/Jacques_Cousteau> <http://dbpedia.org/ontology/child> ?x . ?x <http://dbpedia.org/ontology/child> ?y . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "4"}}, "entities": [{"URI": "http://dbpedia.org/resource/Jacques_Cousteau", "surface form": "Jacques Cousteau"}], "relations": [{"URI": "http://dbpedia.org/ontology/child", "surface form": "grand-children"}]}, {"id": "306", "question": [{"language": "en", "string": "Show me all books in Asimov's Foundation series."}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { ?uri dbo:series res:Foundation_series }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/R._Daneel_Olivaw"}}, "entities": [{"URI": "http://dbpedia.org/resource/Asimov_(disambiguation)", "surface form": "Asimov"}, {"URI": "http://dbpedia.org/resource/Foundation_series", "surface form": " Foundation series"}], "relations": [{"URI": "http://dbpedia.org/ontology/show", "surface form": "show"}, {"URI": "http://dbpedia.org/property/books", "surface form": "books"}]}, {"id": "307", "question": [{"language": "en", "string": "Which movies star both Liz Taylor and Richard Burton?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/starring> <http://dbpedia.org/resource/Elizabeth_Taylor> ; <http://dbpedia.org/ontology/starring> <http://dbpedia.org/resource/Richard_Burton> }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Divorce_His,_Divorce_Hers"}}, "entities": [{"URI": "http://dbpedia.org/resource/Liz:_The_Elizabeth_Taylor_Story", "surface form": "Liz Taylor"}, {"URI": "http://dbpedia.org/resource/Richard_Burton", "surface form": "Richard Burton"}], "relations": [{"URI": "http://dbpedia.org/ontology/film", "surface form": "movies"}, {"URI": "http://dbpedia.org/property/name", "surface form": "star"}]}, {"id": "308", "question": [{"language": "en", "string": "In which city are the headquarters of the United Nations?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { res:Headquarters_of_the_United_Nations dbo:location ?uri . ?uri rdf:type dbo:City }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/New_York_City"}}, "entities": [{"URI": "http://dbpedia.org/resource/Headquarters_of_the_United_Nations", "surface form": "headquarters of the United Nations"}], "relations": [{"URI": "http://dbpedia.org/ontology/city", "surface form": "city"}, {"URI": "http://dbpedia.org/ontology/headquarter", "surface form": "headquarters"}]}, {"id": "309", "question": [{"language": "en", "string": "In which city was the president of Montenegro born?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/title> dbr:President_of_Montenegro ; dbo:birthPlace ?uri . ?uri dbo:type dbr:Capital_city }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Belgrade"}}, "entities": [{"URI": "http://dbpedia.org/resource/Montenegro", "surface form": "Montenegro"}], "relations": [{"URI": "http://dbpedia.org/ontology/city", "surface form": "city"}, {"URI": "http://dbpedia.org/ontology/president", "surface form": "president"}, {"URI": "http://dbpedia.org/ontology/birthPlace", "surface form": "born"}]}, {"id": "310", "question": [{"language": "en", "string": "Which writers studied in Istanbul?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Writer> { ?uri <http://dbpedia.org/ontology/almaMater> ?x } UNION { ?uri <http://dbpedia.org/ontology/education> ?x } { ?x <http://dbpedia.org/ontology/city> <http://dbpedia.org/resource/Istanbul> } UNION { ?x <http://dbpedia.org/property/city> <http://dbpedia.org/resource/Istanbul> } }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vedat_T\u00fcrkali"}}, "entities": [{"URI": "http://dbpedia.org/resource/Istanbul", "surface form": "Istanbul"}], "relations": [{"URI": "http://dbpedia.org/ontology/writer", "surface form": "writers"}, {"URI": "http://dbpedia.org/ontology/office", "surface form": "studied"}]}, {"id": "313", "question": [{"language": "en", "string": "Who discovered Ceres?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Ceres_(dwarf_planet)> dbo:discoverer ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Giuseppe_Piazzi"}}, "entities": [{"URI": "http://dbpedia.org/resource/Ceres_(dwarf_planet)", "surface form": "Ceres"}], "relations": [{"URI": "http://dbpedia.org/ontology/discoverer", "surface form": "discovered"}]}, {"id": "316", "question": [{"language": "en", "string": "What was the first Queen album?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Album ; dbo:artist <http://dbpedia.org/resource/Queen_(band)> ; dbo:releaseDate ?d } ORDER BY ASC(?d) OFFSET 0 LIMIT 1"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Seven_Seas_of_Rhye"}}, "entities": [{"URI": "http://dbpedia.org/resource/Queen_(Queen_album)", "surface form": "Queen album"}], "relations": []}, {"id": "318", "question": [{"language": "en", "string": "Where is Syngman Rhee buried?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Syngman_Rhee dbo:restingPlace ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Seoul"}}, "entities": [{"URI": "http://dbpedia.org/resource/Syngman_Rhee", "surface form": "Syngman Rhee"}], "relations": [{"URI": "http://dbpedia.org/ontology/restingPlace", "surface form": "buried"}]}, {"id": "319", "question": [{"language": "en", "string": "In which countries do people speak Japanese?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Country ; dbo:language res:Japanese_language }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Taiwan_under_Japanese_rule"}}, "entities": [{"URI": "http://dbpedia.org/resource/Countries_of_the_United_Kingdom", "surface form": "countries"}, {"URI": "http://dbpedia.org/resource/Japan", "surface form": "Japanese"}, {"URI": "http://dbpedia.org/resource/Japanese", "surface form": "Japanese"}], "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": "323", "question": [{"language": "en", "string": "When did Operation Overlord commence?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?d WHERE { res:Operation_Overlord dbo:date ?d }"}, "answers": {"d": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#date", "value": "1944-08-30"}}, "entities": [{"URI": "http://dbpedia.org/resource/Operation_Overlord", "surface form": "Operation Overlord commence"}], "relations": [{"URI": "http://dbpedia.org/ontology/date", "surface form": "when"}]}, {"id": "325", "question": [{"language": "en", "string": "In which time zone is Rome?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Rome dbo:timeZone ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Central_European_Time"}}, "entities": [{"URI": "http://dbpedia.org/resource/Rome", "surface form": "Rome"}], "relations": [{"URI": "http://dbpedia.org/ontology/timeZone", "surface form": "time zone"}]}, {"id": "328", "question": [{"language": "en", "string": "What was the original occupation of the inventor of Lego?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Lego> <http://dbpedia.org/property/inventor> ?x . ?x <http://dbpedia.org/property/occupation> ?uri . } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Carpenter"}}, "entities": [{"URI": "http://dbpedia.org/resource/Lego", "surface form": "Lego"}], "relations": [{"URI": "http://dbpedia.org/ontology/industry", "surface form": "original occupation"}, {"URI": "http://dbpedia.org/property/founder", "surface form": "inventor"}]}, {"id": "329", "question": [{"language": "en", "string": "Which countries have more than ten volcanoes?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x a <http://dbpedia.org/ontology/Volcano> ; <http://dbpedia.org/ontology/locatedInArea> ?uri . ?uri a <http://dbpedia.org/ontology/Country> } GROUP BY ?uri HAVING ( COUNT(?x) > 10 )"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Japan"}}, "entities": [{"URI": "http://dbpedia.org/resource/Countries_of_the_United_Kingdom", "surface form": "countries"}, {"URI": "http://dbpedia.org/resource/Volcanoes_National_Park", "surface form": "volcanoes"}], "relations": []}, {"id": "330", "question": [{"language": "en", "string": "Who wrote the Game of Thrones theme?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Game_of_Thrones dbo:composer ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ramin_Djawadi"}}, "entities": [{"URI": "http://dbpedia.org/resource/Game_of_Thrones", "surface form": "Game of Thrones"}], "relations": [{"URI": "http://dbpedia.org/ontology/composer", "surface form": "wrote"}]}, {"id": "333", "question": [{"language": "en", "string": "How many emperors did China have?"}], "query": {"sparql": "SELECT COUNT(DISTINCT ?uri AS ?uri) WHERE { ?uri <http://dbpedia.org/property/title> <http://dbpedia.org/resource/Emperor_of_China> . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "242"}}, "entities": [{"URI": "http://dbpedia.org/resource/China", "surface form": "China"}], "relations": [{"URI": "http://dbpedia.org/ontology/leader", "surface form": "emperors"}]}, {"id": "335", "question": [{"language": "en", "string": "In which ancient empire could you pay with cocoa beans?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { ?uri dbo:currency res:Cocoa_bean }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Aztec_Empire"}}, "entities": [{"URI": "http://dbpedia.org/resource/Cocoa_bean", "surface form": "cocoa beans"}], "relations": [{"URI": "http://dbpedia.org/ontology/country", "surface form": "ancient empire"}, {"URI": "http://dbpedia.org/ontology/currency", "surface form": "pay"}]}, {"id": "337", "question": [{"language": "en", "string": "Which space probes were sent into orbit around the sun?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbc: <http://dbpedia.org/resource/Category:> PREFIX dct: <http://purl.org/dc/terms/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?s WHERE { ?s dct:subject dbc:Missions_to_the_Sun ; rdf:type ?type FILTER ( ?type IN (dbo:Satellite, dbo:ArtificialSatellite) ) }"}, "answers": {"s": {"type": "uri", "value": "http://dbpedia.org/resource/Geomagnetic_Field_Monitoring_Program_of_SUPARCO"}}, "entities": [], "relations": [{"URI": "http://dbpedia.org/ontology/area", "surface form": "space probes"}, {"URI": "http://dbpedia.org/ontology/course", "surface form": "orbit"}, {"URI": "http://dbpedia.org/ontology/year", "surface form": "sun"}]}, {"id": "338", "question": [{"language": "en", "string": "When was Coca Cola invented?"}], "query": {"sparql": "SELECT DISTINCT ?n WHERE { <http://dbpedia.org/resource/Coca-Cola> <http://dbpedia.org/property/introduced> ?n . } "}, "answers": {"n": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#date", "value": "1886-05-08"}}, "entities": [{"URI": "http://dbpedia.org/resource/Coca-Cola", "surface form": "Coca Cola"}], "relations": [{"URI": "http://dbpedia.org/ontology/creator", "surface form": "invented"}]}, {"id": "339", "question": [{"language": "en", "string": "What is the biggest stadium in Spain?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Stadium ; dbo:location res:Spain ; dbo:seatingCapacity ?n } ORDER BY DESC(?n) OFFSET 0 LIMIT 1"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Camp_Nou"}}, "entities": [{"URI": "http://dbpedia.org/resource/Spain", "surface form": "Spain"}], "relations": [{"URI": "http://dbpedia.org/property/stadium", "surface form": "biggest stadium"}]}, {"id": "341", "question": [{"language": "en", "string": "How short is the shortest active NBA player?"}], "query": {"sparql": "SELECT DISTINCT ?n WHERE { ?x a <http://dbpedia.org/ontology/BasketballPlayer> ; <http://dbpedia.org/ontology/league> <http://dbpedia.org/resource/National_Basketball_Association> ; <http://dbpedia.org/ontology/height> ?n FILTER NOT EXISTS { ?x <http://dbpedia.org/ontology/activeYearsEndYear> ?d } } ORDER BY ASC(?n) OFFSET 0 LIMIT 1"}, "answers": {"n": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#double", "value": "1.7526"}}, "entities": [{"URI": "http://dbpedia.org/resource/National_Basketball_Association", "surface form": "NBA"}, {"URI": "http://dbpedia.org/resource/Shortest_job_next", "surface form": "shortest active player"}], "relations": [{"URI": "http://dbpedia.org/ontology/thumbnail", "surface form": "short"}]}, {"id": "346", "question": [{"language": "en", "string": "Who is the son of Sonny and Cher?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { ?uri dbo:parent res:Cher ; dbo:parent res:Sonny_Bono }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chaz_Bono"}}, "entities": [{"URI": "http://dbpedia.org/resource/Cher", "surface form": "Sonny and Cher"}, {"URI": "http://dbpedia.org/resource/Sonny_Bono", "surface form": "Sonny and Cher"}], "relations": [{"URI": "http://dbpedia.org/ontology/child", "surface form": "son"}]}, {"id": "347", "question": [{"language": "en", "string": "Show me Hemingway's autobiography."}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { ?uri dbo:author res:Ernest_Hemingway ; dbo:literaryGenre res:Autobiography }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/A_Moveable_Feast"}}, "entities": [{"URI": "http://dbpedia.org/resource/Hemingway_House", "surface form": "Hemingway"}, {"URI": "http://dbpedia.org/resource/Autobiography", "surface form": " autobiography"}], "relations": [{"URI": "http://dbpedia.org/ontology/show", "surface form": "show"}]}, {"id": "348", "question": [{"language": "en", "string": "What kind of music did Lou Reed play?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Lou_Reed> <http://dbpedia.org/ontology/genre> ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Art_rock"}}, "entities": [{"URI": "http://dbpedia.org/resource/Lou_Reed", "surface form": "Lou Reed"}], "relations": [{"URI": "http://dbpedia.org/ontology/musicalBand", "surface form": "music"}, {"URI": "http://dbpedia.org/ontology/starring", "surface form": "play"}]}, {"id": "351", "question": [{"language": "en", "string": "When is the movie Worst Case Scenario going to be in cinemas in the Netherlands?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> PREFIX dbr: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX foaf: <http://xmlns.com/foaf/0.1/> SELECT DISTINCT ?rel WHERE { <http://dbpedia.org/resource/Worst_Case_Scenario_(film)> ?p ?o ; dbo:releaseDate ?rel FILTER contains(lcase(str(?o)), \"netherlands\") }"}, "answers": {"rel": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#date", "value": "2008-01-30"}}, "entities": [{"URI": "http://dbpedia.org/resource/Worst-case_scenario", "surface form": "movie Worst Case Scenario"}, {"URI": "http://dbpedia.org/resource/Netherlands", "surface form": "Netherlands"}], "relations": [{"URI": "http://dbpedia.org/ontology/picture", "surface form": "cinemas"}]}, {"id": "353", "question": [{"language": "en", "string": "Which weapons did Heckler & Koch develop?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Weapon> ; <http://dbpedia.org/property/designer> <http://dbpedia.org/resource/Heckler_&_Koch> }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ak_4_rifle"}}, "entities": [{"URI": "http://dbpedia.org/resource/Heckler_&_Koch", "surface form": "Heckler & Koch"}], "relations": [{"URI": "http://dbpedia.org/ontology/numberOfSeasons", "surface form": "weapons"}, {"URI": "http://dbpedia.org/ontology/product", "surface form": "develop"}]}, {"id": "354", "question": [{"language": "en", "string": "Where is Fort Knox located?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Fort_Knox> <http://dbpedia.org/ontology/location> ?uri. ?uri a <http://dbpedia.org/ontology/Place>. }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kentucky"}}, "entities": [{"URI": "http://dbpedia.org/resource/Fort_Knox", "surface form": "Fort Knox"}], "relations": [{"URI": "http://dbpedia.org/property/location", "surface form": "located"}]}, {"id": "357", "question": [{"language": "en", "string": "When was Jack Wolfskin founded?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT xsd:date(?year) WHERE { res:Jack_Wolfskin dbo:foundingYear ?year }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#date", "value": "1981-01-01"}}, "entities": [{"URI": "http://dbpedia.org/resource/Jack_Wolfskin", "surface form": "Jack Wolfskin"}], "relations": [{"URI": "http://dbpedia.org/ontology/foundingYear", "surface form": "founded"}]}, {"id": "358", "question": [{"language": "en", "string": "In which studio did the Beatles record their first album?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbp: <http://dbpedia.org/property/> PREFIX dbr: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> PREFIX db: <http://dbpedia.org/> SELECT ?studio WHERE { ?album dbo:artist dbr:The_Beatles ; rdf:type dbo:Album ; dbo:releaseDate ?date ; dbp:studio ?studio } ORDER BY ASC(?date) LIMIT 1"}, "answers": {"studio": {"type": "literal", "xml:lang": "en", "value": "EMI, London"}}, "entities": [{"URI": "http://dbpedia.org/resource/Beatles_VI", "surface form": "Beatles"}], "relations": [{"URI": "http://dbpedia.org/property/studio", "surface form": "studio"}, {"URI": "http://dbpedia.org/ontology/recordLabel", "surface form": "record"}, {"URI": "http://dbpedia.org/ontology/album", "surface form": "album"}]}, {"id": "360", "question": [{"language": "en", "string": "How deep is Lake Chiemsee?"}], "query": {"sparql": "SELECT DISTINCT ?n WHERE { <http://dbpedia.org/resource/Chiemsee> <http://dbpedia.org/ontology/maximumDepth> ?n }"}, "answers": {"n": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#double", "value": "72.7"}}, "entities": [{"URI": "http://dbpedia.org/resource/Chiemsee", "surface form": "Lake Chiemsee"}], "relations": [{"URI": "http://dbpedia.org/ontology/capital", "surface form": "deep"}]}, {"id": "361", "question": [{"language": "en", "string": "Give me the grandchildren of Elvis Presley."}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Elvis_Presley dbo:child ?child . ?child dbo:child ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Riley_Keough"}}, "entities": [{"URI": "http://dbpedia.org/resource/Elvis_Presley", "surface form": "Elvis Presley"}], "relations": [{"URI": "http://dbpedia.org/ontology/child", "surface form": "grandchildren"}]}, {"id": "363", "question": [{"language": "en", "string": "When was Olof Palme shot?"}], "query": {"sparql": "SELECT DISTINCT ?date WHERE { <http://dbpedia.org/resource/Olof_Palme> <http://dbpedia.org/ontology/deathDate> ?date }"}, "answers": {"date": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#date", "value": "1986-02-28"}}, "entities": [{"URI": "http://dbpedia.org/resource/Olof_Palme", "surface form": "Olof Palme"}], "relations": [{"URI": "http://dbpedia.org/ontology/discharge", "surface form": "shot"}]}, {"id": "366", "question": [{"language": "en", "string": "How high is the lighthouse in Colombo?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?num WHERE { res:Colombo_Lighthouse dbo:height ?num }"}, "answers": {"num": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#double", "value": "15.0"}}, "entities": [{"URI": "http://dbpedia.org/resource/Colombo_Lighthouse", "surface form": "Lighthouse in Colombo"}], "relations": [{"URI": "http://dbpedia.org/ontology/height", "surface form": "high"}]}, {"id": "369", "question": [{"language": "en", "string": "Give me all Seven Wonders of the Ancient World."}], "query": {"sparql": "PREFIX dct: <http://purl.org/dc/terms/> PREFIX dbc: <http://dbpedia.org/resource/Category:> SELECT ?uri WHERE { ?uri dct:subject dbc:Seven_Wonders_of_the_Ancient_World }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Temple_of_Artemis"}}, "entities": [{"URI": "http://dbpedia.org/resource/Seven_Wonders_of_the_Ancient_World", "surface form": "Seven Wonders of the Ancient World"}], "relations": []}, {"id": "370", "question": [{"language": "en", "string": "Give me all chemical elements."}], "query": {"sparql": "PREFIX dct: <http://purl.org/dc/terms/> PREFIX dbc: <http://dbpedia.org/resource/Category:> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX owl: <http://www.w3.org/2002/07/owl#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type owl:Thing ; dct:subject dbc:Chemical_elements }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Aluminium"}}, "entities": [{"URI": "http://dbpedia.org/resource/Sand_casting", "surface form": "chemical elements"}], "relations": []}, {"id": "371", "question": [{"language": "en", "string": "How many rivers and lakes are in South Carolina?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dct: <http://purl.org/dc/terms/> PREFIX dbc: <http://dbpedia.org/resource/Category:> PREFIX dbr: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT (COUNT(DISTINCT ?uri) AS ?count) WHERE { { ?uri dbo:location dbr:South_Carolina ; rdf:type dbo:Lake } UNION { ?uri dct:subject dbc:Rivers_and_streams_of_South_Carolina } }"}, "answers": {"count": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "14"}}, "entities": [{"URI": "http://dbpedia.org/resource/South_Carolina", "surface form": "South Carolina"}], "relations": [{"URI": "http://dbpedia.org/ontology/river", "surface form": "rivers"}, {"URI": "http://dbpedia.org/ontology/lake", "surface form": "lakes"}]}, {"id": "373", "question": [{"language": "en", "string": "How many theories did Albert Einstein come up with?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT (COUNT(?uri) AS ?count) WHERE { dbr:Albert_Einstein dbo:knownFor ?uri }"}, "answers": {"count": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "15"}}, "entities": [{"URI": "http://dbpedia.org/resource/Theories_of_cloaking", "surface form": "theories"}, {"URI": "http://dbpedia.org/resource/Albert_Einstein", "surface form": "Albert Einstein"}], "relations": []}, {"id": "374", "question": [{"language": "en", "string": "What form of government is found in South Africa?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?uri WHERE { dbr:South_Africa dbo:governmentType ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Unitary_state"}}, "entities": [{"URI": "http://dbpedia.org/resource/South_Africa", "surface form": "South Africa"}], "relations": [{"URI": "http://dbpedia.org/ontology/type", "surface form": "form"}, {"URI": "http://dbpedia.org/ontology/government", "surface form": "government"}]}, {"id": "377", "question": [{"language": "en", "string": "What is the wavelength of indigo?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?n WHERE { dbr:Indigo dbo:wavelength ?n }"}, "answers": {"n": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#double", "value": "4.2e-07"}}, "entities": [{"URI": "http://dbpedia.org/resource/Indigo", "surface form": "indigo"}], "relations": [{"URI": "http://dbpedia.org/ontology/wavelength", "surface form": "wavelength"}]}, {"id": "378", "question": [{"language": "en", "string": "What was the name of the famous battle in 1836 in San Antonio?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?uri WHERE { ?uri a dbo:MilitaryConflict ; dbo:place dbr:San_Antonio ; dbo:date ?date FILTER ( ?date > \"1835-12-31T00:00:00Z\"^^xsd:dateTime ) FILTER ( ?date <= \"1836-12-31T00:00:00Z\"^^xsd:dateTime ) }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Battle_of_the_Alamo"}}, "entities": [{"URI": "http://dbpedia.org/resource/1836", "surface form": "1836"}, {"URI": "http://dbpedia.org/resource/San_Antonio", "surface form": "San Antonio"}], "relations": [{"URI": "http://dbpedia.org/property/name", "surface form": "name"}, {"URI": "http://dbpedia.org/ontology/motto", "surface form": "famous battle"}]}, {"id": "379", "question": [{"language": "en", "string": "What were the names of the three ships used by Columbus?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dct: <http://purl.org/dc/terms/> PREFIX dbc: <http://dbpedia.org/resource/Category:> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT ?uri WHERE { ?uri rdf:type dbo:Ship ; dct:subject dbc:Christopher_Columbus ; dct:subject dbc:Exploration_ships }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pinta_(ship)"}}, "entities": [{"URI": "http://dbpedia.org/resource/Columbus", "surface form": "Columbus"}], "relations": [{"URI": "http://dbpedia.org/ontology/title", "surface form": "names"}, {"URI": "http://dbpedia.org/ontology/shipBeam", "surface form": "ships"}]}, {"id": "381", "question": [{"language": "en", "string": "When was the De Beers company founded?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT xsd:date(?date) WHERE { res:De_Beers dbo:foundingYear ?date }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#date", "value": "1888-01-01"}}, "entities": [{"URI": "http://dbpedia.org/resource/De_Beers", "surface form": "De Beers company"}], "relations": [{"URI": "http://dbpedia.org/ontology/foundedBy", "surface form": "founded"}]}, {"id": "382", "question": [{"language": "en", "string": "When was John Adams born?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?date WHERE { res:John_Adams dbo:birthDate ?date }"}, "answers": {"date": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#date", "value": "1735-10-30"}}, "entities": [{"URI": "http://dbpedia.org/resource/John_Adams", "surface form": "John Adams"}], "relations": [{"URI": "http://dbpedia.org/ontology/birthDate", "surface form": "born"}]}, {"id": "385", "question": [{"language": "en", "string": "Which holidays are celebrated around the world?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Holiday }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/1981_Handsworth_riots"}}, "entities": [], "relations": [{"URI": "http://dbpedia.org/ontology/feastDay", "surface form": "holidays"}, {"URI": "http://dbpedia.org/ontology/party", "surface form": "celebrated"}]}, {"id": "386", "question": [{"language": "en", "string": "Who assassinated President McKinley?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dct: <http://purl.org/dc/terms/> PREFIX dbc: <http://dbpedia.org/resource/Category:> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Person ; dct:subject dbc:American_assassins ; dct:subject dbc:Assassination_of_William_McKinley }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Leon_Czolgosz"}}, "entities": [{"URI": "http://dbpedia.org/resource/President_McKinley_Inauguration_Footage", "surface form": "Assassinated President McKinley"}], "relations": []}, {"id": "392", "question": [{"language": "en", "string": "How big is the earth's diameter?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT (( xsd:double(?radius) * 2 ) AS ?diameter) WHERE { res:Earth dbo:meanRadius ?radius }"}, "answers": {"diameter": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#double", "value": "1.2742e+07"}}, "entities": [], "relations": [{"URI": "http://dbpedia.org/ontology/ground", "surface form": "earth"}, {"URI": "http://dbpedia.org/ontology/diameter", "surface form": " diameter"}]}, {"id": "393", "question": [{"language": "en", "string": "How many people live in Eurasia?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?population WHERE { res:Eurasia dbo:populationTotal ?population }"}, "answers": {"population": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#nonNegativeInteger", "value": "5360351985"}}, "entities": [{"URI": "http://dbpedia.org/resource/Eurasia", "surface form": "Eurasia"}], "relations": [{"URI": "http://dbpedia.org/ontology/populationTotal", "surface form": "live"}]}, {"id": "399", "question": [{"language": "en", "string": "Who is the author of the interpretation of dreams?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?Author WHERE { dbr:The_Interpretation_of_Dreams dbo:author ?Author }"}, "answers": {"Author": {"type": "uri", "value": "http://dbpedia.org/resource/Sigmund_Freud"}}, "entities": [], "relations": [{"URI": "http://dbpedia.org/ontology/author", "surface form": "author"}, {"URI": "http://dbpedia.org/ontology/meaning", "surface form": "interpretation"}, {"URI": "http://dbpedia.org/ontology/picture", "surface form": "dreams"}]}, {"id": "400", "question": [{"language": "en", "string": "What is the birth name of Adele?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?bn WHERE { dbr:Adele dbo:birthName ?bn }"}, "answers": {"bn": {"type": "literal", "xml:lang": "en", "value": "Adele Laurie Blue Adkins"}}, "entities": [{"URI": "http://dbpedia.org/resource/Adele", "surface form": "Adele"}], "relations": [{"URI": "http://dbpedia.org/ontology/birthName", "surface form": "birth name"}]}, {"id": "404", "question": [{"language": "en", "string": "how much is the elevation of D\u00fcsseldorf Airport ?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?ele WHERE { dbr:D\u00fcsseldorf_Airport dbo:elevation ?ele } LIMIT 1"}, "answers": {"ele": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#double", "value": "44.8"}}, "entities": [{"URI": "http://dbpedia.org/resource/D\u00fcsseldorf_Airport", "surface form": "D\u00fcsseldorf Airport"}], "relations": [{"URI": "http://dbpedia.org/ontology/elevation", "surface form": "elevation"}]}, {"id": "405", "question": [{"language": "en", "string": "how much is the total population of european union?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?europop WHERE { dbr:European_Union dbo:populationTotal ?europop }"}, "answers": {"europop": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#nonNegativeInteger", "value": "447007596"}}, "entities": [], "relations": [{"URI": "http://dbpedia.org/ontology/totalPopulation", "surface form": "total population"}, {"URI": "http://dbpedia.org/ontology/league", "surface form": "european union"}]}, {"id": "406", "question": [{"language": "en", "string": "how many foreigners speak German?"}], "query": {"sparql": "PREFIX dbr: <http://dbpedia.org/resource/> PREFIX dbp: <http://dbpedia.org/property/> SELECT ?Ger_lang WHERE { dbr:German_language dbp:speakers ?Ger_lang } OFFSET 1 LIMIT 1"}, "answers": {"Ger_lang": {"type": "literal", "xml:lang": "en", "value": "L2 speakers: 80\u201385 million"}}, "entities": [{"URI": "http://dbpedia.org/resource/Foreigners_out!_Schlingensiefs_Container", "surface form": "foreigners"}, {"URI": "http://dbpedia.org/resource/Germany", "surface form": "German"}, {"URI": "http://dbpedia.org/resource/German", "surface form": "German"}], "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": "407", "question": [{"language": "en", "string": "Where is the birthplace of Goethe?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?Goethe WHERE { dbr:Johann_Wolfgang_von_Goethe dbo:birthPlace ?Goethe }"}, "answers": {"Goethe": {"type": "uri", "value": "http://dbpedia.org/resource/Holy_Roman_Empire"}}, "entities": [{"URI": "http://dbpedia.org/resource/Goethe_Prize", "surface form": "Goethe"}], "relations": [{"URI": "http://dbpedia.org/ontology/birthPlace", "surface form": "birthplace"}]}, {"id": "408", "question": [{"language": "en", "string": "Where is the origin of Carolina reaper?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/>PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?uri WHERE { dbr:Carolina_Reaper dbo:origin ?uri}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rock_Hill,_South_Carolina"}}, "entities": [{"URI": "http://dbpedia.org/resource/Carolina_Reaper", "surface form": "Carolina reaper"}], "relations": [{"URI": "http://dbpedia.org/ontology/origin", "surface form": "origin"}]}, {"id": "412", "question": [{"language": "en", "string": "What is the percentage of area water in Brazil?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?percentage WHERE { dbr:Brazil dbo:percentageOfAreaWater ?percentage }"}, "answers": {"percentage": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#float", "value": "0.65"}}, "entities": [{"URI": "http://dbpedia.org/resource/Brazil", "surface form": "Brazil"}], "relations": [{"URI": "http://dbpedia.org/ontology/percentageOfAreaWater", "surface form": "percentage"}, {"URI": "http://dbpedia.org/ontology/percentageOfAreaWater", "surface form": "area water"}]}, {"id": "414", "question": [{"language": "en", "string": "What is the population of Cairo?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?pop WHERE { dbr:Cairo dbo:populationTotal ?pop }"}, "answers": {"pop": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#nonNegativeInteger", "value": "10025657"}}, "entities": [{"URI": "http://dbpedia.org/resource/Cairo", "surface form": "Cairo"}], "relations": [{"URI": "http://dbpedia.org/ontology/populationTotal", "surface form": "population"}]}, {"id": "419", "question": [{"language": "en", "string": "When was the death of Shakespeare?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?x WHERE { dbr:William_Shakespeare dbo:deathDate ?x } LIMIT 1"}, "answers": {"x": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#date", "value": "1616-04-23"}}, "entities": [{"URI": "http://dbpedia.org/resource/William_Shakespeare", "surface form": "Shakespeare"}], "relations": [{"URI": "http://dbpedia.org/ontology/deathDate", "surface form": "death"}]}, {"id": "424", "question": [{"language": "en", "string": "Who is the current federal minister of finance in Germany?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> SELECT ?leader WHERE { <http://dbpedia.org/resource/Federal_Ministry_of_Finance_(Germany)> dbo:leader ?leader }"}, "answers": {"leader": {"type": "uri", "value": "http://dbpedia.org/resource/Katja_Hessel"}}, "entities": [{"URI": "http://dbpedia.org/resource/Current_prime_minister_of_Canada", "surface form": "current federal minister"}, {"URI": "http://dbpedia.org/resource/Germany", "surface form": "Germany"}], "relations": [{"URI": "http://dbpedia.org/ontology/operator", "surface form": "finance"}]}, {"id": "430", "question": [{"language": "en", "string": "When was the last episode of the TV series Friends aired?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?date WHERE { dbr:Friends dbo:completionDate ?date }"}, "answers": {"date": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#date", "value": "2004-05-06"}}, "entities": [{"URI": "http://dbpedia.org/resource/Tv_test_pattern", "surface form": "TV"}, {"URI": "http://dbpedia.org/resource/Thomas_&_Friends_(series_18)", "surface form": "series Friends"}], "relations": [{"URI": "http://dbpedia.org/ontology/type", "surface form": "episode"}, {"URI": "http://dbpedia.org/property/firstAired", "surface form": "aired"}]}, {"id": "431", "question": [{"language": "en", "string": "What is Angela Merkel\u2019s birth name?"}], "query": {"sparql": "PREFIX res: <http://dbpedia.org/resource/> PREFIX dbp: <http://dbpedia.org/property/> SELECT DISTINCT ?string WHERE { res:Angela_Merkel dbp:birthName ?string }"}, "answers": {"string": {"type": "literal", "xml:lang": "en", "value": "Angela Dorothea Kasner"}}, "entities": [{"URI": "http://dbpedia.org/resource/Name_at_birth", "surface form": "Angela Merkel\u2019s birth name"}], "relations": []}, {"id": "433", "question": [{"language": "en", "string": "How many James Bond movies do exist?"}], "query": {"sparql": "SELECT (COUNT(DISTINCT ?uri) AS ?c) WHERE { ?uri dct:subject <http://dbpedia.org/resource/Category:James_Bond_films> }"}, "answers": {"c": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "29"}}, "entities": [{"URI": "http://dbpedia.org/resource/M_(James_Bond)", "surface form": "James Bond movies"}], "relations": [{"URI": "http://dbpedia.org/property/last", "surface form": "exist"}]}, {"id": "435", "question": [{"language": "en", "string": "What is the wavelength of Indigo?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?n WHERE { dbr:Indigo dbo:wavelength ?n }"}, "answers": {"n": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#double", "value": "4.2e-07"}}, "entities": [{"URI": "http://dbpedia.org/resource/Indigo", "surface form": "Indigo"}], "relations": [{"URI": "http://dbpedia.org/ontology/wavelength", "surface form": "wavelength"}]}, {"id": "437", "question": [{"language": "en", "string": "In which city is the headquarter of Air China?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Air_China> <http://dbpedia.org/ontology/headquarter> ?uri . ?uri a <http://dbpedia.org/class/yago/City108524735> }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Beijing"}}, "entities": [{"URI": "http://dbpedia.org/resource/Air_China", "surface form": "Air China"}], "relations": [{"URI": "http://dbpedia.org/ontology/city", "surface form": "city"}, {"URI": "http://dbpedia.org/ontology/headquarter", "surface form": "headquarter"}]}, {"id": "438", "question": [{"language": "en", "string": "Give me all libraries established before 1400."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Library> ; <http://dbpedia.org/property/established> ?year FILTER ( ?year < 1400 ) }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Library_of_Pergamum"}}, "entities": [{"URI": "http://dbpedia.org/resource/Libraries_in_Brighton_and_Hove", "surface form": "libraries"}, {"URI": "http://dbpedia.org/resource/1400", "surface form": "1400"}], "relations": [{"URI": "http://dbpedia.org/ontology/established", "surface form": "established"}]}, {"id": "442", "question": [{"language": "en", "string": "How much is the population of mexico city ?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?Mexico_City WHERE { dbr:Mexico_City dbo:populationTotal ?Mexico_City }"}, "answers": {"Mexico_City": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#nonNegativeInteger", "value": "9209944"}}, "entities": [], "relations": [{"URI": "http://dbpedia.org/ontology/country", "surface form": "population"}, {"URI": "http://dbpedia.org/ontology/municipality", "surface form": "mexico city"}]}, {"id": "444", "question": [{"language": "en", "string": "how much is the population Iraq?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?pIraq WHERE { dbr:Iraq dbo:populationTotal ?pIraq }"}, "answers": {"pIraq": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#nonNegativeInteger", "value": "44222503"}}, "entities": [{"URI": "http://dbpedia.org/resource/Population", "surface form": "population Iraq"}], "relations": []}, {"id": "445", "question": [{"language": "en", "string": "how much is the population densty rank of germany?"}], "query": {"sparql": "PREFIX dbr: <http://dbpedia.org/resource/> PREFIX dbp: <http://dbpedia.org/property/> SELECT ?rank WHERE { dbr:Germany dbp:populationDensityRank ?rank }"}, "answers": {"rank": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "58"}}, "entities": [{"URI": "http://dbpedia.org/resource/RANK", "surface form": "population densty rank"}, {"URI": "http://dbpedia.org/resource/Germany", "surface form": "germany"}], "relations": []}, {"id": "446", "question": [{"language": "en", "string": "Which holidays are celebrated around the world? test2"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Holiday }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/1981_Handsworth_riots"}}, "entities": [{"URI": "http://dbpedia.org/resource/Testa", "surface form": "test2"}], "relations": [{"URI": "http://dbpedia.org/ontology/feastDay", "surface form": "holidays"}, {"URI": "http://dbpedia.org/ontology/party", "surface form": "celebrated"}]}]} \ No newline at end of file diff --git a/QALD/combined-requeried-linked-train.json b/QALD/combined-requeried-linked-train.json new file mode 100644 index 0000000000000000000000000000000000000000..4fb030344ce78ed6f1182dd0b55df8c45750b4a4 --- /dev/null +++ b/QALD/combined-requeried-linked-train.json @@ -0,0 +1 @@ +{"questions": [{"id": "174", "question": [{"language": "en", "string": "How many languages are spoken in Turkmenistan?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT (COUNT(DISTINCT ?x) AS ?c) WHERE { res:Turkmenistan dbo:language ?x }"}, "answers": {"c": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}, "entities": [{"URI": "http://dbpedia.org/resource/Turkmenistan", "surface form": "Turkmenistan"}], "relations": [{"URI": "http://dbpedia.org/ontology/language", "surface form": "languages"}, {"URI": "http://dbpedia.org/ontology/spokenIn", "surface form": "spoken"}]}, {"id": "314", "question": [{"language": "en", "string": "Who is the host of the BBC Wildlife Specials?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:BBC_Wildlife_Specials dbo:presenter ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/David_Attenborough"}}, "entities": [{"URI": "http://dbpedia.org/resource/BBC", "surface form": "BBC"}, {"URI": "http://dbpedia.org/resource/BBC_Wildlife_Specials", "surface form": "Wildlife Specials"}], "relations": [{"URI": "http://dbpedia.org/ontology/presenter", "surface form": "host"}]}, {"id": "123", "question": [{"language": "en", "string": "Give me all female German chancellors."}], "query": {"sparql": "PREFIX res: <http://dbpedia.org/resource/> PREFIX dbp: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Chancellor_of_Germany dbp:incumbent ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Olaf_Scholz"}}, "entities": [{"URI": "http://dbpedia.org/resource/List_of_German_female_artists", "surface form": "female German chancellors"}], "relations": []}, {"id": "295", "question": [{"language": "en", "string": "Which actors play in Big Bang Theory?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/The_Big_Bang_Theory> <http://dbpedia.org/ontology/starring> ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kevin_Sussman"}}, "entities": [{"URI": "http://dbpedia.org/resource/The_Big_Bang_Theory", "surface form": "Big Bang Theory"}], "relations": [{"URI": "http://dbpedia.org/ontology/background", "surface form": "actors"}, {"URI": "http://dbpedia.org/ontology/starring", "surface form": "play"}]}, {"id": "293", "question": [{"language": "en", "string": "Who played Gus Fring in Breaking Bad?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Gus_Fring dbo:portrayer ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Giancarlo_Esposito"}}, "entities": [{"URI": "http://dbpedia.org/resource/Gus_Fring", "surface form": "Gus Fring"}, {"URI": "http://dbpedia.org/resource/Breaking_Bad", "surface form": "Breaking Bad"}], "relations": [{"URI": "http://dbpedia.org/ontology/portrayer", "surface form": "played"}]}, {"id": "304", "question": [{"language": "en", "string": "Which films did Stanley Kubrick direct?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { ?uri dbo:director res:Stanley_Kubrick }"}, "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 direct"}], "relations": [{"URI": "http://dbpedia.org/ontology/numberOfFilms", "surface form": "films"}]}, {"id": "157", "question": [{"language": "en", "string": "In which countries can you pay using the West African CFA franc?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/currency> <http://dbpedia.org/resource/West_African_CFA_franc> }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Benin"}}, "entities": [{"URI": "http://dbpedia.org/resource/Countries_of_the_United_Kingdom", "surface form": "countries"}, {"URI": "http://dbpedia.org/resource/CFA", "surface form": "CFA"}, {"URI": "http://dbpedia.org/resource/West_African_CFA_franc", "surface form": "West African franc"}], "relations": [{"URI": "http://dbpedia.org/ontology/currency", "surface form": "pay"}]}, {"id": "387", "question": [{"language": "en", "string": "Who discovered Pluto?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?uri WHERE { dbr:Pluto dbo:discoverer ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Clyde_Tombaugh"}}, "entities": [{"URI": "http://dbpedia.org/resource/Pluto", "surface form": "Pluto"}], "relations": [{"URI": "http://dbpedia.org/ontology/discovered", "surface form": "discovered"}]}, {"id": "331", "question": [{"language": "en", "string": "How many calories does a baguette have?"}], "query": {"sparql": "SELECT DISTINCT ?n WHERE { <http://dbpedia.org/resource/Baguette> <http://dbpedia.org/property/calories> ?n }"}, "answers": {"n": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "263"}}, "entities": [{"URI": "http://dbpedia.org/resource/Baguette", "surface form": "baguette"}], "relations": [{"URI": "http://dbpedia.org/property/calories", "surface form": "calories"}]}, {"id": "326", "question": [{"language": "en", "string": "Give me a list of all critically endangered birds."}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dct: <http://purl.org/dc/terms/> PREFIX dbc: <http://dbpedia.org/resource/Category:> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri ?p WHERE { ?uri rdf:type dbo:Bird { ?uri dbo:conservationStatus \"CR\" } UNION { ?uri dct:subject dbc:Critically_endangered_animals } }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mara\u00f1\u00f3n_spinetail"}}, "entities": [{"URI": "http://dbpedia.org/resource/Endangered_Species_(H.A.W.K._album)", "surface form": "Endangered"}], "relations": [{"URI": "http://dbpedia.org/ontology/principal", "surface form": "critically"}, {"URI": "http://dbpedia.org/ontology/date", "surface form": "birds"}]}, {"id": "59", "question": [{"language": "en", "string": "Who is the Formula 1 race driver with the most races?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:FormulaOneRacer ; dbo:races ?x } ORDER BY DESC(?x) OFFSET 0 LIMIT 1"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jenson_Button"}}, "entities": [{"URI": "http://dbpedia.org/resource/Race_Driver:_Create_&_Race", "surface form": "Formula 1 race driver"}], "relations": [{"URI": "http://dbpedia.org/ontology/races", "surface form": "races"}]}, {"id": "183", "question": [{"language": "en", "string": "Which countries adopted the Euro?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Country> { ?uri <http://dbpedia.org/ontology/currency> <http://dbpedia.org/resource/Euro> } UNION { ?uri <http://dbpedia.org/property/currencyCode> \"EUR\"@en } }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Andorra"}}, "entities": [{"URI": "http://dbpedia.org/resource/Countries_of_the_United_Kingdom", "surface form": "countries"}, {"URI": "http://dbpedia.org/resource/Euro", "surface form": "Euro"}], "relations": []}, {"id": "107", "question": [{"language": "en", "string": "Give me the birthdays of all actors of the television show Charmed."}], "query": {"sparql": "SELECT DISTINCT ?date WHERE { <http://dbpedia.org/resource/Charmed> <http://dbpedia.org/ontology/starring> ?actor . ?actor <http://dbpedia.org/ontology/birthDate> ?date }"}, "answers": {"date": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#date", "value": "1972-12-19"}}, "entities": [{"URI": "http://dbpedia.org/resource/Charmed", "surface form": "television show Charmed"}], "relations": [{"URI": "http://dbpedia.org/ontology/birthDate", "surface form": "birthdays"}, {"URI": "http://dbpedia.org/ontology/background", "surface form": "actors"}]}, {"id": "56", "question": [{"language": "en", "string": "To which countries does the Himalayan mountain system extend?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Himalayas> <http://dbpedia.org/ontology/country> ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kashmir"}}, "entities": [{"URI": "http://dbpedia.org/resource/Countries_of_the_United_Kingdom", "surface form": "countries"}, {"URI": "http://dbpedia.org/resource/Himalayan", "surface form": "Himalayan mountain"}], "relations": [{"URI": "http://dbpedia.org/ontology/border", "surface form": "extend"}]}, {"id": "345", "question": [{"language": "en", "string": "Who is the coach of Ankara's ice hockey team?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { ?x dbo:city res:Ankara ; dbo:league res:Turkish_Ice_Hockey_First_League ; dbo:coach ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/\u0130brahim_O\u011fuz"}}, "entities": [{"URI": "http://dbpedia.org/resource/Ankara", "surface form": "Ankara"}, {"URI": "http://dbpedia.org/resource/Greece_national_ice_hockey_team", "surface form": " ice hockey team"}], "relations": [{"URI": "http://dbpedia.org/ontology/coach", "surface form": "coach"}]}, {"id": "288", "question": [{"language": "en", "string": "Who are the developers of DBpedia?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:DBpedia dbo:developer ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/OpenLink_Software"}}, "entities": [{"URI": "http://dbpedia.org/resource/DBpedia", "surface form": "DBpedia"}], "relations": [{"URI": "http://dbpedia.org/ontology/developer", "surface form": "developers"}]}, {"id": "157", "question": [{"language": "en", "string": "In which countries can you pay using the West African CFA franc?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/currency> <http://dbpedia.org/resource/West_African_CFA_franc> }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Benin"}}, "entities": [{"URI": "http://dbpedia.org/resource/Countries_of_the_United_Kingdom", "surface form": "countries"}, {"URI": "http://dbpedia.org/resource/CFA", "surface form": "CFA"}, {"URI": "http://dbpedia.org/resource/West_African_CFA_franc", "surface form": "West African franc"}], "relations": [{"URI": "http://dbpedia.org/ontology/currency", "surface form": "pay"}]}, {"id": "200", "question": [{"language": "en", "string": "How many children does Eddie Murphy have?"}], "query": {"sparql": "SELECT DISTINCT ?n WHERE { <http://dbpedia.org/resource/Eddie_Murphy> <http://dbpedia.org/property/children> ?n }"}, "answers": {"n": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "10"}}, "entities": [{"URI": "http://dbpedia.org/resource/Eddie_Murphy", "surface form": "Eddie Murphy"}], "relations": [{"URI": "http://dbpedia.org/property/children", "surface form": "children"}]}, {"id": "13", "question": [{"language": "en", "string": "Who is the author of WikiLeaks?"}], "query": {"sparql": "PREFIX res: <http://dbpedia.org/resource/> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT ?uri WHERE { res:WikiLeaks onto:author ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Julian_Assange"}}, "entities": [{"URI": "http://dbpedia.org/resource/WikiLeaks", "surface form": "WikiLeaks"}], "relations": [{"URI": "http://dbpedia.org/ontology/author", "surface form": "author"}]}, {"id": "420", "question": [{"language": "en", "string": "With how many countries Iran has borders?"}], "query": {"sparql": "PREFIX dbr: <http://dbpedia.org/resource/> PREFIX dbp: <http://dbpedia.org/property/> SELECT ?border WHERE { dbr:Geography_of_Iran dbp:borders ?border } LIMIT 8"}, "answers": {"border": {"type": "uri", "value": "http://dbpedia.org/resource/Azerbaijan"}}, "entities": [{"URI": "http://dbpedia.org/resource/Low_Countries", "surface form": "countries Iran"}], "relations": [{"URI": "http://dbpedia.org/ontology/division", "surface form": "borders"}]}, {"id": "53", "question": [{"language": "en", "string": "Which German cities have more than 250000 inhabitants?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { { ?uri a <http://dbpedia.org/ontology/City> } UNION { ?uri a <http://dbpedia.org/ontology/Town> } ?uri <http://dbpedia.org/ontology/country> <http://dbpedia.org/resource/Germany> ; <http://dbpedia.org/ontology/populationTotal> ?population FILTER ( ?population > 250000 ) }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Berlin"}}, "entities": [{"URI": "http://dbpedia.org/resource/Germany", "surface form": "German cities"}, {"URI": "http://dbpedia.org/resource/German", "surface form": "German cities"}, {"URI": "http://dbpedia.org/resource/Population", "surface form": "250000 inhabitants"}], "relations": [{"URI": "http://dbpedia.org/ontology/country", "surface form": ""}, {"URI": "http://dbpedia.org/ontology/country", "surface form": ""}]}, {"id": "135", "question": [{"language": "en", "string": "Give me all Dutch parties."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/PoliticalParty> ; <http://dbpedia.org/ontology/country> <http://dbpedia.org/resource/Netherlands> }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Democratic_Political_Turning_Point"}}, "entities": [{"URI": "http://dbpedia.org/resource/Cura\u00e7ao", "surface form": "Dutch parties"}, {"URI": "http://dbpedia.org/resource/Dutch", "surface form": "Dutch parties"}], "relations": [{"URI": "http://dbpedia.org/ontology/country", "surface form": ""}, {"URI": "http://dbpedia.org/ontology/country", "surface form": ""}]}, {"id": "180", "question": [{"language": "en", "string": "Which U.S. states are in the same time zone as Utah?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Utah> <http://dbpedia.org/property/timezone> ?x . ?uri a <http://dbpedia.org/class/yago/WikicatStatesOfTheUnitedStates> ; <http://dbpedia.org/property/timezone> ?x FILTER ( ?uri != <http://dbpedia.org/resource/Utah> ) }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Montana"}}, "entities": [{"URI": "http://dbpedia.org/resource/Usk,_Washington", "surface form": "US"}, {"URI": "http://dbpedia.org/resource/Utah", "surface form": "Utah"}], "relations": [{"URI": "http://dbpedia.org/property/timezone", "surface form": "time zone"}]}, {"id": "398", "question": [{"language": "en", "string": "What is the alma mater of the chancellor of Germany Angela Merkel?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?Almamater WHERE { dbr:Angela_Merkel dbo:almaMater ?Almamater }"}, "answers": {"Almamater": {"type": "uri", "value": "http://dbpedia.org/resource/German_Academy_of_Sciences_at_Berlin"}}, "entities": [{"URI": "http://dbpedia.org/resource/Angela_Merkel", "surface form": "Germany Angela Merkel"}], "relations": [{"URI": "http://dbpedia.org/ontology/almaMater", "surface form": "alma mater"}, {"URI": "http://dbpedia.org/ontology/chancellor", "surface form": "chancellor"}]}, {"id": "142", "question": [{"language": "en", "string": "What is the most frequent death cause?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/>SELECT DISTINCT ?xWHERE { ?uri dbo:deathCause ?x . }ORDER BY DESC(COUNT(DISTINCT ?uri)) OFFSET 0 LIMIT 1"}, "answers": {}, "entities": [], "relations": [{"URI": "http://dbpedia.org/ontology/fate", "surface form": "frequent death"}]}, {"id": "280", "question": [{"language": "en", "string": "What is the timezone in San Pedro de Atacama?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:San_Pedro_de_Atacama dbo:timeZone ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Time_in_Chile"}}, "entities": [{"URI": "http://dbpedia.org/resource/San_Pedro_de_Atacama", "surface form": "San Pedro de Atacama"}], "relations": [{"URI": "http://dbpedia.org/ontology/timeZone", "surface form": "timezone"}]}, {"id": "227", "question": [{"language": "en", "string": "Who is the heaviest player of the Chicago Bulls?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Person> ; <http://dbpedia.org/ontology/weight> ?num { ?uri <http://dbpedia.org/property/team> <http://dbpedia.org/resource/Chicago_Bulls> } UNION { ?uri <http://dbpedia.org/property/draftTeam> <http://dbpedia.org/resource/Chicago_Bulls> } UNION { ?uri <http://dbpedia.org/ontology/draftTeam> <http://dbpedia.org/resource/Chicago_Bulls> } } ORDER BY DESC(?num) OFFSET 0 LIMIT 1"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Michael_Sweetney"}}, "entities": [{"URI": "http://dbpedia.org/resource/Chicago_Bulls", "surface form": "Chicago Bulls"}], "relations": [{"URI": "http://dbpedia.org/ontology/coach", "surface form": "heaviest player"}]}, {"id": "178", "question": [{"language": "en", "string": "Give me all islands that belong to Japan."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Island> ; <http://dbpedia.org/ontology/country> <http://dbpedia.org/resource/Japan> }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Amami_Islands"}}, "entities": [{"URI": "http://dbpedia.org/resource/Japan", "surface form": "Japan"}], "relations": [{"URI": "http://dbpedia.org/ontology/numberOfIslands", "surface form": "islands"}, {"URI": "http://dbpedia.org/ontology/date", "surface form": "belong"}]}, {"id": "59", "question": [{"language": "en", "string": "Who is the Formula 1 race driver with the most races?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:FormulaOneRacer ; dbo:races ?x } ORDER BY DESC(?x) OFFSET 0 LIMIT 1"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jenson_Button"}}, "entities": [{"URI": "http://dbpedia.org/resource/Race_Driver:_Create_&_Race", "surface form": "Formula 1 race driver"}], "relations": [{"URI": "http://dbpedia.org/ontology/races", "surface form": "races"}]}, {"id": "427", "question": [{"language": "en", "string": "In which state Penn State University is located?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?s WHERE { dbr:Pennsylvania_State_University dbo:state ?s }"}, "answers": {"s": {"type": "uri", "value": "http://dbpedia.org/resource/Pennsylvania"}}, "entities": [{"URI": "http://dbpedia.org/resource/Pennsylvania_State_University", "surface form": "Penn State University"}], "relations": [{"URI": "http://dbpedia.org/ontology/position", "surface form": "located"}]}, {"id": "352", "question": [{"language": "en", "string": "How tall is Amazon Eve?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?height WHERE { res:Amazon_Eve dbo:height ?height }"}, "answers": {"height": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#double", "value": "1.8288"}}, "entities": [{"URI": "http://dbpedia.org/resource/Amazon_Eve", "surface form": "Amazon Eve"}], "relations": [{"URI": "http://dbpedia.org/ontology/height", "surface form": "tall"}]}, {"id": "367", "question": [{"language": "en", "string": "How many years was the Ford Model T manufactured?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX xsd: <http://www.w3.org/2001/XMLSchema#> PREFIX res: <http://dbpedia.org/resource/> SELECT ?years WHERE { res:Ford_Model_T dbo:productionEndYear ?end ; dbo:productionStartYear ?start. BIND ( ( year(xsd:date(?end)) - year(xsd:date(?start)) ) AS ?years) }"}, "answers": {"years": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "19"}}, "entities": [{"URI": "http://dbpedia.org/resource/T", "surface form": "T"}, {"URI": "http://dbpedia.org/resource/Ford_Model_48", "surface form": "Ford Model"}], "relations": [{"URI": "http://dbpedia.org/ontology/manufacturer", "surface form": "manufactured"}]}, {"id": "178", "question": [{"language": "en", "string": "Give me all islands that belong to Japan."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Island> ; <http://dbpedia.org/ontology/country> <http://dbpedia.org/resource/Japan> }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Amami_Islands"}}, "entities": [{"URI": "http://dbpedia.org/resource/Japan", "surface form": "Japan"}], "relations": [{"URI": "http://dbpedia.org/ontology/numberOfIslands", "surface form": "islands"}, {"URI": "http://dbpedia.org/ontology/date", "surface form": "belong"}]}, {"id": "183", "question": [{"language": "en", "string": "Which countries adopted the Euro?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Country> { ?uri <http://dbpedia.org/ontology/currency> <http://dbpedia.org/resource/Euro> } UNION { ?uri <http://dbpedia.org/property/currencyCode> \"EUR\"@en } }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Andorra"}}, "entities": [{"URI": "http://dbpedia.org/resource/Countries_of_the_United_Kingdom", "surface form": "countries"}, {"URI": "http://dbpedia.org/resource/Euro", "surface form": "Euro"}], "relations": []}, {"id": "30", "question": [{"language": "en", "string": "Who produced the most films?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?film <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film> . ?film <http://dbpedia.org/ontology/producer> ?uri . } ORDER BY DESC(COUNT(?film)) OFFSET 0 LIMIT 1"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jesse_L._Lasky"}}, "entities": [], "relations": [{"URI": "http://dbpedia.org/ontology/wineProduced", "surface form": "produced"}, {"URI": "http://dbpedia.org/ontology/numberOfFilms", "surface form": "films"}]}, {"id": "218", "question": [{"language": "en", "string": "What does the abbreviation FIFA stand for?"}], "query": {"sparql": "SELECT DISTINCT ?name WHERE { <http://dbpedia.org/resource/FIFA> <http://dbpedia.org/property/name> ?name . } "}, "answers": {"name": {"type": "literal", "xml:lang": "en", "value": "F\u00e9d\u00e9ration internationale de Football Association"}}, "entities": [{"URI": "http://dbpedia.org/resource/FIFA", "surface form": "FIFA"}], "relations": [{"URI": "http://dbpedia.org/ontology/abbreviation", "surface form": "abbreviation"}, {"URI": "http://dbpedia.org/ontology/abbreviation", "surface form": "stand"}]}, {"id": "402", "question": [{"language": "en", "string": "How many awards has Bertrand Russell?"}], "query": {"sparql": "PREFIX dbr: <http://dbpedia.org/resource/> PREFIX dbp: <http://dbpedia.org/property/> SELECT (COUNT(?Awards) AS ?Counter) WHERE { dbr:Bertrand_Russell dbp:awards ?Awards }"}, "answers": {"Counter": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "6"}}, "entities": [{"URI": "http://dbpedia.org/resource/Bertrand_Russell", "surface form": "Bertrand Russell"}], "relations": [{"URI": "http://dbpedia.org/property/awards", "surface form": "awards"}]}, {"id": "205", "question": [{"language": "en", "string": "Which types of grapes grow in Oregon?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Oregon_wine dbo:growingGrape ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dolcetto"}}, "entities": [{"URI": "http://dbpedia.org/resource/Oregon", "surface form": "Oregon"}], "relations": [{"URI": "http://dbpedia.org/property/type", "surface form": "types"}, {"URI": "http://dbpedia.org/property/grass", "surface form": "grapes"}, {"URI": "http://dbpedia.org/property/flag", "surface form": "grow"}]}, {"id": "324", "question": [{"language": "en", "string": "Where do the Red Sox play?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Boston_Red_Sox> <http://dbpedia.org/property/ballpark> ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fenway_Park"}}, "entities": [{"URI": "http://dbpedia.org/resource/Boston_Red_Sox", "surface form": "Red Sox"}], "relations": [{"URI": "http://dbpedia.org/ontology/team", "surface form": "play"}]}, {"id": "394", "question": [{"language": "en", "string": "Give me the runtime of Toy Story."}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?runtime WHERE { res:Toy_Story dbo:runtime ?runtime }"}, "answers": {"runtime": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#double", "value": "4860.0"}}, "entities": [{"URI": "http://dbpedia.org/resource/Toy_Story", "surface form": "Toy Story"}], "relations": [{"URI": "http://dbpedia.org/ontology/runtime", "surface form": "runtime"}]}, {"id": "99", "question": [{"language": "en", "string": "How many people live in the capital of Australia?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?num WHERE { res:Australia dbo:capital ?x . ?x dbo:populationTotal ?num }"}, "answers": {"num": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#nonNegativeInteger", "value": "453558"}}, "entities": [{"URI": "http://dbpedia.org/resource/Australia", "surface form": "Australia"}], "relations": [{"URI": "http://dbpedia.org/ontology/populationTotal", "surface form": "live"}, {"URI": "http://dbpedia.org/ontology/capital", "surface form": "capital"}]}, {"id": "99", "question": [{"language": "en", "string": "How many people live in the capital of Australia?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?num WHERE { res:Australia dbo:capital ?x . ?x dbo:populationTotal ?num }"}, "answers": {"num": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#nonNegativeInteger", "value": "453558"}}, "entities": [{"URI": "http://dbpedia.org/resource/Australia", "surface form": "Australia"}], "relations": [{"URI": "http://dbpedia.org/ontology/populationTotal", "surface form": "live"}, {"URI": "http://dbpedia.org/ontology/capital", "surface form": "capital"}]}, {"id": "217", "question": [{"language": "en", "string": "What is the net income of Apple?"}], "query": {"sparql": "SELECT DISTINCT ?ni WHERE { <http://dbpedia.org/resource/Apple_Inc.> <http://dbpedia.org/ontology/netIncome> ?ni }"}, "answers": {"ni": {"type": "typed-literal", "datatype": "http://dbpedia.org/datatype/usDollar", "value": "9.468E10"}}, "entities": [{"URI": "http://dbpedia.org/resource/Apple_Inc.", "surface form": "Apple"}], "relations": [{"URI": "http://dbpedia.org/ontology/successor", "surface form": "income"}]}, {"id": "287", "question": [{"language": "en", "string": "How many movies did Park Chan-wook direct?"}], "query": {"sparql": "SELECT COUNT(DISTINCT ?uri AS ?uri) WHERE { ?uri <http://dbpedia.org/ontology/director> <http://dbpedia.org/resource/Park_Chan-wook> . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "17"}}, "entities": [{"URI": "http://dbpedia.org/resource/Park_Chan-wook", "surface form": "Park Chan-wook direct"}], "relations": [{"URI": "http://dbpedia.org/ontology/film", "surface form": "movies"}]}, {"id": "292", "question": [{"language": "en", "string": "When did the Boston Tea Party take place?"}], "query": {"sparql": "SELECT DISTINCT ?d WHERE { <http://dbpedia.org/resource/Boston_Tea_Party> <http://dbpedia.org/property/date> ?d }"}, "answers": {"d": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#date", "value": "1773-12-16"}}, "entities": [{"URI": "http://dbpedia.org/resource/Boston_Tea_Party", "surface form": "Boston Tea Party"}], "relations": [{"URI": "http://dbpedia.org/ontology/place", "surface form": "place"}]}, {"id": "186", "question": [{"language": "en", "string": "How many countries are there in Europe?"}], "query": {"sparql": "SELECT (COUNT(DISTINCT ?uri) as ?c) WHERE { ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/class/yago/EuropeanCountries> . } "}, "answers": {"c": {"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/Europe", "surface form": "Europe"}], "relations": []}, {"id": "440", "question": [{"language": "en", "string": "What were the names of the three ships by Columbus?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dct: <http://purl.org/dc/terms/> PREFIX dbc: <http://dbpedia.org/resource/Category:> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT ?uri WHERE { ?uri rdf:type dbo:Ship ; dct:subject dbc:Christopher_Columbus ; dct:subject dbc:Exploration_ships }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pinta_(ship)"}}, "entities": [{"URI": "http://dbpedia.org/resource/Columbus", "surface form": "Columbus"}], "relations": [{"URI": "http://dbpedia.org/ontology/title", "surface form": "names"}, {"URI": "http://dbpedia.org/ontology/shipBeam", "surface form": "ships"}]}, {"id": "315", "question": [{"language": "en", "string": "How many moons does Mars have?"}], "query": {"sparql": "SELECT DISTINCT ?n WHERE { <http://dbpedia.org/resource/Mars> <http://dbpedia.org/property/satellites> ?n }"}, "answers": {"n": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "2"}}, "entities": [{"URI": "http://dbpedia.org/resource/7805_Moons", "surface form": "moons"}, {"URI": "http://dbpedia.org/resource/Mars", "surface form": "Mars"}], "relations": []}, {"id": "197", "question": [{"language": "en", "string": "Which animals are critically endangered?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Animal> ; <http://dbpedia.org/ontology/conservationStatus> \"CR\" }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Africallagma_cuneistigma"}}, "entities": [{"URI": "http://dbpedia.org/resource/Endangered_Species_(H.A.W.K._album)", "surface form": "Endangered"}], "relations": [{"URI": "http://dbpedia.org/ontology/animal", "surface form": "animals"}, {"URI": "http://dbpedia.org/ontology/principal", "surface form": "critically"}]}, {"id": "101", "question": [{"language": "en", "string": "Which films starring Clint Eastwood did he direct himself?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/director> <http://dbpedia.org/resource/Clint_Eastwood> ; <http://dbpedia.org/ontology/starring> <http://dbpedia.org/resource/Clint_Eastwood> }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dirty_Harry_(film_series)"}}, "entities": [{"URI": "http://dbpedia.org/resource/Clint_Eastwood", "surface form": "Clint Eastwood"}], "relations": [{"URI": "http://dbpedia.org/ontology/numberOfFilms", "surface form": "films"}, {"URI": "http://dbpedia.org/ontology/starring", "surface form": "starring"}, {"URI": "http://dbpedia.org/ontology/director", "surface form": "direct"}]}, {"id": "101", "question": [{"language": "en", "string": "Which films starring Clint Eastwood did he direct himself?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/director> <http://dbpedia.org/resource/Clint_Eastwood> ; <http://dbpedia.org/ontology/starring> <http://dbpedia.org/resource/Clint_Eastwood> }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dirty_Harry_(film_series)"}}, "entities": [{"URI": "http://dbpedia.org/resource/Clint_Eastwood", "surface form": "Clint Eastwood"}], "relations": [{"URI": "http://dbpedia.org/ontology/numberOfFilms", "surface form": "films"}, {"URI": "http://dbpedia.org/ontology/starring", "surface form": "starring"}, {"URI": "http://dbpedia.org/ontology/director", "surface form": "direct"}]}, {"id": "146", "question": [{"language": "en", "string": "Which actor was casted in the most movies?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Actor> . ?f <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film> . ?f <http://dbpedia.org/ontology/starring> ?uri . } ORDER BY DESC(COUNT(DISTINCT(?f))) OFFSET 0 LIMIT 1"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Amitabh_Bachchan"}}, "entities": [], "relations": [{"URI": "http://dbpedia.org/ontology/artist", "surface form": "actor"}, {"URI": "http://dbpedia.org/ontology/class", "surface form": "casted"}, {"URI": "http://dbpedia.org/ontology/film", "surface form": "movies"}]}, {"id": "230", "question": [{"language": "en", "string": "How many missions does the Soyuz programme have?"}], "query": {"sparql": "SELECT (COUNT(DISTINCT ?uri) AS ?c) WHERE { ?uri <http://dbpedia.org/property/programme> <http://dbpedia.org/resource/Soyuz_programme> }"}, "answers": {"c": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "148"}}, "entities": [{"URI": "http://dbpedia.org/resource/Soyuz_programme", "surface form": "Soyuz programme"}], "relations": [{"URI": "http://dbpedia.org/ontology/missions", "surface form": "missions"}]}, {"id": "418", "question": [{"language": "en", "string": "What is the original title of the interpretation of dreams?"}], "query": {"sparql": "PREFIX dbr: <http://dbpedia.org/resource/> PREFIX foaf: <http://xmlns.com/foaf/0.1/> SELECT ?title WHERE { dbr:The_Interpretation_of_Dreams foaf:name ?title }"}, "answers": {"title": {"type": "literal", "xml:lang": "en", "value": "Die Traumdeutung"}}, "entities": [], "relations": [{"URI": "http://dbpedia.org/ontology/denomination", "surface form": "original title"}, {"URI": "http://dbpedia.org/ontology/meaning", "surface form": "interpretation"}, {"URI": "http://dbpedia.org/ontology/picture", "surface form": "dreams"}]}, {"id": "158", "question": [{"language": "en", "string": "Give me the capitals of all countries that the Himalayas run through."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Himalayas> <http://dbpedia.org/ontology/country> ?country . ?country <http://dbpedia.org/ontology/capital> ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/New_Delhi"}}, "entities": [{"URI": "http://dbpedia.org/resource/Countries_of_the_United_Kingdom", "surface form": "countries"}, {"URI": "http://dbpedia.org/resource/Himalayas", "surface form": "Himalayas"}], "relations": [{"URI": "http://dbpedia.org/ontology/capital", "surface form": "capitals"}, {"URI": "http://dbpedia.org/property/work", "surface form": "run"}]}, {"id": "44", "question": [{"language": "en", "string": "In which programming language is GIMP written?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:GIMP dbo:programmingLanguage ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/C_(programming_language)"}}, "entities": [{"URI": "http://dbpedia.org/resource/GIMP", "surface form": "GIMP"}], "relations": [{"URI": "http://dbpedia.org/ontology/programmingLanguage", "surface form": "programming language"}, {"URI": "http://dbpedia.org/ontology/writer", "surface form": "written"}]}, {"id": "167", "question": [{"language": "en", "string": "What is the official color of the University of Oxford?"}], "query": {"sparql": "SELECT DISTINCT ?string WHERE { <http://dbpedia.org/resource/University_of_Oxford> <http://dbpedia.org/ontology/officialSchoolColour> ?string }"}, "answers": {"string": {"type": "literal", "value": ""}}, "entities": [{"URI": "http://dbpedia.org/resource/University_of_Oxford", "surface form": "University of Oxford"}], "relations": [{"URI": "http://dbpedia.org/ontology/incumbent", "surface form": "official color"}]}, {"id": "389", "question": [{"language": "en", "string": "Who was the first King of England?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX yago: <http://dbpedia.org/class/yago/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Royalty ; rdf:type yago:WikicatEnglishMonarchs ; dbo:activeYearsStartYear ?date } ORDER BY ASC(?date) OFFSET 0 LIMIT 1"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Harold_Godwinson"}}, "entities": [{"URI": "http://dbpedia.org/resource/List_of_English_monarchs", "surface form": "King of England"}], "relations": []}, {"id": "59", "question": [{"language": "en", "string": "Who is the Formula 1 race driver with the most races?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:FormulaOneRacer ; dbo:races ?x } ORDER BY DESC(?x) OFFSET 0 LIMIT 1"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jenson_Button"}}, "entities": [{"URI": "http://dbpedia.org/resource/Race_Driver:_Create_&_Race", "surface form": "Formula 1 race driver"}], "relations": [{"URI": "http://dbpedia.org/ontology/races", "surface form": "races"}]}, {"id": "151", "question": [{"language": "en", "string": "Give me all actors who were born in Berlin."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Actor> ; <http://dbpedia.org/ontology/birthPlace> <http://dbpedia.org/resource/Berlin> }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Walter_Bluhm"}}, "entities": [{"URI": "http://dbpedia.org/resource/Berlin", "surface form": "Berlin"}], "relations": [{"URI": "http://dbpedia.org/ontology/award", "surface form": "actors"}, {"URI": "http://dbpedia.org/ontology/birthPlace", "surface form": "born"}]}, {"id": "154", "question": [{"language": "en", "string": "Give me all Australian metalcore bands."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Band> ; <http://dbpedia.org/ontology/genre> <http://dbpedia.org/resource/Metalcore> { ?uri <http://dbpedia.org/ontology/hometown> <http://dbpedia.org/resource/Australia> } UNION { ?uri <http://dbpedia.org/ontology/hometown> ?h . ?h <http://dbpedia.org/ontology/country> <http://dbpedia.org/resource/Australia> } }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dream_On,_Dreamer"}}, "entities": [{"URI": "http://dbpedia.org/resource/Australia", "surface form": "Australian metalcore bands"}, {"URI": "http://dbpedia.org/resource/List_of_metalcore_bands", "surface form": "Australian metalcore bands"}], "relations": [{"URI": "http://dbpedia.org/ontology/country", "surface form": ""}]}, {"id": "135", "question": [{"language": "en", "string": "Give me all Dutch parties."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/PoliticalParty> ; <http://dbpedia.org/ontology/country> <http://dbpedia.org/resource/Netherlands> }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Democratic_Political_Turning_Point"}}, "entities": [{"URI": "http://dbpedia.org/resource/Cura\u00e7ao", "surface form": "Dutch parties"}, {"URI": "http://dbpedia.org/resource/Dutch", "surface form": "Dutch parties"}], "relations": [{"URI": "http://dbpedia.org/ontology/country", "surface form": ""}, {"URI": "http://dbpedia.org/ontology/country", "surface form": ""}]}, {"id": "279", "question": [{"language": "en", "string": "Where did Hillel Slovak die?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Hillel_Slovak> <http://dbpedia.org/ontology/deathPlace> ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/California"}}, "entities": [{"URI": "http://dbpedia.org/resource/Hillel_Slovak", "surface form": "Hillel Slovak"}], "relations": [{"URI": "http://dbpedia.org/ontology/deathDate", "surface form": "die"}]}, {"id": "425", "question": [{"language": "en", "string": "What is the highest mountain in the Bavarian Alps?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?m WHERE { dbr:Bavarian_Alps dbp:highest ?m} "}, "answers": {"m": {"type": "uri", "value": "http://dbpedia.org/resource/Zugspitze"}}, "entities": [{"URI": "http://dbpedia.org/resource/Bavarian_Alps", "surface form": "Bavarian Alps"}], "relations": [{"URI": "http://dbpedia.org/ontology/elevation", "surface form": "highest mountain"}]}, {"id": "21", "question": [{"language": "en", "string": "What are the official languages of the Philippines?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Philippines dbo:officialLanguage ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/English_language"}}, "entities": [{"URI": "http://dbpedia.org/resource/Philippines", "surface form": "Philippines"}], "relations": [{"URI": "http://dbpedia.org/ontology/officialLanguage", "surface form": "official languages"}]}, {"id": "166", "question": [{"language": "en", "string": "Give me all writers that won the Nobel Prize in literature."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Writer> ; <http://dbpedia.org/ontology/award> <http://dbpedia.org/resource/Nobel_Prize_in_Literature> }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Aleksandr_Solzhenitsyn"}}, "entities": [{"URI": "http://dbpedia.org/resource/Nobel_Prize", "surface form": "Nobel Prize"}, {"URI": "http://dbpedia.org/resource/Literature", "surface form": "literature"}], "relations": [{"URI": "http://dbpedia.org/ontology/writer", "surface form": "writers"}, {"URI": "http://dbpedia.org/ontology/award", "surface form": "won"}]}, {"id": "364", "question": [{"language": "en", "string": "List all the musicals with music by Leonard Bernstein."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Musical> ; <http://dbpedia.org/ontology/musicBy> <http://dbpedia.org/resource/Leonard_Bernstein> }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Side_by_Side_by_Sondheim"}}, "entities": [{"URI": "http://dbpedia.org/resource/Leonard_Bernstein", "surface form": "Leonard Bernstein"}], "relations": [{"URI": "http://dbpedia.org/ontology/show", "surface form": "musicals"}, {"URI": "http://dbpedia.org/ontology/musicBy", "surface form": "music"}]}, {"id": "356", "question": [{"language": "en", "string": "Which politicians were married to a German?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Politician> ; <http://dbpedia.org/ontology/spouse> ?spouse { ?spouse <http://dbpedia.org/ontology/birthPlace> <http://dbpedia.org/resource/Germany> } UNION { ?spouse <http://dbpedia.org/ontology/birthPlace> ?p . ?p <http://dbpedia.org/ontology/country> <http://dbpedia.org/resource/Germany> } }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Marcus_Pretzell"}}, "entities": [{"URI": "http://dbpedia.org/resource/Politicians_of_The_Wire", "surface form": "politicians"}, {"URI": "http://dbpedia.org/resource/Germany", "surface form": "German"}, {"URI": "http://dbpedia.org/resource/German", "surface form": "German"}], "relations": [{"URI": "http://dbpedia.org/ontology/spouse", "surface form": "married"}, {"URI": "http://dbpedia.org/ontology/country", "surface form": ""}, {"URI": "http://dbpedia.org/ontology/country", "surface form": ""}]}, {"id": "154", "question": [{"language": "en", "string": "Give me all Australian metalcore bands."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Band> ; <http://dbpedia.org/ontology/genre> <http://dbpedia.org/resource/Metalcore> { ?uri <http://dbpedia.org/ontology/hometown> <http://dbpedia.org/resource/Australia> } UNION { ?uri <http://dbpedia.org/ontology/hometown> ?h . ?h <http://dbpedia.org/ontology/country> <http://dbpedia.org/resource/Australia> } }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dream_On,_Dreamer"}}, "entities": [{"URI": "http://dbpedia.org/resource/Australia", "surface form": "Australian metalcore bands"}, {"URI": "http://dbpedia.org/resource/List_of_metalcore_bands", "surface form": "Australian metalcore bands"}], "relations": [{"URI": "http://dbpedia.org/ontology/country", "surface form": ""}]}, {"id": "22", "question": [{"language": "en", "string": "Who designed the Brooklyn Bridge?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Brooklyn_Bridge dbo:architect ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/John_A._Roebling"}}, "entities": [{"URI": "http://dbpedia.org/resource/Brooklyn_Bridge", "surface form": "Brooklyn Bridge"}], "relations": [{"URI": "http://dbpedia.org/property/designer", "surface form": "designed"}]}, {"id": "427", "question": [{"language": "en", "string": "In which state Penn State University is located?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?s WHERE { dbr:Pennsylvania_State_University dbo:state ?s }"}, "answers": {"s": {"type": "uri", "value": "http://dbpedia.org/resource/Pennsylvania"}}, "entities": [{"URI": "http://dbpedia.org/resource/Pennsylvania_State_University", "surface form": "Penn State University"}], "relations": [{"URI": "http://dbpedia.org/ontology/position", "surface form": "located"}]}, {"id": "177", "question": [{"language": "en", "string": "How often did Jane Fonda marry?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT (COUNT(DISTINCT ?uri) AS ?c) WHERE { res:Jane_Fonda dbo:spouse ?uri }"}, "answers": {"c": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "3"}}, "entities": [{"URI": "http://dbpedia.org/resource/Jane_Fonda", "surface form": "Jane Fonda"}], "relations": [{"URI": "http://dbpedia.org/ontology/spouse", "surface form": "marry"}]}, {"id": "434", "question": [{"language": "en", "string": "What languages are spoken in Pakistan?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Pakistan> <http://dbpedia.org/ontology/language> ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Memoni_language"}}, "entities": [{"URI": "http://dbpedia.org/resource/Pakistan", "surface form": "Pakistan"}], "relations": [{"URI": "http://dbpedia.org/ontology/language", "surface form": "languages"}, {"URI": "http://dbpedia.org/ontology/spokenIn", "surface form": "spoken"}]}, {"id": "53", "question": [{"language": "en", "string": "Which German cities have more than 250000 inhabitants?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { { ?uri a <http://dbpedia.org/ontology/City> } UNION { ?uri a <http://dbpedia.org/ontology/Town> } ?uri <http://dbpedia.org/ontology/country> <http://dbpedia.org/resource/Germany> ; <http://dbpedia.org/ontology/populationTotal> ?population FILTER ( ?population > 250000 ) }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Berlin"}}, "entities": [{"URI": "http://dbpedia.org/resource/Germany", "surface form": "German cities"}, {"URI": "http://dbpedia.org/resource/German", "surface form": "German cities"}, {"URI": "http://dbpedia.org/resource/Population", "surface form": "250000 inhabitants"}], "relations": [{"URI": "http://dbpedia.org/ontology/country", "surface form": ""}, {"URI": "http://dbpedia.org/ontology/country", "surface form": ""}]}, {"id": "285", "question": [{"language": "en", "string": "What is in a chocolate chip cookie?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Chocolate_chip_cookie dbo:ingredient ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chocolate_chip"}}, "entities": [{"URI": "http://dbpedia.org/resource/Chocolate_chip_cookie", "surface form": "chocolate chip cookie"}], "relations": []}, {"id": "42", "question": [{"language": "en", "string": "Which books were written by Danielle Steel?"}], "query": {"sparql": "PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX foaf: <http://xmlns.com/foaf/0.1/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT ?uri WHERE { ?uri rdf:type onto:Book ; onto:author <http://dbpedia.org/resource/Danielle_Steel> }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Amazing_Grace_(novel)"}}, "entities": [{"URI": "http://dbpedia.org/resource/Danielle_Steel", "surface form": "Danielle Steel"}], "relations": [{"URI": "http://dbpedia.org/ontology/volume", "surface form": "books"}, {"URI": "http://dbpedia.org/ontology/writer", "surface form": "written"}]}, {"id": "94", "question": [{"language": "en", "string": "List the children of Margaret Thatcher."}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Margaret_Thatcher dbo:child ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mark_Thatcher"}}, "entities": [{"URI": "http://dbpedia.org/resource/Margaret_Thatcher", "surface form": "Margaret Thatcher"}], "relations": [{"URI": "http://dbpedia.org/ontology/child", "surface form": "children"}]}, {"id": "214", "question": [{"language": "en", "string": "Show me everyone who was born on Halloween."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Person> { ?uri <http://dbpedia.org/ontology/birthDate> ?date } UNION { ?uri <http://dbpedia.org/property/birthDate> ?date } <http://dbpedia.org/resource/Halloween> <http://dbpedia.org/property/date> ?date }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mathias_Braschler_and_Monika_Fischer"}}, "entities": [{"URI": "http://dbpedia.org/resource/Halloween", "surface form": "Halloween"}], "relations": [{"URI": "http://dbpedia.org/ontology/show", "surface form": "show"}, {"URI": "http://dbpedia.org/ontology/birthPlace", "surface form": "born"}]}, {"id": "269", "question": [{"language": "en", "string": "What is the highest volcano in Africa?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Volcano> ; <http://dbpedia.org/ontology/locatedInArea> ?area . ?area dct:subject dbc:Countries_in_Africa . ?uri <http://dbpedia.org/ontology/elevation> ?elevation } ORDER BY DESC(?elevation) LIMIT 1"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mount_Kenya"}}, "entities": [{"URI": "http://dbpedia.org/resource/Africa", "surface form": "Africa"}], "relations": [{"URI": "http://dbpedia.org/ontology/head", "surface form": "highest volcano"}]}, {"id": "86", "question": [{"language": "en", "string": "Give me a list of all lakes in Denmark."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { { ?uri a <http://dbpedia.org/ontology/Lake> ; <http://dbpedia.org/ontology/country> <http://dbpedia.org/resource/Denmark> } UNION { ?uri a <http://dbpedia.org/class/yago/LakesOfDenmark> } }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fures\u00f8_(lake)"}}, "entities": [{"URI": "http://dbpedia.org/resource/Denmark", "surface form": "Denmark"}], "relations": [{"URI": "http://dbpedia.org/ontology/lake", "surface form": "lakes"}]}, {"id": "238", "question": [{"language": "en", "string": "Which rockets were launched from Baikonur?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Rocket> ; <http://dbpedia.org/ontology/launchSite> <http://dbpedia.org/resource/Baikonur_Cosmodrome> }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Voskhod_(rocket)"}}, "entities": [{"URI": "http://dbpedia.org/resource/Baikonur_Cosmodrome_Site_109", "surface form": "Baikonur"}], "relations": [{"URI": "http://dbpedia.org/ontology/capital", "surface form": "rockets"}, {"URI": "http://dbpedia.org/ontology/totalLaunches", "surface form": "launched"}]}, {"id": "425", "question": [{"language": "en", "string": "What is the highest mountain in the Bavarian Alps?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?m WHERE { dbr:Bavarian_Alps dbp:highest ?m} "}, "answers": {"m": {"type": "uri", "value": "http://dbpedia.org/resource/Zugspitze"}}, "entities": [{"URI": "http://dbpedia.org/resource/Bavarian_Alps", "surface form": "Bavarian Alps"}], "relations": [{"URI": "http://dbpedia.org/ontology/elevation", "surface form": "highest mountain"}]}, {"id": "317", "question": [{"language": "en", "string": "Give me a list of all Canadians that reside in the U.S."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/birthPlace> <http://dbpedia.org/resource/Canada> . ?uri <http://dbpedia.org/ontology/residence> <http://dbpedia.org/resource/United_States> . } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Glenn_Michibata"}}, "entities": [{"URI": "http://dbpedia.org/resource/Canadians", "surface form": "Canadians"}, {"URI": "http://dbpedia.org/resource/United_States", "surface form": "US"}], "relations": [{"URI": "http://dbpedia.org/ontology/residence", "surface form": "reside"}]}, {"id": "350", "question": [{"language": "en", "string": "What is Batman's real name?"}], "query": {"sparql": "SELECT DISTINCT ?label WHERE { <http://dbpedia.org/resource/Batman> <http://xmlns.com/foaf/0.1/name> ?label FILTER ( str(?label) != \"Batman\" ) }"}, "answers": {"label": {"type": "literal", "xml:lang": "en", "value": "Bruce Wayne"}}, "entities": [{"URI": "http://dbpedia.org/resource/Batman", "surface form": "Batman"}, {"URI": "http://dbpedia.org/resource/Real-name_system", "surface form": " real name"}], "relations": []}, {"id": "256", "question": [{"language": "en", "string": "Who played Agent Smith in Matrix?"}], "query": {"sparql": "PREFIX res: <http://dbpedia.org/resource/> PREFIX dbp: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Agent_Smith <http://dbpedia.org/ontology/portrayer> ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jonathan_Groff"}}, "entities": [{"URI": "http://dbpedia.org/resource/Agent_Smith", "surface form": "Agent Smith"}], "relations": [{"URI": "http://dbpedia.org/ontology/portrayer", "surface form": "played"}]}, {"id": "193", "question": [{"language": "en", "string": "Which organizations were founded in 1930?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Organisation> { ?uri <http://dbpedia.org/ontology/formationYear> ?date } UNION { ?uri <http://dbpedia.org/ontology/foundingYear> ?date } FILTER regex(?date, \"^1930\") }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/American_Popular_Revolutionary_Alliance"}}, "entities": [{"URI": "http://dbpedia.org/resource/1930", "surface form": "1930"}], "relations": [{"URI": "http://dbpedia.org/ontology/company", "surface form": "organizations"}, {"URI": "http://dbpedia.org/ontology/foundingYear", "surface form": "founded"}]}, {"id": "368", "question": [{"language": "en", "string": "Give me all gangsters from the prohibition era."}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dct: <http://purl.org/dc/terms/> PREFIX dbc: <http://dbpedia.org/resource/Category:> PREFIX dbr: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { ?uri dbo:occupation dbr:Gangster ; dct:subject dbc:Prohibition-era_gangsters }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dean_O'Banion"}}, "entities": [{"URI": "http://dbpedia.org/resource/Gangsters_of_the_Frontier", "surface form": "Gangsters"}], "relations": [{"URI": "http://dbpedia.org/ontology/time", "surface form": "prohibition era"}]}, {"id": "332", "question": [{"language": "en", "string": "Which companies produce hovercrafts?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Company ; dbo:product res:Hovercraft }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/HJ_Shipbuilding_&_Construction"}}, "entities": [{"URI": "http://dbpedia.org/resource/Companies_listed_on_the_New_York_Stock_Exchange_(J)", "surface form": "companies"}, {"URI": "http://dbpedia.org/resource/Hovercraft", "surface form": "Hovercrafts"}], "relations": [{"URI": "http://dbpedia.org/ontology/producer", "surface form": "produce"}]}, {"id": "119", "question": [{"language": "en", "string": "Give me all books written by Danielle Steel."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Book> ; <http://dbpedia.org/ontology/author> <http://dbpedia.org/resource/Danielle_Steel> }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Amazing_Grace_(novel)"}}, "entities": [{"URI": "http://dbpedia.org/resource/Danielle_Steel", "surface form": "Danielle Steel"}], "relations": [{"URI": "http://dbpedia.org/ontology/volume", "surface form": "books"}, {"URI": "http://dbpedia.org/ontology/writer", "surface form": "written"}]}, {"id": "99", "question": [{"language": "en", "string": "How many people live in the capital of Australia?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?num WHERE { res:Australia dbo:capital ?x . ?x dbo:populationTotal ?num }"}, "answers": {"num": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#nonNegativeInteger", "value": "453558"}}, "entities": [{"URI": "http://dbpedia.org/resource/Australia", "surface form": "Australia"}], "relations": [{"URI": "http://dbpedia.org/ontology/populationTotal", "surface form": "live"}, {"URI": "http://dbpedia.org/ontology/capital", "surface form": "capital"}]}, {"id": "270", "question": [{"language": "en", "string": "What are the specialities of the UNC Health Care?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/UNC_Health_Care> <http://dbpedia.org/property/speciality> ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cancer"}}, "entities": [{"URI": "http://dbpedia.org/resource/Traditional_Specialities_Guaranteed", "surface form": "specialities"}, {"URI": "http://dbpedia.org/resource/UNC", "surface form": "UNC"}, {"URI": "http://dbpedia.org/resource/Health_care", "surface form": "Health Care"}], "relations": []}, {"id": "104", "question": [{"language": "en", "string": "Who wrote the lyrics for the Polish national anthem?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Poland> <http://dbpedia.org/ontology/anthem> ?x . ?x <http://dbpedia.org/property/author> ?uri . } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/J\u00f3zef_Wybicki"}}, "entities": [{"URI": "http://dbpedia.org/resource/Poland", "surface form": "Polish national anthem"}, {"URI": "http://dbpedia.org/resource/Afghan_National_Anthem", "surface form": "Polish national anthem"}], "relations": [{"URI": "http://dbpedia.org/property/author", "surface form": "wrote"}, {"URI": "http://dbpedia.org/ontology/lyrics", "surface form": "lyrics"}, {"URI": "http://dbpedia.org/ontology/country", "surface form": ""}]}, {"id": "395", "question": [{"language": "en", "string": "What was the first name of the band Queens of the Stone Age?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?name WHERE { res:Queens_of_the_Stone_Age dbo:alias ?name }"}, "answers": {"name": {"type": "literal", "xml:lang": "en", "value": "Gamma Ray(1996)"}}, "entities": [{"URI": "http://dbpedia.org/resource/Queens_of_the_Stone_Age", "surface form": "band Queens of the Stone Age"}], "relations": []}, {"id": "243", "question": [{"language": "en", "string": "How many museums does Paris have?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Museum> ; <http://dbpedia.org/ontology/location> <http://dbpedia.org/resource/Paris> }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gallery_of_Paleontology_and_Comparative_Anatomy"}}, "entities": [{"URI": "http://dbpedia.org/resource/Museums_in_Aalborg", "surface form": "museums"}, {"URI": "http://dbpedia.org/resource/Paris", "surface form": "Paris"}], "relations": []}, {"id": "395", "question": [{"language": "en", "string": "What was the first name of the band Queens of the Stone Age?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?name WHERE { res:Queens_of_the_Stone_Age dbo:alias ?name }"}, "answers": {"name": {"type": "literal", "xml:lang": "en", "value": "Gamma Ray(1996)"}}, "entities": [{"URI": "http://dbpedia.org/resource/Queens_of_the_Stone_Age", "surface form": "band Queens of the Stone Age"}], "relations": []}, {"id": "183", "question": [{"language": "en", "string": "Which countries adopted the Euro?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Country> { ?uri <http://dbpedia.org/ontology/currency> <http://dbpedia.org/resource/Euro> } UNION { ?uri <http://dbpedia.org/property/currencyCode> \"EUR\"@en } }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Andorra"}}, "entities": [{"URI": "http://dbpedia.org/resource/Countries_of_the_United_Kingdom", "surface form": "countries"}, {"URI": "http://dbpedia.org/resource/Euro", "surface form": "Euro"}], "relations": []}, {"id": "146", "question": [{"language": "en", "string": "Which actor was casted in the most movies?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Actor> . ?f <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film> . ?f <http://dbpedia.org/ontology/starring> ?uri . } ORDER BY DESC(COUNT(DISTINCT(?f))) OFFSET 0 LIMIT 1"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Amitabh_Bachchan"}}, "entities": [], "relations": [{"URI": "http://dbpedia.org/ontology/artist", "surface form": "actor"}, {"URI": "http://dbpedia.org/ontology/class", "surface form": "casted"}, {"URI": "http://dbpedia.org/ontology/film", "surface form": "movies"}]}, {"id": "270", "question": [{"language": "en", "string": "What are the specialities of the UNC Health Care?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/UNC_Health_Care> <http://dbpedia.org/property/speciality> ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cancer"}}, "entities": [{"URI": "http://dbpedia.org/resource/Traditional_Specialities_Guaranteed", "surface form": "specialities"}, {"URI": "http://dbpedia.org/resource/UNC", "surface form": "UNC"}, {"URI": "http://dbpedia.org/resource/Health_care", "surface form": "Health Care"}], "relations": []}, {"id": "82", "question": [{"language": "en", "string": "What are the nicknames of San Francisco?"}], "query": {"sparql": "PREFIX res: <http://dbpedia.org/resource/> PREFIX dbp: <http://dbpedia.org/property/> PREFIX foaf:<http://xmlns.com/foaf/0.1/> SELECT DISTINCT ?string WHERE { res:San_Francisco foaf:nick ?string }"}, "answers": {"string": {"type": "literal", "xml:lang": "en", "value": "SeeList of nicknames for San Francisco"}}, "entities": [{"URI": "http://dbpedia.org/resource/San_Francisco", "surface form": "San Francisco"}], "relations": [{"URI": "http://dbpedia.org/ontology/mascot", "surface form": "nicknames"}]}, {"id": "31", "question": [{"language": "en", "string": "Which mountains are higher than the Nanga Parbat?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Nanga_Parbat> <http://dbpedia.org/ontology/elevation> ?elevation . ?uri a <http://dbpedia.org/ontology/Mountain> { ?uri <http://dbpedia.org/ontology/elevation> ?otherelevation } UNION { ?uri <http://dbpedia.org/property/elevationM> ?otherelevation } FILTER ( ?otherelevation > ?elevation ) }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/1974_French_Mount_Everest_expedition"}}, "entities": [{"URI": "http://dbpedia.org/resource/Nanga_Parbat", "surface form": "Nanga Parbat"}], "relations": [{"URI": "http://dbpedia.org/ontology/elevation", "surface form": "mountains"}, {"URI": "http://dbpedia.org/ontology/elevation", "surface form": "higher"}]}, {"id": "312", "question": [{"language": "en", "string": "What is the longest river in China?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/River> ; <http://dbpedia.org/ontology/country> <http://dbpedia.org/resource/China> ; <http://dbpedia.org/property/length> ?l } ORDER BY DESC(?l) OFFSET 0 LIMIT 1"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jin_River_(Sichuan)"}}, "entities": [{"URI": "http://dbpedia.org/resource/China", "surface form": "China"}], "relations": [{"URI": "http://dbpedia.org/ontology/river", "surface form": "river"}]}, {"id": "77", "question": [{"language": "en", "string": "Who developed Skype?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> SELECT DISTINCT ?uri WHERE { res:Skype dbo:developer ?uri. }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Skype_Technologies"}}, "entities": [{"URI": "http://dbpedia.org/resource/Skype", "surface form": "Skype"}], "relations": [{"URI": "http://dbpedia.org/ontology/developer", "surface form": "developed"}]}, {"id": "165", "question": [{"language": "en", "string": "Give me the grandchildren of Bruce Lee."}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Bruce_Lee dbo:child ?child . ?child <http://dbpedia.org/property/children> ?uri }"}, "answers": {"uri": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "1"}}, "entities": [{"URI": "http://dbpedia.org/resource/Bruce_Lee", "surface form": "Bruce Lee"}], "relations": [{"URI": "http://dbpedia.org/ontology/child", "surface form": "grandchildren"}]}, {"id": "270", "question": [{"language": "en", "string": "What are the specialities of the UNC Health Care?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/UNC_Health_Care> <http://dbpedia.org/property/speciality> ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cancer"}}, "entities": [{"URI": "http://dbpedia.org/resource/Traditional_Specialities_Guaranteed", "surface form": "specialities"}, {"URI": "http://dbpedia.org/resource/UNC", "surface form": "UNC"}, {"URI": "http://dbpedia.org/resource/Health_care", "surface form": "Health Care"}], "relations": []}, {"id": "93", "question": [{"language": "en", "string": "When did Michael Jackson die?"}], "query": {"sparql": "SELECT DISTINCT ?date WHERE { <http://dbpedia.org/resource/Michael_Jackson> <http://dbpedia.org/ontology/deathDate> ?date }"}, "answers": {"date": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#date", "value": "2009-06-25"}}, "entities": [{"URI": "http://dbpedia.org/resource/Michael_Jackson", "surface form": "Michael Jackson"}], "relations": [{"URI": "http://dbpedia.org/ontology/deathDate", "surface form": "die"}]}, {"id": "3", "question": [{"language": "en", "string": "How many monarchical countries are there in Europe?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/>PREFIX yago: <http://dbpedia.org/class/yago/>PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>SELECT COUNT(DISTINCT ?uri) WHERE {\t?uri rdf:type yago:EuropeanCountries . ?uri dbo:governmentType ?govern . FILTER regex(?govern,'monarchy') .}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}, "entities": [{"URI": "http://dbpedia.org/resource/Monarchical_order", "surface form": "monarchical countries"}, {"URI": "http://dbpedia.org/resource/Europe", "surface form": "Europe"}], "relations": []}, {"id": "401", "question": [{"language": "en", "string": "What are the top selling luxury vehicle brands in Germany?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dct: <http://purl.org/dc/terms/> PREFIX dbc: <http://dbpedia.org/resource/Category:> SELECT ?company WHERE { ?company dct:subject dbc:Car_manufacturers_of_Germany ; dbo:equity ?equity ; dbo:netIncome ?netIncome ; dbo:production ?production ; dbo:revenue ?revenue } ORDER BY DESC(?equity)"}, "answers": {"company": {"type": "uri", "value": "http://dbpedia.org/resource/Mercedes-Benz_Group"}}, "entities": [{"URI": "http://dbpedia.org/resource/Luxury_vehicle", "surface form": "luxury vehicle brands"}, {"URI": "http://dbpedia.org/resource/Germany", "surface form": "Germany"}], "relations": [{"URI": "http://dbpedia.org/ontology/promotion", "surface form": "selling"}]}, {"id": "409", "question": [{"language": "en", "string": "How much is the population of Mexico City ?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?Mexico_City WHERE { dbr:Mexico_City dbo:populationTotal ?Mexico_City }"}, "answers": {"Mexico_City": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#nonNegativeInteger", "value": "9209944"}}, "entities": [{"URI": "http://dbpedia.org/resource/Mexico_City", "surface form": "Mexico City"}], "relations": [{"URI": "http://dbpedia.org/ontology/country", "surface form": "population"}]}, {"id": "83", "question": [{"language": "en", "string": "Give me the Apollo 14 astronauts."}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { ?uri dbo:mission res:Apollo_14 }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alan_Shepard"}}, "entities": [{"URI": "http://dbpedia.org/resource/Apollo_14", "surface form": "Apollo 14 astronauts"}], "relations": []}, {"id": "413", "question": [{"language": "en", "string": "How much is the population of Iraq?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?pIraq WHERE { dbr:Iraq dbo:populationTotal ?pIraq }"}, "answers": {"pIraq": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#nonNegativeInteger", "value": "44222503"}}, "entities": [{"URI": "http://dbpedia.org/resource/Iraq", "surface form": "Iraq"}], "relations": [{"URI": "http://dbpedia.org/ontology/populationTotal", "surface form": "population"}]}, {"id": "97", "question": [{"language": "en", "string": "Which books by Kerouac were published by Viking Press?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Book ; dbo:publisher res:Viking_Press ; dbo:author res:Jack_Kerouac }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Atop_an_Underwood"}}, "entities": [{"URI": "http://dbpedia.org/resource/Jack_Kerouac", "surface form": "Kerouac"}, {"URI": "http://dbpedia.org/resource/Viking_Press", "surface form": "Viking Press"}], "relations": [{"URI": "http://dbpedia.org/ontology/title", "surface form": "books"}, {"URI": "http://dbpedia.org/ontology/publisher", "surface form": "published"}]}, {"id": "48", "question": [{"language": "en", "string": "How many films did Leonardo DiCaprio star in?"}], "query": {"sparql": "SELECT (COUNT(DISTINCT ?uri) AS ?c) WHERE { ?uri a <http://dbpedia.org/ontology/Film> ; <http://dbpedia.org/ontology/starring> <http://dbpedia.org/resource/Leonardo_DiCaprio> }"}, "answers": {"c": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "33"}}, "entities": [{"URI": "http://dbpedia.org/resource/Leonardo_DiCaprio", "surface form": "Leonardo DiCaprio star"}], "relations": [{"URI": "http://dbpedia.org/ontology/numberOfFilms", "surface form": "films"}]}, {"id": "72", "question": [{"language": "en", "string": "Give me all actors starring in movies directed by and starring William Shatner."}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX dbp: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { ?x dbo:director res:William_Shatner ; dbo:starring res:William_Shatner { ?x dbo:starring ?uri } UNION { ?x dbp:starring ?uri } }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/DeForest_Kelley"}}, "entities": [{"URI": "http://dbpedia.org/resource/William_Shatner", "surface form": "William Shatner"}], "relations": [{"URI": "http://dbpedia.org/ontology/artist", "surface form": "actors"}, {"URI": "http://dbpedia.org/ontology/starring", "surface form": "starring"}, {"URI": "http://dbpedia.org/ontology/film", "surface form": "movies"}, {"URI": "http://dbpedia.org/property/directedby", "surface form": "directed"}, {"URI": "http://dbpedia.org/ontology/starring", "surface form": "starring"}]}, {"id": "149", "question": [{"language": "en", "string": "Who are the four youngest MVP basketball players?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/BasketballPlayer> ; <http://dbpedia.org/ontology/birthDate> ?date ; <http://dbpedia.org/property/highlights> ?h FILTER regex(?h, \"MVP\") } ORDER BY DESC(?date) OFFSET 0 LIMIT 4"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Robert_Dillingham"}}, "entities": [{"URI": "http://dbpedia.org/resource/NBA_Most_Valuable_Player_Award", "surface form": "MVP"}, {"URI": "http://dbpedia.org/resource/National_Basketball_Players_Association", "surface form": "basketball players"}], "relations": []}, {"id": "423", "question": [{"language": "en", "string": "What is the largest city in america?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?lcity WHERE { dbr:United_States dbo:largestCity ?lcity }"}, "answers": {"lcity": {"type": "uri", "value": "http://dbpedia.org/resource/New_York_City"}}, "entities": [], "relations": [{"URI": "http://dbpedia.org/ontology/largestCity", "surface form": "largest city"}, {"URI": "http://dbpedia.org/ontology/province", "surface form": "america"}]}, {"id": "280", "question": [{"language": "en", "string": "What is the timezone in San Pedro de Atacama?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:San_Pedro_de_Atacama dbo:timeZone ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Time_in_Chile"}}, "entities": [{"URI": "http://dbpedia.org/resource/San_Pedro_de_Atacama", "surface form": "San Pedro de Atacama"}], "relations": [{"URI": "http://dbpedia.org/ontology/timeZone", "surface form": "timezone"}]}, {"id": "212", "question": [{"language": "en", "string": "Give me all spacecrafts that flew to Mars."}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbc: <http://dbpedia.org/resource/Category:> PREFIX dct: <http://purl.org/dc/terms/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?s WHERE { ?s dct:subject dbc:Mars_rovers ; rdf:type ?type FILTER ( ?type IN (dbo:Satellite, dbo:ArtificialSatellite) ) }"}, "answers": {"s": {"type": "uri", "value": "http://dbpedia.org/resource/Mars_2"}}, "entities": [{"URI": "http://dbpedia.org/resource/Spacecraft", "surface form": "spacecrafts"}, {"URI": "http://dbpedia.org/resource/Mars", "surface form": "Mars"}], "relations": [{"URI": "http://dbpedia.org/ontology/circulation", "surface form": "flew"}]}, {"id": "25", "question": [{"language": "en", "string": "What is the highest place of Karakoram?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Karakoram dbp:highest ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/K2"}}, "entities": [{"URI": "http://dbpedia.org/resource/Karakoram", "surface form": "Karakoram"}], "relations": [{"URI": "http://dbpedia.org/ontology/elevation", "surface form": "highest place"}]}, {"id": "169", "question": [{"language": "en", "string": "Which spaceflights were launched from Baikonur?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/launchPad> res:Baikonur_Cosmodrome }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Salyut_1"}}, "entities": [{"URI": "http://dbpedia.org/resource/Baikonur_Cosmodrome_Site_110", "surface form": "Baikonur"}], "relations": [{"URI": "http://dbpedia.org/ontology/countryWithFirstSpaceflight", "surface form": "spaceflights"}, {"URI": "http://dbpedia.org/ontology/totalLaunches", "surface form": "launched"}]}, {"id": "156", "question": [{"language": "en", "string": "How many inhabitants does the largest city in Canada have?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?num WHERE { res:Canada dbo:largestCity ?city . ?city dbo:populationTotal ?num }"}, "answers": {"num": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#nonNegativeInteger", "value": "2794356"}}, "entities": [{"URI": "http://dbpedia.org/resource/Canada", "surface form": "Canada"}], "relations": [{"URI": "http://dbpedia.org/property/country", "surface form": "inhabitants"}, {"URI": "http://dbpedia.org/ontology/largestCity", "surface form": "largest city"}]}, {"id": "267", "question": [{"language": "en", "string": "Where was JFK assassinated?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/John_F._Kennedy> <http://dbpedia.org/ontology/deathPlace> ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dallas"}}, "entities": [{"URI": "http://dbpedia.org/resource/John_F._Kennedy_International_Airport", "surface form": "JFK"}, {"URI": "http://dbpedia.org/resource/Assassinated_Catholic_priests_in_Guatemala", "surface form": "Assassinated"}], "relations": []}, {"id": "60", "question": [{"language": "en", "string": "Give me all world heritage sites designated within the past five years."}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/>PREFIX dbp: <http://dbpedia.org/property/>PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>SELECT DISTINCT ?uri WHERE {\t?uri rdf:type dbo:WorldHeritageSite .\t?uri dbp:year ?x .\tFILTER ( ?x >= \"2008\"^^xsd:integer)}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Amami-\u014cshima_Island,_Tokunoshima_Island,_northern_part_of_Okinawa_Island,_and_Iriomote_Island"}}, "entities": [], "relations": [{"URI": "http://dbpedia.org/ontology/fate", "surface form": "heritage sites"}, {"URI": "http://dbpedia.org/ontology/class", "surface form": "designated"}]}, {"id": "225", "question": [{"language": "en", "string": "List the seven kings of Rome."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/title> <http://dbpedia.org/resource/King_of_Rome> }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ancus_Marcius"}}, "entities": [{"URI": "http://dbpedia.org/resource/Rome", "surface form": "Rome"}], "relations": [{"URI": "http://dbpedia.org/ontology/leader", "surface form": "kings"}]}, {"id": "443", "question": [{"language": "en", "string": "how big is the total area of North Rhine- Westphalia?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?tarea WHERE { dbr:North_Rhine-Westphalia dbo:areaTotal ?tarea }"}, "answers": {"tarea": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#double", "value": "3.40841e+10"}}, "entities": [{"URI": "http://dbpedia.org/resource/North_Rhine-Westphalia", "surface form": "North Rhine- Westphalia"}], "relations": [{"URI": "http://dbpedia.org/ontology/areaTotal", "surface form": "total area"}]}, {"id": "139", "question": [{"language": "en", "string": "Give me all animals that are extinct."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Animal> ; <http://dbpedia.org/ontology/conservationStatus> \"EX\" }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Advena_campbelli"}}, "entities": [], "relations": [{"URI": "http://dbpedia.org/ontology/animal", "surface form": "animals"}, {"URI": "http://dbpedia.org/ontology/quote", "surface form": "extinct"}]}, {"id": "143", "question": [{"language": "en", "string": "Who has Tom Cruise been married to?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/spouse> <http://dbpedia.org/resource/Tom_Cruise> }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Katie_Holmes"}}, "entities": [{"URI": "http://dbpedia.org/resource/Tom_Cruise", "surface form": "Tom Cruise"}], "relations": [{"URI": "http://dbpedia.org/ontology/spouse", "surface form": "married"}]}, {"id": "426", "question": [{"language": "en", "string": "Who is 8th president of US?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbp: <http://dbpedia.org/property/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?name WHERE { dbr:8th_President_of_the_United_States dbo:wikiPageRedirects ?link . ?link dbp:name ?name }"}, "answers": {"name": {"type": "literal", "xml:lang": "en", "value": "Martin Van Buren"}}, "entities": [{"URI": "http://dbpedia.org/resource/United_States", "surface form": "US"}], "relations": [{"URI": "http://dbpedia.org/ontology/leader", "surface form": "8th president"}]}, {"id": "219", "question": [{"language": "en", "string": "Which museum in New York has the most visitors?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Museum ; dbo:location res:New_York_City ; dbo:numberOfVisitors ?num } ORDER BY DESC(?num) OFFSET 0 LIMIT 1"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/American_Museum_of_Natural_History"}}, "entities": [{"URI": "http://dbpedia.org/resource/New_York_City", "surface form": "New York"}], "relations": [{"URI": "http://dbpedia.org/ontology/museum", "surface form": "museum"}, {"URI": "http://dbpedia.org/ontology/numberOfVisitors", "surface form": "visitors"}]}, {"id": "441", "question": [{"language": "en", "string": "What is the highest mountain in Saxony Germany?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?m WHERE { ?m dbo:mountainRange dbr:Ore_Mountains ; dbo:elevation ?height } ORDER BY DESC(?height) LIMIT 1"}, "answers": {"m": {"type": "uri", "value": "http://dbpedia.org/resource/Kl\u00ednovec"}}, "entities": [{"URI": "http://dbpedia.org/resource/Frankenstein,_Saxony", "surface form": "Saxony Germany"}], "relations": [{"URI": "http://dbpedia.org/ontology/elevation", "surface form": "highest mountain"}]}, {"id": "179", "question": [{"language": "en", "string": "Give me all Apollo 14 astronauts."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/mission> <http://dbpedia.org/resource/Apollo_14> }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alan_Shepard"}}, "entities": [{"URI": "http://dbpedia.org/resource/Apollo_14", "surface form": "Apollo 14 astronauts"}], "relations": []}, {"id": "397", "question": [{"language": "en", "string": "Which university did Angela Merkel attend?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?university WHERE { res:Angela_Merkel dbo:almaMater ?university }"}, "answers": {"university": {"type": "uri", "value": "http://dbpedia.org/resource/German_Academy_of_Sciences_at_Berlin"}}, "entities": [{"URI": "http://dbpedia.org/resource/Angela_Merkel", "surface form": "Angela Merkel"}], "relations": [{"URI": "http://dbpedia.org/ontology/university", "surface form": "university"}, {"URI": "http://dbpedia.org/ontology/show", "surface form": "attend"}]}, {"id": "186", "question": [{"language": "en", "string": "How many countries are there in Europe?"}], "query": {"sparql": "SELECT (COUNT(DISTINCT ?uri) as ?c) WHERE { ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/class/yago/EuropeanCountries> . } "}, "answers": {"c": {"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/Europe", "surface form": "Europe"}], "relations": []}, {"id": "327", "question": [{"language": "en", "string": "How much did the Lego Movie cost?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?n WHERE { res:The_Lego_Movie dbo:budget ?n }"}, "answers": {"n": {"type": "typed-literal", "datatype": "http://dbpedia.org/datatype/usDollar", "value": "60.0"}}, "entities": [{"URI": "http://dbpedia.org/resource/The_Lego_Movie", "surface form": "Lego Movie"}], "relations": [{"URI": "http://dbpedia.org/ontology/budget", "surface form": "cost"}]}, {"id": "112", "question": [{"language": "en", "string": "Which European countries have a constitutional monarchy?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dct: <http://purl.org/dc/terms/> PREFIX dbc: <http://dbpedia.org/resource/Category:> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?uri WHERE { ?uri dct:subject dbc:Countries_in_Europe ; dbo:governmentType dbr:Constitutional_monarchy }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Andorra"}}, "entities": [{"URI": "http://dbpedia.org/resource/Europe", "surface form": "European countries"}, {"URI": "http://dbpedia.org/resource/List_of_fictional_European_countries", "surface form": "European countries"}, {"URI": "http://dbpedia.org/resource/Constitutional_monarchy", "surface form": "constitutional monarchy"}], "relations": [{"URI": "http://dbpedia.org/ontology/country", "surface form": ""}]}, {"id": "250", "question": [{"language": "en", "string": "Who is the founder of Penguin Books?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { res:Penguin_Books dbo:founder ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Allen_Lane"}}, "entities": [{"URI": "http://dbpedia.org/resource/Penguin_Books", "surface form": "Penguin Books"}], "relations": [{"URI": "http://dbpedia.org/ontology/founder", "surface form": "founder"}]}, {"id": "225", "question": [{"language": "en", "string": "List the seven kings of Rome."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/title> <http://dbpedia.org/resource/King_of_Rome> }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ancus_Marcius"}}, "entities": [{"URI": "http://dbpedia.org/resource/Rome", "surface form": "Rome"}], "relations": [{"URI": "http://dbpedia.org/ontology/leader", "surface form": "kings"}]}, {"id": "344", "question": [{"language": "en", "string": "Show me all museums in London."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Museum> ; <http://dbpedia.org/ontology/location> <http://dbpedia.org/resource/London> }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vagina_Museum"}}, "entities": [{"URI": "http://dbpedia.org/resource/Museums_in_Aalborg", "surface form": "museums"}, {"URI": "http://dbpedia.org/resource/London", "surface form": "London"}], "relations": [{"URI": "http://dbpedia.org/ontology/show", "surface form": "show"}]}, {"id": "46", "question": [{"language": "en", "string": "In which films did Julia Roberts as well as Richard Gere play?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Film ; dbo:starring res:Julia_Roberts ; dbo:starring res:Richard_Gere }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pretty_Woman"}}, "entities": [{"URI": "http://dbpedia.org/resource/Julia_Roberts", "surface form": "Julia Roberts"}, {"URI": "http://dbpedia.org/resource/Richard_Gere", "surface form": "Richard Gere"}], "relations": [{"URI": "http://dbpedia.org/ontology/numberOfFilms", "surface form": "films"}, {"URI": "http://dbpedia.org/ontology/starring", "surface form": "play"}]}, {"id": "415", "question": [{"language": "en", "string": "How much is the population density rank of Germany?"}], "query": {"sparql": "PREFIX dbr: <http://dbpedia.org/resource/> PREFIX dbp: <http://dbpedia.org/property/> SELECT ?rank WHERE { dbr:Germany dbp:populationDensityRank ?rank }"}, "answers": {"rank": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "58"}}, "entities": [{"URI": "http://dbpedia.org/resource/Population_density", "surface form": "population density rank"}, {"URI": "http://dbpedia.org/resource/Germany", "surface form": "Germany"}], "relations": []}, {"id": "428", "question": [{"language": "en", "string": "What is Donald Trump's main business?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?owner WHERE { ?owner dbo:owner dbr:Donald_Trump }"}, "answers": {"owner": {"type": "uri", "value": "http://dbpedia.org/resource/Trump_Model_Management"}}, "entities": [{"URI": "http://dbpedia.org/resource/Donald_Trump", "surface form": "Donald Trump"}, {"URI": "http://dbpedia.org/resource/The_Main_Monkey_Business", "surface form": " main business"}], "relations": []}, {"id": "362", "question": [{"language": "en", "string": "What does ICRO stand for?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/abbreviation> \"ICRO\" }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Irish_Cave_Rescue_Organisation"}}, "entities": [{"URI": "http://dbpedia.org/resource/Icrossing_Inc", "surface form": "ICRO"}], "relations": [{"URI": "http://dbpedia.org/ontology/position", "surface form": "stand"}]}, {"id": "272", "question": [{"language": "en", "string": "Who was influenced by Socrates?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/influencedBy> <http://dbpedia.org/resource/Socrates> }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Arcesilaus"}}, "entities": [{"URI": "http://dbpedia.org/resource/Socrates", "surface form": "Socrates"}], "relations": [{"URI": "http://dbpedia.org/ontology/influenced", "surface form": "influenced"}]}, {"id": "267", "question": [{"language": "en", "string": "Where was JFK assassinated?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/John_F._Kennedy> <http://dbpedia.org/ontology/deathPlace> ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dallas"}}, "entities": [{"URI": "http://dbpedia.org/resource/John_F._Kennedy_International_Airport", "surface form": "JFK"}, {"URI": "http://dbpedia.org/resource/Assassinated_Catholic_priests_in_Guatemala", "surface form": "Assassinated"}], "relations": []}, {"id": "365", "question": [{"language": "en", "string": "Which movies starring Mickey Rourke were directed by Guy Ritchie?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Film ; dbo:starring res:Mickey_Rourke ; dbo:director res:Guy_Ritchie }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Hire"}}, "entities": [{"URI": "http://dbpedia.org/resource/Mickey_Rourke", "surface form": "Mickey Rourke"}, {"URI": "http://dbpedia.org/resource/Guy_Ritchie", "surface form": "Guy Ritchie"}], "relations": [{"URI": "http://dbpedia.org/ontology/film", "surface form": "movies"}, {"URI": "http://dbpedia.org/ontology/starring", "surface form": "starring"}, {"URI": "http://dbpedia.org/ontology/president", "surface form": "directed"}]}, {"id": "268", "question": [{"language": "en", "string": "How many politicians graduated from Columbia University?"}], "query": {"sparql": "SELECT (COUNT(DISTINCT ?uri) AS ?c) WHERE { ?uri <http://dbpedia.org/ontology/profession> <http://dbpedia.org/resource/Politician> ; <http://dbpedia.org/ontology/almaMater> <http://dbpedia.org/resource/Columbia_University> }"}, "answers": {"c": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "10"}}, "entities": [{"URI": "http://dbpedia.org/resource/Politicians_of_The_Wire", "surface form": "politicians"}, {"URI": "http://dbpedia.org/resource/Columbia_University", "surface form": "Columbia University"}], "relations": [{"URI": "http://dbpedia.org/ontology/effectiveRadiatedPower", "surface form": "graduated"}]}, {"id": "367", "question": [{"language": "en", "string": "How many years was the Ford Model T manufactured?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX xsd: <http://www.w3.org/2001/XMLSchema#> PREFIX res: <http://dbpedia.org/resource/> SELECT ?years WHERE { res:Ford_Model_T dbo:productionEndYear ?end ; dbo:productionStartYear ?start. BIND ( ( year(xsd:date(?end)) - year(xsd:date(?start)) ) AS ?years) }"}, "answers": {"years": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "19"}}, "entities": [{"URI": "http://dbpedia.org/resource/T", "surface form": "T"}, {"URI": "http://dbpedia.org/resource/Ford_Model_48", "surface form": "Ford Model"}], "relations": [{"URI": "http://dbpedia.org/ontology/manufacturer", "surface form": "manufactured"}]}, {"id": "151", "question": [{"language": "en", "string": "Give me all actors who were born in Berlin."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Actor> ; <http://dbpedia.org/ontology/birthPlace> <http://dbpedia.org/resource/Berlin> }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Walter_Bluhm"}}, "entities": [{"URI": "http://dbpedia.org/resource/Berlin", "surface form": "Berlin"}], "relations": [{"URI": "http://dbpedia.org/ontology/award", "surface form": "actors"}, {"URI": "http://dbpedia.org/ontology/birthPlace", "surface form": "born"}]}, {"id": "355", "question": [{"language": "en", "string": "Who created Batman?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Batman dbo:creator ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bill_Finger"}}, "entities": [{"URI": "http://dbpedia.org/resource/Batman", "surface form": "Batman"}], "relations": [{"URI": "http://dbpedia.org/ontology/creator", "surface form": "created"}]}, {"id": "53", "question": [{"language": "en", "string": "Which German cities have more than 250000 inhabitants?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { { ?uri a <http://dbpedia.org/ontology/City> } UNION { ?uri a <http://dbpedia.org/ontology/Town> } ?uri <http://dbpedia.org/ontology/country> <http://dbpedia.org/resource/Germany> ; <http://dbpedia.org/ontology/populationTotal> ?population FILTER ( ?population > 250000 ) }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Berlin"}}, "entities": [{"URI": "http://dbpedia.org/resource/Germany", "surface form": "German cities"}, {"URI": "http://dbpedia.org/resource/German", "surface form": "German cities"}, {"URI": "http://dbpedia.org/resource/Population", "surface form": "250000 inhabitants"}], "relations": [{"URI": "http://dbpedia.org/ontology/country", "surface form": ""}, {"URI": "http://dbpedia.org/ontology/country", "surface form": ""}]}, {"id": "14", "question": [{"language": "en", "string": "Which state of the United States of America has the highest density?"}], "query": {"sparql": "PREFIX yago: <http://dbpedia.org/class/yago/> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> PREFIX dbp: <http://dbpedia.org/property/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT ?uri WHERE { ?uri dbp:densityrank ?density } ORDER BY ASC(?density) LIMIT 1"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Prince_Edward_Island"}}, "entities": [{"URI": "http://dbpedia.org/resource/United_States", "surface form": "United States of America"}], "relations": [{"URI": "http://dbpedia.org/ontology/populationDensity", "surface form": "highest density"}]}, {"id": "292", "question": [{"language": "en", "string": "When did the Boston Tea Party take place?"}], "query": {"sparql": "SELECT DISTINCT ?d WHERE { <http://dbpedia.org/resource/Boston_Tea_Party> <http://dbpedia.org/property/date> ?d }"}, "answers": {"d": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#date", "value": "1773-12-16"}}, "entities": [{"URI": "http://dbpedia.org/resource/Boston_Tea_Party", "surface form": "Boston Tea Party"}], "relations": [{"URI": "http://dbpedia.org/ontology/place", "surface form": "place"}]}, {"id": "410", "question": [{"language": "en", "string": "What is the nick name of Baghdad?"}], "query": {"sparql": "PREFIX dbr: <http://dbpedia.org/resource/> PREFIX foaf: <http://xmlns.com/foaf/0.1/> SELECT ?nm WHERE { dbr:Baghdad foaf:nick ?nm }"}, "answers": {"nm": {"type": "literal", "xml:lang": "en", "value": "City of Peace (\u0645\u062f\u064a\u0646\u0629 \u0627\u0644\u0633\u0644\u0627\u0645)"}}, "entities": [{"URI": "http://dbpedia.org/resource/Baghdad", "surface form": "Baghdad"}], "relations": [{"URI": "http://dbpedia.org/ontology/address", "surface form": "nick name"}]}, {"id": "212", "question": [{"language": "en", "string": "Give me all spacecrafts that flew to Mars."}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbc: <http://dbpedia.org/resource/Category:> PREFIX dct: <http://purl.org/dc/terms/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?s WHERE { ?s dct:subject dbc:Mars_rovers ; rdf:type ?type FILTER ( ?type IN (dbo:Satellite, dbo:ArtificialSatellite) ) }"}, "answers": {"s": {"type": "uri", "value": "http://dbpedia.org/resource/Mars_2"}}, "entities": [{"URI": "http://dbpedia.org/resource/Spacecraft", "surface form": "spacecrafts"}, {"URI": "http://dbpedia.org/resource/Mars", "surface form": "Mars"}], "relations": [{"URI": "http://dbpedia.org/ontology/circulation", "surface form": "flew"}]}, {"id": "259", "question": [{"language": "en", "string": "Which bridges cross the Seine?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Bridge> ; <http://dbpedia.org/ontology/crosses> <http://dbpedia.org/resource/Seine> }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Viaduc_d'Austerlitz"}}, "entities": [{"URI": "http://dbpedia.org/resource/Seine", "surface form": "Seine"}], "relations": [{"URI": "http://dbpedia.org/ontology/abstract", "surface form": "bridges"}, {"URI": "http://dbpedia.org/ontology/network", "surface form": "cross"}]}, {"id": "411", "question": [{"language": "en", "string": "Who is the novelist of the work a song of ice and fire?"}], "query": {"sparql": "PREFIX dbr: <http://dbpedia.org/resource/> PREFIX dbp: <http://dbpedia.org/property/> SELECT ?Novelist WHERE { dbr:A_Song_of_Ice_and_Fire dbp:author ?Novelist }"}, "answers": {"Novelist": {"type": "uri", "value": "http://dbpedia.org/resource/George_R._R._Martin"}}, "entities": [], "relations": [{"URI": "http://dbpedia.org/ontology/author", "surface form": "novelist"}, {"URI": "http://dbpedia.org/ontology/service", "surface form": "work"}, {"URI": "http://dbpedia.org/ontology/anthem", "surface form": "song"}, {"URI": "http://dbpedia.org/ontology/frozen", "surface form": "ice"}]}, {"id": "245", "question": [{"language": "en", "string": "Which city has the least inhabitants?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:City ; dbo:populationTotal ?pop } ORDER BY ASC(?pop) OFFSET 0 LIMIT 1"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ambae_Island"}}, "entities": [], "relations": [{"URI": "http://dbpedia.org/ontology/city", "surface form": "city"}, {"URI": "http://dbpedia.org/ontology/country", "surface form": "inhabitants"}]}, {"id": "35", "question": [{"language": "en", "string": "Who was Tom Hanks married to?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> SELECT DISTINCT ?uri WHERE { dbr:Tom_Hanks dbo:spouse ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rita_Wilson"}}, "entities": [{"URI": "http://dbpedia.org/resource/Tom_Hanks", "surface form": "Tom Hanks"}], "relations": [{"URI": "http://dbpedia.org/property/spouse", "surface form": "married"}]}, {"id": "241", "question": [{"language": "en", "string": "Give all swimmers that were born in Moscow."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Swimmer> ; <http://dbpedia.org/ontology/birthPlace> <http://dbpedia.org/resource/Moscow> }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alla_Grebennikova"}}, "entities": [{"URI": "http://dbpedia.org/resource/Swimmers_(film)", "surface form": "swimmers"}, {"URI": "http://dbpedia.org/resource/Moscow", "surface form": "Moscow"}], "relations": [{"URI": "http://dbpedia.org/ontology/birthPlace", "surface form": "born"}]}, {"id": "387", "question": [{"language": "en", "string": "Who discovered Pluto?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?uri WHERE { dbr:Pluto dbo:discoverer ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Clyde_Tombaugh"}}, "entities": [{"URI": "http://dbpedia.org/resource/Pluto", "surface form": "Pluto"}], "relations": [{"URI": "http://dbpedia.org/ontology/discovered", "surface form": "discovered"}]}, {"id": "185", "question": [{"language": "en", "string": "What is the highest place of the Urals?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Ural_Mountains> <http://dbpedia.org/property/highest> ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mount_Narodnaya"}}, "entities": [{"URI": "http://dbpedia.org/resource/Urals_Mussorgsky_State_Conservatoire", "surface form": "Urals"}], "relations": [{"URI": "http://dbpedia.org/ontology/highestPlace", "surface form": "highest place"}]}, {"id": "388", "question": [{"language": "en", "string": "Who killed Caesar?"}], "query": {"sparql": "PREFIX dct: <http://purl.org/dc/terms/> PREFIX dbc: <http://dbpedia.org/resource/Category:> SELECT DISTINCT ?uri WHERE { ?uri dct:subject dbc:Assassins_of_Julius_Caesar }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Decimus_Junius_Brutus_Albinus"}}, "entities": [{"URI": "http://dbpedia.org/resource/Caesar_(game)", "surface form": "Caesar"}], "relations": [{"URI": "http://dbpedia.org/ontology/billed", "surface form": "killed"}]}, {"id": "18", "question": [{"language": "en", "string": "Which countries have more than two official languages?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Country> ; <http://dbpedia.org/ontology/officialLanguage> ?language } GROUP BY ?uri HAVING ( COUNT(?language) > 2 )"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Democratic_Federal_Yugoslavia"}}, "entities": [{"URI": "http://dbpedia.org/resource/Countries_of_the_United_Kingdom", "surface form": "countries"}], "relations": [{"URI": "http://dbpedia.org/property/languages", "surface form": "official languages"}]}, {"id": "252", "question": [{"language": "en", "string": "List all the musicals with music by Elton John."}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Musical ; dbo:musicBy res:Elton_John }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Aida_(musical)"}}, "entities": [{"URI": "http://dbpedia.org/resource/Elton_John", "surface form": "Elton John"}], "relations": [{"URI": "http://dbpedia.org/property/musicals", "surface form": "musicals"}, {"URI": "http://dbpedia.org/ontology/musicalBand", "surface form": "music"}]}, {"id": "33", "question": [{"language": "en", "string": "Give me the websites of companies with more than 500000 employees."}], "query": {"sparql": "PREFIX foaf: <http://xmlns.com/foaf/0.1/> PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> SELECT distinct ?web WHERE { ?sub dbo:numberOfEmployees ?obj . ?sub foaf:homepage ?web FILTER( xsd:integer(?obj) > 500000 ) . }"}, "answers": {"web": {"type": "uri", "value": "https://www.aus.com/"}}, "entities": [{"URI": "http://dbpedia.org/resource/Websites_blocked_in_Pakistan", "surface form": "websites"}, {"URI": "http://dbpedia.org/resource/Companies_listed_on_the_New_York_Stock_Exchange_(J)", "surface form": "companies"}], "relations": [{"URI": "http://dbpedia.org/ontology/numberOfEmployees", "surface form": "500000 employees"}]}, {"id": "133", "question": [{"language": "en", "string": "Which poet wrote the most books?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/occupation> <http://dbpedia.org/resource/Poet> . ?x <http://dbpedia.org/ontology/author> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Book> . } ORDER BY DESC(COUNT(?x)) OFFSET 0 LIMIT 1"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jules_Verne"}}, "entities": [], "relations": [{"URI": "http://dbpedia.org/ontology/author", "surface form": "poet"}, {"URI": "http://dbpedia.org/ontology/composer", "surface form": "wrote"}, {"URI": "http://dbpedia.org/ontology/volume", "surface form": "books"}]}, {"id": "143", "question": [{"language": "en", "string": "Who has Tom Cruise been married to?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/spouse> <http://dbpedia.org/resource/Tom_Cruise> }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Katie_Holmes"}}, "entities": [{"URI": "http://dbpedia.org/resource/Tom_Cruise", "surface form": "Tom Cruise"}], "relations": [{"URI": "http://dbpedia.org/ontology/spouse", "surface form": "married"}]}, {"id": "311", "question": [{"language": "en", "string": "Who is the mayor of Paris?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Paris dbo:mayor ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Anne_Hidalgo"}}, "entities": [{"URI": "http://dbpedia.org/resource/Paris", "surface form": "Paris"}], "relations": [{"URI": "http://dbpedia.org/ontology/mayor", "surface form": "mayor"}]}, {"id": "208", "question": [{"language": "en", "string": "Which movies starring Brad Pitt were directed by Guy Ritchie?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Film ; dbo:starring res:Brad_Pitt ; dbo:director res:Guy_Ritchie }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Snatch_(film)__Snatch__1"}}, "entities": [{"URI": "http://dbpedia.org/resource/Brad_Pitt", "surface form": "Brad Pitt"}, {"URI": "http://dbpedia.org/resource/Guy_Ritchie", "surface form": "Guy Ritchie"}], "relations": [{"URI": "http://dbpedia.org/ontology/film", "surface form": "movies"}, {"URI": "http://dbpedia.org/ontology/starring", "surface form": "starring"}, {"URI": "http://dbpedia.org/ontology/president", "surface form": "directed"}]}, {"id": "13", "question": [{"language": "en", "string": "Who is the author of WikiLeaks?"}], "query": {"sparql": "PREFIX res: <http://dbpedia.org/resource/> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT ?uri WHERE { res:WikiLeaks onto:author ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Julian_Assange"}}, "entities": [{"URI": "http://dbpedia.org/resource/WikiLeaks", "surface form": "WikiLeaks"}], "relations": [{"URI": "http://dbpedia.org/ontology/author", "surface form": "author"}]}, {"id": "238", "question": [{"language": "en", "string": "Which rockets were launched from Baikonur?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Rocket> ; <http://dbpedia.org/ontology/launchSite> <http://dbpedia.org/resource/Baikonur_Cosmodrome> }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Voskhod_(rocket)"}}, "entities": [{"URI": "http://dbpedia.org/resource/Baikonur_Cosmodrome_Site_109", "surface form": "Baikonur"}], "relations": [{"URI": "http://dbpedia.org/ontology/capital", "surface form": "rockets"}, {"URI": "http://dbpedia.org/ontology/totalLaunches", "surface form": "launched"}]}, {"id": "245", "question": [{"language": "en", "string": "Which city has the least inhabitants?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:City ; dbo:populationTotal ?pop } ORDER BY ASC(?pop) OFFSET 0 LIMIT 1"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ambae_Island"}}, "entities": [], "relations": [{"URI": "http://dbpedia.org/ontology/city", "surface form": "city"}, {"URI": "http://dbpedia.org/ontology/country", "surface form": "inhabitants"}]}, {"id": "149", "question": [{"language": "en", "string": "Who are the four youngest MVP basketball players?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/BasketballPlayer> ; <http://dbpedia.org/ontology/birthDate> ?date ; <http://dbpedia.org/property/highlights> ?h FILTER regex(?h, \"MVP\") } ORDER BY DESC(?date) OFFSET 0 LIMIT 4"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Robert_Dillingham"}}, "entities": [{"URI": "http://dbpedia.org/resource/NBA_Most_Valuable_Player_Award", "surface form": "MVP"}, {"URI": "http://dbpedia.org/resource/National_Basketball_Players_Association", "surface form": "basketball players"}], "relations": []}, {"id": "5", "question": [{"language": "en", "string": "How tall is Claudia Schiffer?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?height WHERE { res:Claudia_Schiffer dbo:height ?height }"}, "answers": {"height": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#double", "value": "1.8"}}, "entities": [{"URI": "http://dbpedia.org/resource/Claudia_Schiffer", "surface form": "Claudia Schiffer"}], "relations": [{"URI": "http://dbpedia.org/ontology/height", "surface form": "tall"}]}, {"id": "133", "question": [{"language": "en", "string": "Which poet wrote the most books?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/occupation> <http://dbpedia.org/resource/Poet> . ?x <http://dbpedia.org/ontology/author> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Book> . } ORDER BY DESC(COUNT(?x)) OFFSET 0 LIMIT 1"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jules_Verne"}}, "entities": [], "relations": [{"URI": "http://dbpedia.org/ontology/author", "surface form": "poet"}, {"URI": "http://dbpedia.org/ontology/composer", "surface form": "wrote"}, {"URI": "http://dbpedia.org/ontology/volume", "surface form": "books"}]}, {"id": "212", "question": [{"language": "en", "string": "Give me all spacecrafts that flew to Mars."}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbc: <http://dbpedia.org/resource/Category:> PREFIX dct: <http://purl.org/dc/terms/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?s WHERE { ?s dct:subject dbc:Mars_rovers ; rdf:type ?type FILTER ( ?type IN (dbo:Satellite, dbo:ArtificialSatellite) ) }"}, "answers": {"s": {"type": "uri", "value": "http://dbpedia.org/resource/Mars_2"}}, "entities": [{"URI": "http://dbpedia.org/resource/Spacecraft", "surface form": "spacecrafts"}, {"URI": "http://dbpedia.org/resource/Mars", "surface form": "Mars"}], "relations": [{"URI": "http://dbpedia.org/ontology/circulation", "surface form": "flew"}]}, {"id": "180", "question": [{"language": "en", "string": "Which U.S. states are in the same time zone as Utah?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Utah> <http://dbpedia.org/property/timezone> ?x . ?uri a <http://dbpedia.org/class/yago/WikicatStatesOfTheUnitedStates> ; <http://dbpedia.org/property/timezone> ?x FILTER ( ?uri != <http://dbpedia.org/resource/Utah> ) }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Montana"}}, "entities": [{"URI": "http://dbpedia.org/resource/Usk,_Washington", "surface form": "US"}, {"URI": "http://dbpedia.org/resource/Utah", "surface form": "Utah"}], "relations": [{"URI": "http://dbpedia.org/property/timezone", "surface form": "time zone"}]}, {"id": "69", "question": [{"language": "en", "string": "Which U.S. state has been admitted latest?"}], "query": {"sparql": "PREFIX dbc: <http://dbpedia.org/resource/Category:> PREFIX dct: <http://purl.org/dc/terms/> SELECT DISTINCT ?uri WHERE { ?uri dct:subject dbc:States_of_the_United_States ; <http://dbpedia.org/property/admittancedate> ?x } ORDER BY DESC(?x) LIMIT 1"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hawaii"}}, "entities": [{"URI": "http://dbpedia.org/resource/United_States", "surface form": "US"}], "relations": [{"URI": "http://dbpedia.org/property/known", "surface form": "admitted"}]}, {"id": "132", "question": [{"language": "en", "string": "How many languages are spoken in Colombia?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT (COUNT(DISTINCT ?uri) AS ?c) WHERE { ?uri rdf:type dbo:Language . res:Colombia dbo:language ?uri }"}, "answers": {"c": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}, "entities": [{"URI": "http://dbpedia.org/resource/Colombia", "surface form": "Colombia"}], "relations": [{"URI": "http://dbpedia.org/ontology/language", "surface form": "languages"}, {"URI": "http://dbpedia.org/ontology/spokenIn", "surface form": "spoken"}]}, {"id": "54", "question": [{"language": "en", "string": "What is the second highest mountain on Earth?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Mountain> ; <http://dbpedia.org/ontology/elevation> ?elevation } ORDER BY DESC(?elevation) OFFSET 1 LIMIT 1"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alpide_belt"}}, "entities": [{"URI": "http://dbpedia.org/resource/Earth", "surface form": "Earth"}], "relations": [{"URI": "http://dbpedia.org/ontology/elevation", "surface form": "highest mountain"}]}, {"id": "432", "question": [{"language": "en", "string": "Which classes does the Millepede belong to?"}], "query": {"sparql": "PREFIX res: <http://dbpedia.org/resource/> PREFIX dbp: <http://dbpedia.org/property/> SELECT DISTINCT ?String WHERE { res:Millipede dbp:taxon ?String }"}, "answers": {"String": {"type": "literal", "xml:lang": "en", "value": "Diplopoda"}}, "entities": [{"URI": "http://dbpedia.org/resource/Millipede", "surface form": "Millepede"}], "relations": [{"URI": "http://dbpedia.org/ontology/classes", "surface form": "classes"}, {"URI": "http://dbpedia.org/ontology/date", "surface form": "belong"}]}, {"id": "202", "question": [{"language": "en", "string": "In which city is Air China headquartered?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Air_China> <http://dbpedia.org/ontology/headquarter> ?uri . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/class/yago/City108524735> . } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Beijing"}}, "entities": [{"URI": "http://dbpedia.org/resource/Air_China", "surface form": "Air China"}], "relations": [{"URI": "http://dbpedia.org/ontology/city", "surface form": "city"}, {"URI": "http://dbpedia.org/ontology/headquarter", "surface form": "headquartered"}]}, {"id": "305", "question": [{"language": "en", "string": "How many seats does the home stadium of FC Porto have?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbp: <http://dbpedia.org/property/> PREFIX dbr: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> PREFIX db: <http://dbpedia.org/> SELECT ?capacity WHERE { { dbr:FC_Porto dbo:ground ?ground . ?ground dbo:capacity ?capacity } UNION { dbr:FC_Porto dbo:ground ?ground . ?ground dbp:capacity ?capacity } }"}, "answers": {"capacity": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "50035"}}, "entities": [{"URI": "http://dbpedia.org/resource/FC_Porto", "surface form": "stadium of FC Porto"}], "relations": [{"URI": "http://dbpedia.org/property/seat", "surface form": "seats"}, {"URI": "http://dbpedia.org/ontology/ground", "surface form": "home stadium"}]}, {"id": "38", "question": [{"language": "en", "string": "Give me all films produced by Hal Roach."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Film> ; <http://dbpedia.org/ontology/producer> <http://dbpedia.org/resource/Hal_Roach> }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/All_Aboard_(1917_film)"}}, "entities": [{"URI": "http://dbpedia.org/resource/Hal_Roach", "surface form": "Hal Roach"}], "relations": [{"URI": "http://dbpedia.org/ontology/numberOfFilms", "surface form": "films"}, {"URI": "http://dbpedia.org/ontology/wineProduced", "surface form": "produced"}]}, {"id": "441", "question": [{"language": "en", "string": "What is the highest mountain in Saxony Germany?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?m WHERE { ?m dbo:mountainRange dbr:Ore_Mountains ; dbo:elevation ?height } ORDER BY DESC(?height) LIMIT 1"}, "answers": {"m": {"type": "uri", "value": "http://dbpedia.org/resource/Kl\u00ednovec"}}, "entities": [{"URI": "http://dbpedia.org/resource/Frankenstein,_Saxony", "surface form": "Saxony Germany"}], "relations": [{"URI": "http://dbpedia.org/ontology/elevation", "surface form": "highest mountain"}]}, {"id": "281", "question": [{"language": "en", "string": "In which city does the Chile Route 68 end?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Chile_Route_68 dbo:routeEnd ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Valpara\u00edso"}}, "entities": [{"URI": "http://dbpedia.org/resource/Chile_Route_68", "surface form": "Chile Route 68 end"}], "relations": [{"URI": "http://dbpedia.org/ontology/city", "surface form": "city"}]}, {"id": "65", "question": [{"language": "en", "string": "Give me all people that were born in Vienna and died in Berlin."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/birthPlace> <http://dbpedia.org/resource/Vienna> ; <http://dbpedia.org/ontology/deathPlace> <http://dbpedia.org/resource/Berlin> }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hans_Fidesser"}}, "entities": [{"URI": "http://dbpedia.org/resource/Vienna", "surface form": "Vienna"}, {"URI": "http://dbpedia.org/resource/Berlin", "surface form": "Berlin"}], "relations": [{"URI": "http://dbpedia.org/ontology/birthPlace", "surface form": "born"}, {"URI": "http://dbpedia.org/ontology/flag", "surface form": "died"}]}, {"id": "403", "question": [{"language": "en", "string": "Who is Dan Jurafsky?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?Dan WHERE { VALUES ?Dan {dbr:Daniel_Jurafsky } }"}, "answers": {"Dan": {"type": "uri", "value": "http://dbpedia.org/resource/Daniel_Jurafsky"}}, "entities": [{"URI": "http://dbpedia.org/resource/Daniel_Jurafsky", "surface form": "Dan Jurafsky"}], "relations": []}, {"id": "416", "question": [{"language": "en", "string": "What is the relation between Resource Description Framework and Web Ontology Language?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?rdf_owl WHERE { dbr:Web_Ontology_Language dbo:abstract ?rdf_owl } LIMIT 1"}, "answers": {"rdf_owl": {"type": "literal", "xml:lang": "ca", "value": "OWL \u00e9s l'acr\u00f2nim de l'angl\u00e8s Web Ontology Language, un llenguatge de marcat per publicar i compartir dades usant ontologies en la WWW. OWL t\u00e9 com a objectiu facilitar un model de marcat constru\u00eft sobre RDF i codificat en XML. T\u00e9 com a antecedent DAML+OIL, en els quals es van inspirar els creadors de OWL per crear el llenguatge. Al costat de l'entorn RDF i altres components, aquestes eines fan possible el projecte de web sem\u00e0ntica."}}, "entities": [{"URI": "http://dbpedia.org/resource/Resource_Description_Framework", "surface form": "Resource Description Framework"}, {"URI": "http://dbpedia.org/resource/Web_Ontology_Language", "surface form": "Web Ontology Language"}], "relations": [{"URI": "http://dbpedia.org/ontology/relation", "surface form": "relation"}]}, {"id": "343", "question": [{"language": "en", "string": "What movies does Jesse Eisenberg play in?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Film> ; <http://dbpedia.org/ontology/starring> <http://dbpedia.org/resource/Jesse_Eisenberg> }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/American_Ultra"}}, "entities": [{"URI": "http://dbpedia.org/resource/Jesse_Eisenberg", "surface form": "Jesse Eisenberg"}], "relations": [{"URI": "http://dbpedia.org/ontology/film", "surface form": "movies"}, {"URI": "http://dbpedia.org/ontology/starring", "surface form": "play"}]}, {"id": "164", "question": [{"language": "en", "string": "Which actor played Chewbacca?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Chewbacca> <http://dbpedia.org/ontology/portrayer> ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Joonas_Suotamo"}}, "entities": [{"URI": "http://dbpedia.org/resource/Chewbacca", "surface form": "Chewbacca"}], "relations": [{"URI": "http://dbpedia.org/ontology/artist", "surface form": "actor"}, {"URI": "http://dbpedia.org/ontology/portrayer", "surface form": "played"}]}, {"id": "302", "question": [{"language": "en", "string": "Who developed Slack?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?uri dbo:product <http://dbpedia.org/resource/Slack_(software)> }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Slack_Technologies"}}, "entities": [{"URI": "http://dbpedia.org/resource/Slack", "surface form": "Slack"}], "relations": [{"URI": "http://dbpedia.org/ontology/developer", "surface form": "developed"}]}, {"id": "123", "question": [{"language": "en", "string": "Give me all female German chancellors."}], "query": {"sparql": "PREFIX res: <http://dbpedia.org/resource/> PREFIX dbp: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Chancellor_of_Germany dbp:incumbent ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Olaf_Scholz"}}, "entities": [{"URI": "http://dbpedia.org/resource/List_of_German_female_artists", "surface form": "female German chancellors"}], "relations": []}, {"id": "152", "question": [{"language": "en", "string": "Give me all actors who were born in Paris after 1950."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Actor> . ?uri <http://dbpedia.org/ontology/birthPlace> <http://dbpedia.org/resource/Paris> . ?uri <http://dbpedia.org/ontology/birthDate> ?date . FILTER ( ?date >= xsd:dateTime('1950-12-31T00:00:00Z')) }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fran\u00e7ois_Hadji-Lazaro"}}, "entities": [{"URI": "http://dbpedia.org/resource/Paris", "surface form": "Paris"}, {"URI": "http://dbpedia.org/resource/1950", "surface form": "1950"}], "relations": [{"URI": "http://dbpedia.org/ontology/artist", "surface form": "actors"}, {"URI": "http://dbpedia.org/ontology/birthPlace", "surface form": "born"}]}, {"id": "63", "question": [{"language": "en", "string": "What is the longest river?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/River> { ?uri <http://dbpedia.org/ontology/length> ?l } UNION { ?uri <http://dbpedia.org/property/length> ?l } } ORDER BY DESC(?l) OFFSET 0 LIMIT 1"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Indian_Ocean"}}, "entities": [], "relations": [{"URI": "http://dbpedia.org/ontology/river", "surface form": "river"}]}, {"id": "247", "question": [{"language": "en", "string": "Who wrote The Hunger Games?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/The_Hunger_Games> <http://dbpedia.org/property/author> ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Suzanne_Collins"}}, "entities": [{"URI": "http://dbpedia.org/resource/The_Hunger_Games", "surface form": "The Hunger Games"}], "relations": [{"URI": "http://dbpedia.org/property/author", "surface form": "wrote"}]}, {"id": "19", "question": [{"language": "en", "string": "What is the highest mountain in Germany?"}], "query": {"sparql": "PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT ?uri WHERE { ?uri rdf:type onto:Mountain ; onto:elevation ?elevation ; onto:locatedInArea <http://dbpedia.org/resource/Germany> } ORDER BY DESC(?elevation) LIMIT 1"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Zugspitze"}}, "entities": [{"URI": "http://dbpedia.org/resource/Germany", "surface form": "Germany"}], "relations": [{"URI": "http://dbpedia.org/ontology/elevation", "surface form": "highest mountain"}]}, {"id": "12", "question": [{"language": "en", "string": "Which bridges are of the same type as the Manhattan Bridge?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX dbr: <http://dbpedia.org/resource/> SELECT DISTINCT ?bridge WHERE { dbr:Manhattan_Bridge dbo:type ?type . ?bridge dbo:type ?type ; rdf:type dbo:Bridge }"}, "answers": {"bridge": {"type": "uri", "value": "http://dbpedia.org/resource/Ambassador_Bridge"}}, "entities": [{"URI": "http://dbpedia.org/resource/Manhattan_Bridge", "surface form": "Manhattan Bridge"}], "relations": [{"URI": "http://dbpedia.org/ontology/abstract", "surface form": "bridges"}, {"URI": "http://dbpedia.org/ontology/type", "surface form": "type"}]}, {"id": "342", "question": [{"language": "en", "string": "What form of government does Russia have?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Russia dbo:governmentType ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Federalism"}}, "entities": [{"URI": "http://dbpedia.org/resource/Russia", "surface form": "Russia"}], "relations": [{"URI": "http://dbpedia.org/ontology/type", "surface form": "form"}, {"URI": "http://dbpedia.org/ontology/governmentType", "surface form": "government"}]}, {"id": "190", "question": [{"language": "en", "string": "Give me all female given names."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/GivenName> . ?uri <http://dbpedia.org/ontology/gender> <http://dbpedia.org/resource/Female> . } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Amy"}}, "entities": [], "relations": [{"URI": "http://dbpedia.org/ontology/championInSingleFemale", "surface form": "female"}, {"URI": "http://dbpedia.org/ontology/athletics", "surface form": "names"}]}, {"id": "124", "question": [{"language": "en", "string": "Who is the governor of Wyoming?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Wyoming> <http://dbpedia.org/property/governor> ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mark_Gordon"}}, "entities": [{"URI": "http://dbpedia.org/resource/Wyoming", "surface form": "Wyoming"}], "relations": [{"URI": "http://dbpedia.org/ontology/governor", "surface form": "governor"}]}, {"id": "293", "question": [{"language": "en", "string": "Who played Gus Fring in Breaking Bad?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Gus_Fring dbo:portrayer ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Giancarlo_Esposito"}}, "entities": [{"URI": "http://dbpedia.org/resource/Gus_Fring", "surface form": "Gus Fring"}, {"URI": "http://dbpedia.org/resource/Breaking_Bad", "surface form": "Breaking Bad"}], "relations": [{"URI": "http://dbpedia.org/ontology/portrayer", "surface form": "played"}]}, {"id": "138", "question": [{"language": "en", "string": "Who is the youngest Darts player?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:DartsPlayer ; dbo:birthDate ?date } ORDER BY DESC(?date) OFFSET 0 LIMIT 1"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Aurora_Fochesato"}}, "entities": [{"URI": "http://dbpedia.org/resource/Andrew_Gilding", "surface form": "Darts player"}], "relations": []}, {"id": "16", "question": [{"language": "en", "string": "Which countries in the European Union adopted the Euro?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Country> { ?uri <http://dbpedia.org/ontology/currency> <http://dbpedia.org/resource/Euro> } UNION { ?uri <http://dbpedia.org/property/currencyCode> \"EUR\"@en } }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Andorra"}}, "entities": [{"URI": "http://dbpedia.org/resource/Countries_of_the_United_Kingdom", "surface form": "countries"}, {"URI": "http://dbpedia.org/resource/Europe", "surface form": "European Union adopted the Euro"}, {"URI": "http://dbpedia.org/resource/The_Adopted", "surface form": "European Union adopted the Euro"}], "relations": [{"URI": "http://dbpedia.org/ontology/country", "surface form": ""}]}, {"id": "283", "question": [{"language": "en", "string": "Who wrote the song Hotel California?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Hotel_California dbo:writer ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Glenn_Frey"}}, "entities": [{"URI": "http://dbpedia.org/resource/Hotel_California", "surface form": "song Hotel California"}], "relations": [{"URI": "http://dbpedia.org/ontology/writer", "surface form": "wrote"}]}, {"id": "82", "question": [{"language": "en", "string": "What are the nicknames of San Francisco?"}], "query": {"sparql": "PREFIX res: <http://dbpedia.org/resource/> PREFIX dbp: <http://dbpedia.org/property/> PREFIX foaf:<http://xmlns.com/foaf/0.1/> SELECT DISTINCT ?string WHERE { res:San_Francisco foaf:nick ?string }"}, "answers": {"string": {"type": "literal", "xml:lang": "en", "value": "SeeList of nicknames for San Francisco"}}, "entities": [{"URI": "http://dbpedia.org/resource/San_Francisco", "surface form": "San Francisco"}], "relations": [{"URI": "http://dbpedia.org/ontology/mascot", "surface form": "nicknames"}]}, {"id": "97", "question": [{"language": "en", "string": "Which books by Kerouac were published by Viking Press?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Book ; dbo:publisher res:Viking_Press ; dbo:author res:Jack_Kerouac }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Atop_an_Underwood"}}, "entities": [{"URI": "http://dbpedia.org/resource/Jack_Kerouac", "surface form": "Kerouac"}, {"URI": "http://dbpedia.org/resource/Viking_Press", "surface form": "Viking Press"}], "relations": [{"URI": "http://dbpedia.org/ontology/title", "surface form": "books"}, {"URI": "http://dbpedia.org/ontology/publisher", "surface form": "published"}]}, {"id": "5", "question": [{"language": "en", "string": "How tall is Claudia Schiffer?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?height WHERE { res:Claudia_Schiffer dbo:height ?height }"}, "answers": {"height": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#double", "value": "1.8"}}, "entities": [{"URI": "http://dbpedia.org/resource/Claudia_Schiffer", "surface form": "Claudia Schiffer"}], "relations": [{"URI": "http://dbpedia.org/ontology/height", "surface form": "tall"}]}, {"id": "179", "question": [{"language": "en", "string": "Give me all Apollo 14 astronauts."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/mission> <http://dbpedia.org/resource/Apollo_14> }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alan_Shepard"}}, "entities": [{"URI": "http://dbpedia.org/resource/Apollo_14", "surface form": "Apollo 14 astronauts"}], "relations": []}, {"id": "247", "question": [{"language": "en", "string": "Who wrote The Hunger Games?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/The_Hunger_Games> <http://dbpedia.org/property/author> ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Suzanne_Collins"}}, "entities": [{"URI": "http://dbpedia.org/resource/The_Hunger_Games", "surface form": "The Hunger Games"}], "relations": [{"URI": "http://dbpedia.org/property/author", "surface form": "wrote"}]}, {"id": "168", "question": [{"language": "en", "string": "How deep is Lake Placid?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> SELECT DISTINCT ?n WHERE { <http://dbpedia.org/resource/Lake_Placid_(Texas)> dbo:maximumDepth ?n }"}, "answers": {"n": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#double", "value": "12.192"}}, "entities": [{"URI": "http://dbpedia.org/resource/Lake_Placid", "surface form": "Lake Placid"}], "relations": [{"URI": "http://dbpedia.org/ontology/capital", "surface form": "deep"}]}, {"id": "160", "question": [{"language": "en", "string": "To which artistic movement did the painter of The Three Dancers belong?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:The_Three_Dancers dbo:author ?person . ?person dbo:movement ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cubism"}}, "entities": [{"URI": "http://dbpedia.org/resource/The_Three_Dancers", "surface form": "The Three Dancers"}], "relations": [{"URI": "http://dbpedia.org/ontology/movement", "surface form": "artistic movement"}, {"URI": "http://dbpedia.org/ontology/painter", "surface form": "painter"}, {"URI": "http://dbpedia.org/ontology/date", "surface form": "belong"}]}, {"id": "286", "question": [{"language": "en", "string": "What is the atmosphere of the Moon composed of?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Moon> <http://dbpedia.org/property/atmosphereComposition> ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Argon"}}, "entities": [{"URI": "http://dbpedia.org/resource/Moon", "surface form": "Moon"}], "relations": [{"URI": "http://dbpedia.org/property/background", "surface form": "atmosphere"}, {"URI": "http://dbpedia.org/ontology/musicComposer", "surface form": "composed"}]}, {"id": "263", "question": [{"language": "en", "string": "What airlines are part of the SkyTeam alliance?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Airline> { ?uri <http://dbpedia.org/ontology/alliance> <http://dbpedia.org/resource/SkyTeam> } UNION { ?uri <http://dbpedia.org/ontology/Alliance> <http://dbpedia.org/resource/SkyTeam> } }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alitalia"}}, "entities": [{"URI": "http://dbpedia.org/resource/SkyTeam", "surface form": "SkyTeam alliance"}], "relations": [{"URI": "http://dbpedia.org/ontology/icaoAirlineCode", "surface form": "airlines"}]}, {"id": "390", "question": [{"language": "en", "string": "What was the final result of the War of the Roses?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT DISTINCT ?result WHERE { ?uri dbo:isPartOfMilitaryConflict dbr:Wars_of_the_Roses ; dbo:result ?result ; dbo:date ?date } ORDER BY DESC(?date) OFFSET 0 LIMIT 1"}, "answers": {"result": {"type": "literal", "value": "Decisive Tudor victory"}}, "entities": [{"URI": "http://dbpedia.org/resource/The_War_of_the_Roses_(film)", "surface form": "War of the Roses"}], "relations": []}, {"id": "260", "question": [{"language": "en", "string": "When did Dracula's creator die?"}], "query": {"sparql": "SELECT DISTINCT xsd:date(?date) WHERE { <http://dbpedia.org/resource/Count_Dracula> <http://dbpedia.org/ontology/creator> ?x . ?x <http://dbpedia.org/ontology/deathDate> ?date. }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#date", "value": "1912-04-20"}}, "entities": [{"URI": "http://dbpedia.org/resource/Count_Dracula", "surface form": "Dracula"}], "relations": [{"URI": "http://dbpedia.org/property/producer", "surface form": " creator"}, {"URI": "http://dbpedia.org/ontology/deathDate", "surface form": "die"}]}, {"id": "76", "question": [{"language": "en", "string": "In which military conflicts did Lawrence of Arabia participate?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:T._E._Lawrence dbo:battle ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Battle_of_Megiddo_(1918)"}}, "entities": [{"URI": "http://dbpedia.org/resource/T._E._Lawrence", "surface form": "Lawrence of Arabia"}], "relations": [{"URI": "http://dbpedia.org/ontology/militaryBranch", "surface form": "military conflicts"}, {"URI": "http://dbpedia.org/ontology/participant", "surface form": "participate"}]}, {"id": "349", "question": [{"language": "en", "string": "What languages do they speak in Pakistan?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Pakistan> <http://dbpedia.org/ontology/language> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Memoni_language"}}, "entities": [{"URI": "http://dbpedia.org/resource/Pakistan", "surface form": "Pakistan"}], "relations": [{"URI": "http://dbpedia.org/ontology/language", "surface form": "languages"}, {"URI": "http://dbpedia.org/ontology/language", "surface form": "speak"}]}, {"id": "271", "question": [{"language": "en", "string": "From which region is the Melon de Bourgogne?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Melon_de_Bourgogne dbo:wineRegion ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Washington_(state)"}}, "entities": [{"URI": "http://dbpedia.org/resource/Melon_de_Bourgogne", "surface form": "Melon de Bourgogne"}], "relations": [{"URI": "http://dbpedia.org/ontology/region", "surface form": "region"}]}, {"id": "18", "question": [{"language": "en", "string": "Which countries have more than two official languages?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Country> ; <http://dbpedia.org/ontology/officialLanguage> ?language } GROUP BY ?uri HAVING ( COUNT(?language) > 2 )"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Democratic_Federal_Yugoslavia"}}, "entities": [{"URI": "http://dbpedia.org/resource/Countries_of_the_United_Kingdom", "surface form": "countries"}], "relations": [{"URI": "http://dbpedia.org/property/languages", "surface form": "official languages"}]}, {"id": "58", "question": [{"language": "en", "string": "What is the total amount of men and women serving in the FDNY?"}], "query": {"sparql": "SELECT DISTINCT ?num WHERE { <http://dbpedia.org/resource/New_York_City_Fire_Department> <http://dbpedia.org/property/employees> ?num }"}, "answers": {"num": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "17321"}}, "entities": [{"URI": "http://dbpedia.org/resource/FDNY_Racing", "surface form": "FDNY"}], "relations": [{"URI": "http://dbpedia.org/ontology/populationTotal", "surface form": "total"}, {"URI": "http://dbpedia.org/ontology/authority", "surface form": "men"}, {"URI": "http://dbpedia.org/ontology/person", "surface form": "women"}, {"URI": "http://dbpedia.org/ontology/service", "surface form": "serving"}]}, {"id": "274", "question": [{"language": "en", "string": "Give me English actors starring in Lovesick."}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Lovesick_(1983_film)> dbo:starring ?uri . ?uri dbo:birthPlace ?city . ?city dbo:country <http://dbpedia.org/resource/United_Kingdom> }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dudley_Moore"}}, "entities": [{"URI": "http://dbpedia.org/resource/The_Actors", "surface form": "English actors"}, {"URI": "http://dbpedia.org/resource/Lovesick_(Priscilla_Renea_song)", "surface form": "Lovesick"}], "relations": [{"URI": "http://dbpedia.org/ontology/starring", "surface form": "starring"}]}, {"id": "65", "question": [{"language": "en", "string": "Give me all people that were born in Vienna and died in Berlin."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/birthPlace> <http://dbpedia.org/resource/Vienna> ; <http://dbpedia.org/ontology/deathPlace> <http://dbpedia.org/resource/Berlin> }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hans_Fidesser"}}, "entities": [{"URI": "http://dbpedia.org/resource/Vienna", "surface form": "Vienna"}, {"URI": "http://dbpedia.org/resource/Berlin", "surface form": "Berlin"}], "relations": [{"URI": "http://dbpedia.org/ontology/birthPlace", "surface form": "born"}, {"URI": "http://dbpedia.org/ontology/flag", "surface form": "died"}]}, {"id": "32", "question": [{"language": "en", "string": "Give me all actors starring in Batman Begins."}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/>PREFIX res: <http://dbpedia.org/resource/>PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>SELECT DISTINCT ?uri ?string WHERE {\tres:Batman_Begins dbo:starring ?uri .\tOPTIONAL { ?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gary_Oldman"}, "string": {"type": "literal", "xml:lang": "en", "value": "Gary Oldman"}}, "entities": [{"URI": "http://dbpedia.org/resource/Batman_Begins", "surface form": "Batman Begins"}], "relations": [{"URI": "http://dbpedia.org/ontology/artist", "surface form": "actors"}, {"URI": "http://dbpedia.org/ontology/starring", "surface form": "starring"}]}, {"id": "183", "question": [{"language": "en", "string": "Which countries adopted the Euro?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Country> { ?uri <http://dbpedia.org/ontology/currency> <http://dbpedia.org/resource/Euro> } UNION { ?uri <http://dbpedia.org/property/currencyCode> \"EUR\"@en } }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Andorra"}}, "entities": [{"URI": "http://dbpedia.org/resource/Countries_of_the_United_Kingdom", "surface form": "countries"}, {"URI": "http://dbpedia.org/resource/Euro", "surface form": "Euro"}], "relations": []}, {"id": "80", "question": [{"language": "en", "string": "Give me all breeds of the German Shepherd dog."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/breed> <http://dbpedia.org/resource/German_Shepherd> }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mancs_(dog)"}}, "entities": [{"URI": "http://dbpedia.org/resource/Germany", "surface form": "German Shepherd dog"}, {"URI": "http://dbpedia.org/resource/German_Shepherd", "surface form": "German Shepherd dog"}], "relations": [{"URI": "http://dbpedia.org/ontology/genre", "surface form": "breeds"}, {"URI": "http://dbpedia.org/ontology/country", "surface form": ""}]}, {"id": "315", "question": [{"language": "en", "string": "How many moons does Mars have?"}], "query": {"sparql": "SELECT DISTINCT ?n WHERE { <http://dbpedia.org/resource/Mars> <http://dbpedia.org/property/satellites> ?n }"}, "answers": {"n": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "2"}}, "entities": [{"URI": "http://dbpedia.org/resource/7805_Moons", "surface form": "moons"}, {"URI": "http://dbpedia.org/resource/Mars", "surface form": "Mars"}], "relations": []}, {"id": "4", "question": [{"language": "en", "string": "Which U.S. states possess gold minerals?"}], "query": {"sparql": "PREFIX yago: <http://dbpedia.org/class/yago/> PREFIX dbp: <http://dbpedia.org/property/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type yago:WikicatStatesOfTheUnitedStates ; dbp:mineral ?mineral FILTER regex(?mineral, \"gold\", \"i\") }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alaska"}}, "entities": [{"URI": "http://dbpedia.org/resource/United_States", "surface form": "US"}], "relations": [{"URI": "http://dbpedia.org/ontology/owner", "surface form": "possess"}, {"URI": "http://dbpedia.org/ontology/champion", "surface form": "gold minerals"}]}, {"id": "145", "question": [{"language": "en", "string": "Give me all films produced by Steven Spielberg with a budget of at least $80 million."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film> . ?uri <http://dbpedia.org/ontology/director> <http://dbpedia.org/resource/Steven_Spielberg> . ?uri <http://dbpedia.org/ontology/budget> ?b . FILTER( xsd:double(?b) >= 8.0E7 ) }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/War_of_the_Worlds_(2005_film)"}}, "entities": [{"URI": "http://dbpedia.org/resource/Steven_Spielberg", "surface form": "Steven Spielberg"}, {"URI": "http://dbpedia.org/resource/Boeing_80", "surface form": "$80"}], "relations": [{"URI": "http://dbpedia.org/ontology/production", "surface form": "films"}, {"URI": "http://dbpedia.org/ontology/manufacturer", "surface form": "produced"}, {"URI": "http://dbpedia.org/ontology/budget", "surface form": "budget"}]}, {"id": "198", "question": [{"language": "en", "string": "Which soccer players were born on Malta?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/SoccerPlayer> ; <http://dbpedia.org/ontology/birthPlace> <http://dbpedia.org/resource/Malta> }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Andrei_Agius"}}, "entities": [{"URI": "http://dbpedia.org/resource/American_professional_soccer_players_abroad", "surface form": "soccer players"}, {"URI": "http://dbpedia.org/resource/Malta", "surface form": "Malta"}], "relations": [{"URI": "http://dbpedia.org/ontology/birthPlace", "surface form": "born"}]}, {"id": "204", "question": [{"language": "en", "string": "How many scientists graduated from an Ivy League university?"}], "query": {"sparql": "SELECT (COUNT(DISTINCT ?uri) AS ?c) WHERE { ?uri a <http://dbpedia.org/ontology/Scientist> ; <http://dbpedia.org/ontology/almaMater> ?university . ?university <http://dbpedia.org/ontology/affiliation> <http://dbpedia.org/resource/Ivy_League> ; a <http://dbpedia.org/ontology/University> }"}, "answers": {"c": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}, "entities": [{"URI": "http://dbpedia.org/resource/Scientists_for_Global_Responsibility", "surface form": "scientists"}, {"URI": "http://dbpedia.org/resource/Ivy_League", "surface form": "Ivy League university"}], "relations": [{"URI": "http://dbpedia.org/ontology/effectiveRadiatedPower", "surface form": "graduated"}]}, {"id": "74", "question": [{"language": "en", "string": "How often did Nicole Kidman marry?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/>PREFIX res: <http://dbpedia.org/resource/>SELECT COUNT(DISTINCT ?x) WHERE { res:Nicole_Kidman dbo:spouse ?x .}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "2"}}, "entities": [{"URI": "http://dbpedia.org/resource/Nicole_Kidman", "surface form": "Nicole Kidman"}], "relations": [{"URI": "http://dbpedia.org/ontology/spouse", "surface form": "marry"}]}, {"id": "375", "question": [{"language": "en", "string": "What is the largest state in the United States?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dct: <http://purl.org/dc/terms/> PREFIX dbc: <http://dbpedia.org/resource/Category:> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT ?uri WHERE { ?uri dct:subject dbc:States_of_the_United_States ; rdf:type dbo:AdministrativeRegion ; dbo:areaTotal ?area } ORDER BY DESC(?area) OFFSET 0 LIMIT 1"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alaska"}}, "entities": [{"URI": "http://dbpedia.org/resource/United_States", "surface form": "United States"}], "relations": [{"URI": "http://dbpedia.org/ontology/areaTotal", "surface form": "largest"}]}, {"id": "320", "question": [{"language": "en", "string": "When did the Dodo become extinct?"}], "query": {"sparql": "SELECT DISTINCT ?s WHERE { <http://dbpedia.org/resource/Dodo> <http://dbpedia.org/property/extinct> ?s . } "}, "answers": {"s": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "1662"}}, "entities": [{"URI": "http://dbpedia.org/resource/Dodo", "surface form": "Dodo"}], "relations": [{"URI": "http://dbpedia.org/ontology/abstract", "surface form": "extinct"}]}, {"id": "416", "question": [{"language": "en", "string": "What is the relation between Resource Description Framework and Web Ontology Language?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?rdf_owl WHERE { dbr:Web_Ontology_Language dbo:abstract ?rdf_owl } LIMIT 1"}, "answers": {"rdf_owl": {"type": "literal", "xml:lang": "ca", "value": "OWL \u00e9s l'acr\u00f2nim de l'angl\u00e8s Web Ontology Language, un llenguatge de marcat per publicar i compartir dades usant ontologies en la WWW. OWL t\u00e9 com a objectiu facilitar un model de marcat constru\u00eft sobre RDF i codificat en XML. T\u00e9 com a antecedent DAML+OIL, en els quals es van inspirar els creadors de OWL per crear el llenguatge. Al costat de l'entorn RDF i altres components, aquestes eines fan possible el projecte de web sem\u00e0ntica."}}, "entities": [{"URI": "http://dbpedia.org/resource/Resource_Description_Framework", "surface form": "Resource Description Framework"}, {"URI": "http://dbpedia.org/resource/Web_Ontology_Language", "surface form": "Web Ontology Language"}], "relations": [{"URI": "http://dbpedia.org/ontology/relation", "surface form": "relation"}]}, {"id": "216", "question": [{"language": "en", "string": "In which country is Mecca located?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Mecca dbo:country ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Saudi_Arabia"}}, "entities": [{"URI": "http://dbpedia.org/resource/Mecca", "surface form": "Mecca"}], "relations": [{"URI": "http://dbpedia.org/ontology/country", "surface form": "country"}, {"URI": "http://dbpedia.org/ontology/locatedInArea", "surface form": "located"}]}, {"id": "322", "question": [{"language": "en", "string": "Which rivers flow into the North Sea?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/River> ; <http://dbpedia.org/ontology/riverMouth> <http://dbpedia.org/resource/North_Sea> }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Water_of_Cruden"}}, "entities": [{"URI": "http://dbpedia.org/resource/North_Sea", "surface form": "North Sea"}], "relations": [{"URI": "http://dbpedia.org/ontology/operator", "surface form": "rivers"}, {"URI": "http://dbpedia.org/property/float", "surface form": "flow"}]}, {"id": "211", "question": [{"language": "en", "string": "How many airlines are members of the Star Alliance?"}], "query": {"sparql": "SELECT (COUNT(DISTINCT ?uri) AS ?c) WHERE { ?uri a <http://dbpedia.org/ontology/Airline> ; <http://dbpedia.org/ontology/alliance> <http://dbpedia.org/resource/Star_Alliance> }"}, "answers": {"c": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "107"}}, "entities": [{"URI": "http://dbpedia.org/resource/Star_Alliance", "surface form": "Star Alliance"}], "relations": [{"URI": "http://dbpedia.org/ontology/icaoAirlineCode", "surface form": "airlines"}, {"URI": "http://dbpedia.org/property/members", "surface form": "members"}]}, {"id": "181", "question": [{"language": "en", "string": "Give me all Danish films."}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Film ; dbo:country res:Denmark }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/De_Udstillede"}}, "entities": [{"URI": "http://dbpedia.org/resource/Denmark", "surface form": "Danish films"}, {"URI": "http://dbpedia.org/resource/List_of_Danish_films", "surface form": "Danish films"}], "relations": [{"URI": "http://dbpedia.org/ontology/country", "surface form": ""}]}, {"id": "255", "question": [{"language": "en", "string": "How many airlines are there?"}], "query": {"sparql": "SELECT (COUNT(DISTINCT ?uri) AS ?c) WHERE { ?uri a <http://dbpedia.org/ontology/Airline> }"}, "answers": {"c": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "4838"}}, "entities": [], "relations": [{"URI": "http://dbpedia.org/ontology/icaoAirlineCode", "surface form": "airlines"}]}, {"id": "264", "question": [{"language": "en", "string": "What is the total population of Melbourne, Florida?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> SELECT ?uri WHERE { <http://dbpedia.org/resource/Melbourne,_Florida> dbo:populationTotal ?uri }"}, "answers": {"uri": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#nonNegativeInteger", "value": "84678"}}, "entities": [{"URI": "http://dbpedia.org/resource/Melbourne,_Florida", "surface form": "Melbourne, Florida"}], "relations": [{"URI": "http://dbpedia.org/ontology/populationTotal", "surface form": "total population"}]}, {"id": "334", "question": [{"language": "en", "string": "Show me hiking trails in the Grand Canyon where there's no danger of flash floods."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/trailheads> <http://dbpedia.org/resource/Grand_Canyon> FILTER NOT EXISTS { ?uri <http://dbpedia.org/property/hazards> <http://dbpedia.org/resource/Flash_flood> } }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bright_Angel_Trail"}}, "entities": [{"URI": "http://dbpedia.org/resource/Hiking", "surface form": "hiking trails"}, {"URI": "http://dbpedia.org/resource/Grand_Canyon", "surface form": "Grand Canyon"}], "relations": [{"URI": "http://dbpedia.org/ontology/show", "surface form": "show"}, {"URI": "http://dbpedia.org/ontology/leader", "surface form": "danger"}, {"URI": "http://dbpedia.org/ontology/band", "surface form": "flash floods"}]}, {"id": "299", "question": [{"language": "en", "string": "Who composed the soundtrack for Cameron's Titanic?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Titanic_(1997_film)> dbo:musicComposer ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/James_Horner"}}, "entities": [{"URI": "http://dbpedia.org/resource/Soundtrack_for_a_Revolution", "surface form": "soundtrack"}, {"URI": "http://dbpedia.org/resource/Cameron", "surface form": "Cameron"}, {"URI": "http://dbpedia.org/resource/Titanic_(1953_film)", "surface form": " Titanic"}], "relations": [{"URI": "http://dbpedia.org/ontology/musicComposer", "surface form": "composed"}]}, {"id": "391", "question": [{"language": "en", "string": "Who writes the Farmers' Almanac?"}], "query": {"sparql": "PREFIX dbp: <http://dbpedia.org/property/> SELECT ?uri WHERE { <http://dbpedia.org/resource/Farmers'_Almanac> dbp:editor ?uri }"}, "answers": {"uri": {"type": "literal", "xml:lang": "en", "value": "Peter Geiger"}}, "entities": [{"URI": "http://dbpedia.org/resource/Farmers_Creek_Township,_Jackson_County,_Iowa", "surface form": "Farmers"}, {"URI": "http://dbpedia.org/resource/Project_Almanac", "surface form": " Almanac"}], "relations": [{"URI": "http://dbpedia.org/property/writer", "surface form": "writes"}]}, {"id": "21", "question": [{"language": "en", "string": "What are the official languages of the Philippines?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Philippines dbo:officialLanguage ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/English_language"}}, "entities": [{"URI": "http://dbpedia.org/resource/Philippines", "surface form": "Philippines"}], "relations": [{"URI": "http://dbpedia.org/ontology/officialLanguage", "surface form": "official languages"}]}, {"id": "299", "question": [{"language": "en", "string": "Who composed the soundtrack for Cameron's Titanic?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Titanic_(1997_film)> dbo:musicComposer ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/James_Horner"}}, "entities": [{"URI": "http://dbpedia.org/resource/Soundtrack_for_a_Revolution", "surface form": "soundtrack"}, {"URI": "http://dbpedia.org/resource/Cameron", "surface form": "Cameron"}, {"URI": "http://dbpedia.org/resource/Titanic_(1953_film)", "surface form": " Titanic"}], "relations": [{"URI": "http://dbpedia.org/ontology/musicComposer", "surface form": "composed"}]}, {"id": "228", "question": [{"language": "en", "string": "Which volcanos in Japan erupted since 2000?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Volcano> ; <http://dbpedia.org/ontology/locatedInArea> <http://dbpedia.org/resource/Japan> ; <http://dbpedia.org/ontology/eruptionYear> ?date FILTER ( year(?date) >= 2000 ) }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mount_I\u014d_(I\u014djima)"}}, "entities": [{"URI": "http://dbpedia.org/resource/Billings_Volcanos_(basketball)", "surface form": "volcanos"}, {"URI": "http://dbpedia.org/resource/Japan", "surface form": "Japan"}, {"URI": "http://dbpedia.org/resource/2000", "surface form": "2000"}], "relations": [{"URI": "http://dbpedia.org/property/erected", "surface form": "erupted"}]}, {"id": "243", "question": [{"language": "en", "string": "How many museums does Paris have?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Museum> ; <http://dbpedia.org/ontology/location> <http://dbpedia.org/resource/Paris> }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gallery_of_Paleontology_and_Comparative_Anatomy"}}, "entities": [{"URI": "http://dbpedia.org/resource/Museums_in_Aalborg", "surface form": "museums"}, {"URI": "http://dbpedia.org/resource/Paris", "surface form": "Paris"}], "relations": []}, {"id": "401", "question": [{"language": "en", "string": "What are the top selling luxury vehicle brands in Germany?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dct: <http://purl.org/dc/terms/> PREFIX dbc: <http://dbpedia.org/resource/Category:> SELECT ?company WHERE { ?company dct:subject dbc:Car_manufacturers_of_Germany ; dbo:equity ?equity ; dbo:netIncome ?netIncome ; dbo:production ?production ; dbo:revenue ?revenue } ORDER BY DESC(?equity)"}, "answers": {"company": {"type": "uri", "value": "http://dbpedia.org/resource/Mercedes-Benz_Group"}}, "entities": [{"URI": "http://dbpedia.org/resource/Luxury_vehicle", "surface form": "luxury vehicle brands"}, {"URI": "http://dbpedia.org/resource/Germany", "surface form": "Germany"}], "relations": [{"URI": "http://dbpedia.org/ontology/promotion", "surface form": "selling"}]}, {"id": "384", "question": [{"language": "en", "string": "Which city has the oldest running metro?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT ?loc WHERE { ?uri dbo:type dbr:Rapid_transit ; dbo:openingYear ?date ; dbo:location ?loc . ?loc rdf:type dbo:City } ORDER BY ASC(?date) LIMIT 1"}, "answers": {"loc": {"type": "uri", "value": "http://dbpedia.org/resource/Klang_Valley"}}, "entities": [], "relations": [{"URI": "http://dbpedia.org/ontology/city", "surface form": "city"}, {"URI": "http://dbpedia.org/ontology/government", "surface form": "running"}, {"URI": "http://dbpedia.org/ontology/populationMetro", "surface form": "metro"}]}, {"id": "257", "question": [{"language": "en", "string": "How much carbs does peanut butter have?"}], "query": {"sparql": "SELECT DISTINCT ?carbs WHERE { <http://dbpedia.org/resource/Peanut_butter> <http://dbpedia.org/property/carbs> ?carbs }"}, "answers": {"carbs": {"type": "typed-literal", "datatype": "http://dbpedia.org/datatype/gram", "value": "22.3"}}, "entities": [{"URI": "http://dbpedia.org/resource/Carby", "surface form": "carbs"}, {"URI": "http://dbpedia.org/resource/Peanut_butter", "surface form": "peanut butter"}], "relations": []}, {"id": "345", "question": [{"language": "en", "string": "Who is the coach of Ankara's ice hockey team?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { ?x dbo:city res:Ankara ; dbo:league res:Turkish_Ice_Hockey_First_League ; dbo:coach ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/\u0130brahim_O\u011fuz"}}, "entities": [{"URI": "http://dbpedia.org/resource/Ankara", "surface form": "Ankara"}, {"URI": "http://dbpedia.org/resource/Greece_national_ice_hockey_team", "surface form": " ice hockey team"}], "relations": [{"URI": "http://dbpedia.org/ontology/coach", "surface form": "coach"}]}, {"id": "152", "question": [{"language": "en", "string": "Give me all actors who were born in Paris after 1950."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Actor> . ?uri <http://dbpedia.org/ontology/birthPlace> <http://dbpedia.org/resource/Paris> . ?uri <http://dbpedia.org/ontology/birthDate> ?date . FILTER ( ?date >= xsd:dateTime('1950-12-31T00:00:00Z')) }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fran\u00e7ois_Hadji-Lazaro"}}, "entities": [{"URI": "http://dbpedia.org/resource/Paris", "surface form": "Paris"}, {"URI": "http://dbpedia.org/resource/1950", "surface form": "1950"}], "relations": [{"URI": "http://dbpedia.org/ontology/artist", "surface form": "actors"}, {"URI": "http://dbpedia.org/ontology/birthPlace", "surface form": "born"}]}, {"id": "87", "question": [{"language": "en", "string": "How many space missions have there been?"}], "query": {"sparql": " PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT COUNT(DISTINCT ?uri) WHERE { ?uri rdf:type dbo:SpaceMission . } "}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "3433"}}, "entities": [], "relations": [{"URI": "http://dbpedia.org/ontology/missions", "surface form": "space missions"}]}, {"id": "297", "question": [{"language": "en", "string": "Who created Family Guy?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Family_Guy dbo:creator ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Seth_MacFarlane"}}, "entities": [{"URI": "http://dbpedia.org/resource/Family_Guy", "surface form": "Family Guy"}], "relations": [{"URI": "http://dbpedia.org/ontology/creator", "surface form": "created"}]}, {"id": "423", "question": [{"language": "en", "string": "What is the largest city in america?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?lcity WHERE { dbr:United_States dbo:largestCity ?lcity }"}, "answers": {"lcity": {"type": "uri", "value": "http://dbpedia.org/resource/New_York_City"}}, "entities": [], "relations": [{"URI": "http://dbpedia.org/ontology/largestCity", "surface form": "largest city"}, {"URI": "http://dbpedia.org/ontology/province", "surface form": "america"}]}, {"id": "272", "question": [{"language": "en", "string": "Who was influenced by Socrates?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/influencedBy> <http://dbpedia.org/resource/Socrates> }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Arcesilaus"}}, "entities": [{"URI": "http://dbpedia.org/resource/Socrates", "surface form": "Socrates"}], "relations": [{"URI": "http://dbpedia.org/ontology/influenced", "surface form": "influenced"}]}, {"id": "133", "question": [{"language": "en", "string": "Which poet wrote the most books?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/occupation> <http://dbpedia.org/resource/Poet> . ?x <http://dbpedia.org/ontology/author> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Book> . } ORDER BY DESC(COUNT(?x)) OFFSET 0 LIMIT 1"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jules_Verne"}}, "entities": [], "relations": [{"URI": "http://dbpedia.org/ontology/author", "surface form": "poet"}, {"URI": "http://dbpedia.org/ontology/composer", "surface form": "wrote"}, {"URI": "http://dbpedia.org/ontology/volume", "surface form": "books"}]}, {"id": "51", "question": [{"language": "en", "string": "Which organizations were founded in 1950?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbp: <http://dbpedia.org/property/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Organisation { ?uri dbo:formationYear ?date } UNION { ?uri dbo:foundingYear ?date } UNION { ?uri dbp:foundation ?date } UNION { ?uri dbp:formation ?date } FILTER regex(?date, \"^1950\") }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Danish_Defence_Intelligence_Service"}}, "entities": [{"URI": "http://dbpedia.org/resource/1950", "surface form": "1950"}], "relations": [{"URI": "http://dbpedia.org/ontology/company", "surface form": "organizations"}, {"URI": "http://dbpedia.org/ontology/author", "surface form": "founded"}]}, {"id": "372", "question": [{"language": "en", "string": "How many states are in Mexico?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT (COUNT(?uri) AS ?count) WHERE { ?uri dbo:type dbr:States_of_Mexico }"}, "answers": {"count": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}, "entities": [{"URI": "http://dbpedia.org/resource/Mexico", "surface form": "Mexico"}], "relations": []}, {"id": "359", "question": [{"language": "en", "string": "How many gold medals did Michael Phelps win at the 2008 Olympics?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> SELECT Count(?sub) as ?c WHERE { ?sub dbo:goldMedalist dbr:Michael_Phelps . filter (contains (str(?sub), \"2008\") && contains (str(?sub), \"Olympics\")) }"}, "answers": {"c": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "8"}}, "entities": [{"URI": "http://dbpedia.org/resource/Michael_Phelps", "surface form": "Michael Phelps"}, {"URI": "http://dbpedia.org/resource/2008_Summer_Olympics", "surface form": "2008 Olympics"}], "relations": [{"URI": "http://dbpedia.org/ontology/goldMedalist", "surface form": "gold medals"}, {"URI": "http://dbpedia.org/ontology/award", "surface form": "win"}]}, {"id": "235", "question": [{"language": "en", "string": "Who is the daughter of Robert Kennedy married to?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Robert_F._Kennedy> <http://dbpedia.org/ontology/child> ?child . ?child <http://dbpedia.org/ontology/spouse> ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Andrew_Cuomo"}}, "entities": [{"URI": "http://dbpedia.org/resource/Robert_F._Kennedy", "surface form": "Robert Kennedy"}], "relations": [{"URI": "http://dbpedia.org/ontology/child", "surface form": "daughter"}, {"URI": "http://dbpedia.org/property/spouse", "surface form": "married"}]}, {"id": "290", "question": [{"language": "en", "string": "Where does Piccadilly start?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/routeStart> <http://dbpedia.org/resource/Piccadilly> }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dover_Street"}}, "entities": [{"URI": "http://dbpedia.org/resource/Piccadilly", "surface form": "Piccadilly"}], "relations": [{"URI": "http://dbpedia.org/ontology/routeStart", "surface form": "start"}]}, {"id": "411", "question": [{"language": "en", "string": "Who is the novelist of the work a song of ice and fire?"}], "query": {"sparql": "PREFIX dbr: <http://dbpedia.org/resource/> PREFIX dbp: <http://dbpedia.org/property/> SELECT ?Novelist WHERE { dbr:A_Song_of_Ice_and_Fire dbp:author ?Novelist }"}, "answers": {"Novelist": {"type": "uri", "value": "http://dbpedia.org/resource/George_R._R._Martin"}}, "entities": [], "relations": [{"URI": "http://dbpedia.org/ontology/author", "surface form": "novelist"}, {"URI": "http://dbpedia.org/ontology/service", "surface form": "work"}, {"URI": "http://dbpedia.org/ontology/anthem", "surface form": "song"}, {"URI": "http://dbpedia.org/ontology/frozen", "surface form": "ice"}]}, {"id": "271", "question": [{"language": "en", "string": "From which region is the Melon de Bourgogne?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Melon_de_Bourgogne dbo:wineRegion ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Washington_(state)"}}, "entities": [{"URI": "http://dbpedia.org/resource/Melon_de_Bourgogne", "surface form": "Melon de Bourgogne"}], "relations": [{"URI": "http://dbpedia.org/ontology/region", "surface form": "region"}]}, {"id": "2", "question": [{"language": "en", "string": "Which river does the Brooklyn Bridge cross?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Brooklyn_Bridge dbo:crosses ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/East_River"}}, "entities": [{"URI": "http://dbpedia.org/resource/Brooklyn_Bridge", "surface form": "Brooklyn Bridge"}], "relations": [{"URI": "http://dbpedia.org/ontology/river", "surface form": "river"}, {"URI": "http://dbpedia.org/ontology/crosses", "surface form": "cross"}]}, {"id": "174", "question": [{"language": "en", "string": "How many languages are spoken in Turkmenistan?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT (COUNT(DISTINCT ?x) AS ?c) WHERE { res:Turkmenistan dbo:language ?x }"}, "answers": {"c": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}, "entities": [{"URI": "http://dbpedia.org/resource/Turkmenistan", "surface form": "Turkmenistan"}], "relations": [{"URI": "http://dbpedia.org/ontology/language", "surface form": "languages"}, {"URI": "http://dbpedia.org/ontology/spokenIn", "surface form": "spoken"}]}, {"id": "416", "question": [{"language": "en", "string": "What is the relation between Resource Description Framework and Web Ontology Language?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?rdf_owl WHERE { dbr:Web_Ontology_Language dbo:abstract ?rdf_owl } LIMIT 1"}, "answers": {"rdf_owl": {"type": "literal", "xml:lang": "ca", "value": "OWL \u00e9s l'acr\u00f2nim de l'angl\u00e8s Web Ontology Language, un llenguatge de marcat per publicar i compartir dades usant ontologies en la WWW. OWL t\u00e9 com a objectiu facilitar un model de marcat constru\u00eft sobre RDF i codificat en XML. T\u00e9 com a antecedent DAML+OIL, en els quals es van inspirar els creadors de OWL per crear el llenguatge. Al costat de l'entorn RDF i altres components, aquestes eines fan possible el projecte de web sem\u00e0ntica."}}, "entities": [{"URI": "http://dbpedia.org/resource/Resource_Description_Framework", "surface form": "Resource Description Framework"}, {"URI": "http://dbpedia.org/resource/Web_Ontology_Language", "surface form": "Web Ontology Language"}], "relations": [{"URI": "http://dbpedia.org/ontology/relation", "surface form": "relation"}]}, {"id": "177", "question": [{"language": "en", "string": "How often did Jane Fonda marry?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT (COUNT(DISTINCT ?uri) AS ?c) WHERE { res:Jane_Fonda dbo:spouse ?uri }"}, "answers": {"c": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "3"}}, "entities": [{"URI": "http://dbpedia.org/resource/Jane_Fonda", "surface form": "Jane Fonda"}], "relations": [{"URI": "http://dbpedia.org/ontology/spouse", "surface form": "marry"}]}, {"id": "232", "question": [{"language": "en", "string": "Which movies did Kurosawa direct?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT ?uri WHERE { ?uri rdf:type dbo:Film ; dbo:director res:Akira_Kurosawa }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dersu_Uzala_(1975_film)"}}, "entities": [{"URI": "http://dbpedia.org/resource/Akira_Kurosawa", "surface form": "Kurosawa"}], "relations": [{"URI": "http://dbpedia.org/ontology/film", "surface form": "movies"}, {"URI": "http://dbpedia.org/ontology/director", "surface form": "direct"}]}, {"id": "376", "question": [{"language": "en", "string": "What is the longest river in the world?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT ?uri WHERE { ?uri rdf:type dbo:BodyOfWater ; dbo:length ?length } ORDER BY DESC(?length) LIMIT 1"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Indian_Ocean"}}, "entities": [], "relations": [{"URI": "http://dbpedia.org/ontology/river", "surface form": "river"}]}, {"id": "311", "question": [{"language": "en", "string": "Who is the mayor of Paris?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Paris dbo:mayor ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Anne_Hidalgo"}}, "entities": [{"URI": "http://dbpedia.org/resource/Paris", "surface form": "Paris"}], "relations": [{"URI": "http://dbpedia.org/ontology/mayor", "surface form": "mayor"}]}, {"id": "225", "question": [{"language": "en", "string": "List the seven kings of Rome."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/title> <http://dbpedia.org/resource/King_of_Rome> }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ancus_Marcius"}}, "entities": [{"URI": "http://dbpedia.org/resource/Rome", "surface form": "Rome"}], "relations": [{"URI": "http://dbpedia.org/ontology/leader", "surface form": "kings"}]}, {"id": "128", "question": [{"language": "en", "string": "In which city did John F. Kennedy die?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { res:John_F._Kennedy dbo:deathPlace ?uri . ?uri rdf:type dbo:City }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dallas"}}, "entities": [{"URI": "http://dbpedia.org/resource/John_F._Kennedy", "surface form": "John F. Kennedy"}], "relations": [{"URI": "http://dbpedia.org/ontology/deathPlace", "surface form": "die"}]}, {"id": "231", "question": [{"language": "en", "string": "Give me all Danish movies."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Film> ; <http://dbpedia.org/ontology/country> <http://dbpedia.org/resource/Denmark> }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/De_Udstillede"}}, "entities": [{"URI": "http://dbpedia.org/resource/Denmark", "surface form": "Danish movies"}, {"URI": "http://dbpedia.org/resource/The_Movies_(film)", "surface form": "Danish movies"}], "relations": [{"URI": "http://dbpedia.org/ontology/country", "surface form": ""}]}, {"id": "422", "question": [{"language": "en", "string": "Which beer brewing comapnies are located in North-Rhine Westphalia?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dct: <http://purl.org/dc/terms/> PREFIX dbc: <http://dbpedia.org/resource/Category:> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT ?company WHERE { ?company dct:subject dbc:Companies_based_in_North_Rhine-Westphalia ; rdf:type dbo:Brewery }"}, "answers": {"company": {"type": "uri", "value": "http://dbpedia.org/resource/Veltins_Brewery"}}, "entities": [{"URI": "http://dbpedia.org/resource/Museum_of_Beer_and_Brewing", "surface form": "beer brewing comapnies"}, {"URI": "http://dbpedia.org/resource/North_Rhine-Westphalia", "surface form": "North-Rhine Westphalia"}], "relations": [{"URI": "http://dbpedia.org/property/stand", "surface form": "located"}]}, {"id": "41", "question": [{"language": "en", "string": "Which music albums contain the song Last Christmas?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?single <http://dbpedia.org/ontology/album> ?uri ; <http://www.w3.org/2000/01/rdf-schema#label> \"Last Christmas\"@en }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Music_from_the_Edge_of_Heaven"}}, "entities": [{"URI": "http://dbpedia.org/resource/The_Last_Song_(film)", "surface form": "song Last Christmas"}], "relations": [{"URI": "http://dbpedia.org/ontology/musicComposer", "surface form": "music albums"}]}, {"id": "205", "question": [{"language": "en", "string": "Which types of grapes grow in Oregon?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Oregon_wine dbo:growingGrape ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dolcetto"}}, "entities": [{"URI": "http://dbpedia.org/resource/Oregon", "surface form": "Oregon"}], "relations": [{"URI": "http://dbpedia.org/property/type", "surface form": "types"}, {"URI": "http://dbpedia.org/property/grass", "surface form": "grapes"}, {"URI": "http://dbpedia.org/property/flag", "surface form": "grow"}]}, {"id": "165", "question": [{"language": "en", "string": "Give me the grandchildren of Bruce Lee."}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Bruce_Lee dbo:child ?child . ?child <http://dbpedia.org/property/children> ?uri }"}, "answers": {"uri": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "1"}}, "entities": [{"URI": "http://dbpedia.org/resource/Bruce_Lee", "surface form": "Bruce Lee"}], "relations": [{"URI": "http://dbpedia.org/ontology/child", "surface form": "grandchildren"}]}, {"id": "383", "question": [{"language": "en", "string": "Which American presidents were in office during the Vietnam War?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX dct: <http://purl.org/dc/terms/> PREFIX dbc: <http://dbpedia.org/resource/Category:> SELECT ?uri WHERE { ?uri dct:subject dbc:Presidents_of_the_United_States . res:Vietnam_War dbo:commander ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Richard_Nixon"}}, "entities": [{"URI": "http://dbpedia.org/resource/Organization_of_American_States", "surface form": "American presidents"}, {"URI": "http://dbpedia.org/resource/Abimael_Guzm\u00e1n", "surface form": "American presidents"}, {"URI": "http://dbpedia.org/resource/Vietnam_War", "surface form": "Vietnam War"}], "relations": [{"URI": "http://dbpedia.org/ontology/office", "surface form": "office"}, {"URI": "http://dbpedia.org/ontology/country", "surface form": ""}]}, {"id": "332", "question": [{"language": "en", "string": "Which companies produce hovercrafts?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Company ; dbo:product res:Hovercraft }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/HJ_Shipbuilding_&_Construction"}}, "entities": [{"URI": "http://dbpedia.org/resource/Companies_listed_on_the_New_York_Stock_Exchange_(J)", "surface form": "companies"}, {"URI": "http://dbpedia.org/resource/Hovercraft", "surface form": "Hovercrafts"}], "relations": [{"URI": "http://dbpedia.org/ontology/producer", "surface form": "produce"}]}, {"id": "37", "question": [{"language": "en", "string": "Which caves have more than 3 entrances?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Cave> ; <http://dbpedia.org/property/entranceCount> ?entrance FILTER ( ?entrance > 3 ) }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Amat\u00e9rsk\u00e1_Cave"}}, "entities": [{"URI": "http://dbpedia.org/resource/Caves_of_Aggtelek_Karst_and_Slovak_Karst", "surface form": "caves"}], "relations": [{"URI": "http://dbpedia.org/ontology/iso6393Code", "surface form": "3 entrances"}]}, {"id": "213", "question": [{"language": "en", "string": "Which musician wrote the most books?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/occupation> <http://dbpedia.org/resource/Musician> . ?x <http://dbpedia.org/ontology/author> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Book> . } ORDER BY DESC(COUNT(?x)) OFFSET 0 LIMIT 1"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Julius_Lester"}}, "entities": [], "relations": [{"URI": "http://dbpedia.org/ontology/show", "surface form": "musician"}, {"URI": "http://dbpedia.org/ontology/composer", "surface form": "wrote"}, {"URI": "http://dbpedia.org/ontology/volume", "surface form": "books"}]}, {"id": "239", "question": [{"language": "en", "string": "What does IYCM stand for?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { ?uri dbo:abbreviation \"IYCM\" }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Youth_Climate_Movement"}}, "entities": [], "relations": [{"URI": "http://dbpedia.org/ontology/position", "surface form": "stand"}]}, {"id": "37", "question": [{"language": "en", "string": "Which caves have more than 3 entrances?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Cave> ; <http://dbpedia.org/property/entranceCount> ?entrance FILTER ( ?entrance > 3 ) }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Amat\u00e9rsk\u00e1_Cave"}}, "entities": [{"URI": "http://dbpedia.org/resource/Caves_of_Aggtelek_Karst_and_Slovak_Karst", "surface form": "caves"}], "relations": [{"URI": "http://dbpedia.org/ontology/iso6393Code", "surface form": "3 entrances"}]}, {"id": "234", "question": [{"language": "en", "string": "Which awards did Douglas Hofstadter win?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Douglas_Hofstadter dbo:award ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/American_Academy_of_Arts_and_Sciences"}}, "entities": [{"URI": "http://dbpedia.org/resource/Douglas_Hofstadter", "surface form": "Douglas Hofstadter"}], "relations": [{"URI": "http://dbpedia.org/ontology/award", "surface form": "awards"}, {"URI": "http://dbpedia.org/ontology/award", "surface form": "win"}]}, {"id": "2", "question": [{"language": "en", "string": "Which river does the Brooklyn Bridge cross?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Brooklyn_Bridge dbo:crosses ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/East_River"}}, "entities": [{"URI": "http://dbpedia.org/resource/Brooklyn_Bridge", "surface form": "Brooklyn Bridge"}], "relations": [{"URI": "http://dbpedia.org/ontology/river", "surface form": "river"}, {"URI": "http://dbpedia.org/ontology/crosses", "surface form": "cross"}]}, {"id": "161", "question": [{"language": "en", "string": "Which pope succeeded John Paul II?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Pope_John_Paul_II> <http://dbpedia.org/property/successor> ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pope_Benedict_XVI"}}, "entities": [{"URI": "http://dbpedia.org/resource/Ii", "surface form": "II"}, {"URI": "http://dbpedia.org/resource/John_Paul", "surface form": "John Paul"}], "relations": [{"URI": "http://dbpedia.org/property/popeElected", "surface form": "pope"}, {"URI": "http://dbpedia.org/ontology/successor", "surface form": "succeeded"}]}, {"id": "94", "question": [{"language": "en", "string": "List the children of Margaret Thatcher."}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Margaret_Thatcher dbo:child ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mark_Thatcher"}}, "entities": [{"URI": "http://dbpedia.org/resource/Margaret_Thatcher", "surface form": "Margaret Thatcher"}], "relations": [{"URI": "http://dbpedia.org/ontology/child", "surface form": "children"}]}, {"id": "9", "question": [{"language": "en", "string": "Which television shows were created by Walt Disney?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:TelevisionShow ; dbo:creator res:Walt_Disney }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Disney_anthology_television_series"}}, "entities": [{"URI": "http://dbpedia.org/resource/Walt_Disney", "surface form": "Walt Disney"}], "relations": [{"URI": "http://dbpedia.org/ontology/televisionSeries", "surface form": "television shows"}, {"URI": "http://dbpedia.org/ontology/creator", "surface form": "created"}]}, {"id": "181", "question": [{"language": "en", "string": "Give me all Danish films."}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Film ; dbo:country res:Denmark }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/De_Udstillede"}}, "entities": [{"URI": "http://dbpedia.org/resource/Denmark", "surface form": "Danish films"}, {"URI": "http://dbpedia.org/resource/List_of_Danish_films", "surface form": "Danish films"}], "relations": [{"URI": "http://dbpedia.org/ontology/country", "surface form": ""}]}, {"id": "362", "question": [{"language": "en", "string": "What does ICRO stand for?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/abbreviation> \"ICRO\" }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Irish_Cave_Rescue_Organisation"}}, "entities": [{"URI": "http://dbpedia.org/resource/Icrossing_Inc", "surface form": "ICRO"}], "relations": [{"URI": "http://dbpedia.org/ontology/position", "surface form": "stand"}]}, {"id": "3", "question": [{"language": "en", "string": "How many monarchical countries are there in Europe?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/>PREFIX yago: <http://dbpedia.org/class/yago/>PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>SELECT COUNT(DISTINCT ?uri) WHERE {\t?uri rdf:type yago:EuropeanCountries . ?uri dbo:governmentType ?govern . FILTER regex(?govern,'monarchy') .}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}, "entities": [{"URI": "http://dbpedia.org/resource/Monarchical_order", "surface form": "monarchical countries"}, {"URI": "http://dbpedia.org/resource/Europe", "surface form": "Europe"}], "relations": []}, {"id": "350", "question": [{"language": "en", "string": "What is Batman's real name?"}], "query": {"sparql": "SELECT DISTINCT ?label WHERE { <http://dbpedia.org/resource/Batman> <http://xmlns.com/foaf/0.1/name> ?label FILTER ( str(?label) != \"Batman\" ) }"}, "answers": {"label": {"type": "literal", "xml:lang": "en", "value": "Bruce Wayne"}}, "entities": [{"URI": "http://dbpedia.org/resource/Batman", "surface form": "Batman"}, {"URI": "http://dbpedia.org/resource/Real-name_system", "surface form": " real name"}], "relations": []}, {"id": "375", "question": [{"language": "en", "string": "What is the largest state in the United States?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dct: <http://purl.org/dc/terms/> PREFIX dbc: <http://dbpedia.org/resource/Category:> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT ?uri WHERE { ?uri dct:subject dbc:States_of_the_United_States ; rdf:type dbo:AdministrativeRegion ; dbo:areaTotal ?area } ORDER BY DESC(?area) OFFSET 0 LIMIT 1"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alaska"}}, "entities": [{"URI": "http://dbpedia.org/resource/United_States", "surface form": "United States"}], "relations": [{"URI": "http://dbpedia.org/ontology/areaTotal", "surface form": "largest"}]}, {"id": "255", "question": [{"language": "en", "string": "How many airlines are there?"}], "query": {"sparql": "SELECT (COUNT(DISTINCT ?uri) AS ?c) WHERE { ?uri a <http://dbpedia.org/ontology/Airline> }"}, "answers": {"c": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "4838"}}, "entities": [], "relations": [{"URI": "http://dbpedia.org/ontology/icaoAirlineCode", "surface form": "airlines"}]}, {"id": "64", "question": [{"language": "en", "string": "Give me all cars that are produced in Germany."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Automobile> { ?uri <http://dbpedia.org/ontology/assembly> <http://dbpedia.org/resource/Germany> } UNION { ?uri <http://dbpedia.org/property/assembly> <http://dbpedia.org/resource/Germany> } UNION { { ?uri <http://dbpedia.org/ontology/manufacturer> ?x } UNION { ?uri <http://dbpedia.org/property/manufacturer> ?x } { ?x <http://dbpedia.org/ontology/locationCountry> <http://dbpedia.org/resource/Germany> } UNION { ?x <http://dbpedia.org/ontology/location> <http://dbpedia.org/resource/Germany> } } }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Wanderer_W24"}}, "entities": [{"URI": "http://dbpedia.org/resource/Germany", "surface form": "Germany"}], "relations": [{"URI": "http://dbpedia.org/ontology/management", "surface form": "cars"}, {"URI": "http://dbpedia.org/ontology/author", "surface form": "produced"}]}, {"id": "286", "question": [{"language": "en", "string": "What is the atmosphere of the Moon composed of?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Moon> <http://dbpedia.org/property/atmosphereComposition> ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Argon"}}, "entities": [{"URI": "http://dbpedia.org/resource/Moon", "surface form": "Moon"}], "relations": [{"URI": "http://dbpedia.org/property/background", "surface form": "atmosphere"}, {"URI": "http://dbpedia.org/ontology/musicComposer", "surface form": "composed"}]}, {"id": "96", "question": [{"language": "en", "string": "Give me all books by William Goldman with more than 300 pages."}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Book ; dbo:author res:William_Goldman ; dbo:numberOfPages ?x FILTER ( ?x > 300 ) }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Boys_and_Girls_Together"}}, "entities": [{"URI": "http://dbpedia.org/resource/William_Goldman", "surface form": "William Goldman"}, {"URI": "http://dbpedia.org/resource/300", "surface form": "300"}], "relations": [{"URI": "http://dbpedia.org/ontology/volume", "surface form": "books"}]}, {"id": "439", "question": [{"language": "en", "string": "Which beer brewing companies are located in North-Rhine Westphalia?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dct: <http://purl.org/dc/terms/> PREFIX dbc: <http://dbpedia.org/resource/Category:> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT ?company WHERE { ?company dct:subject dbc:Companies_based_in_North_Rhine-Westphalia ; rdf:type dbo:Brewery }"}, "answers": {"company": {"type": "uri", "value": "http://dbpedia.org/resource/Veltins_Brewery"}}, "entities": [{"URI": "http://dbpedia.org/resource/Museum_of_Beer_and_Brewing", "surface form": "beer brewing companies"}, {"URI": "http://dbpedia.org/resource/North_Rhine-Westphalia", "surface form": "North-Rhine Westphalia"}], "relations": [{"URI": "http://dbpedia.org/property/stand", "surface form": "located"}]}, {"id": "391", "question": [{"language": "en", "string": "Who writes the Farmers' Almanac?"}], "query": {"sparql": "PREFIX dbp: <http://dbpedia.org/property/> SELECT ?uri WHERE { <http://dbpedia.org/resource/Farmers'_Almanac> dbp:editor ?uri }"}, "answers": {"uri": {"type": "literal", "xml:lang": "en", "value": "Peter Geiger"}}, "entities": [{"URI": "http://dbpedia.org/resource/Farmers_Creek_Township,_Jackson_County,_Iowa", "surface form": "Farmers"}, {"URI": "http://dbpedia.org/resource/Project_Almanac", "surface form": " Almanac"}], "relations": [{"URI": "http://dbpedia.org/property/writer", "surface form": "writes"}]}, {"id": "24", "question": [{"language": "en", "string": "What is the profession of Frank Herbert?"}], "query": {"sparql": "PREFIX dbpedia2: <http://dbpedia.org/property/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?string WHERE { res:Frank_Herbert dbpedia2:occupation ?string }"}, "answers": {"string": {"type": "literal", "xml:lang": "en", "value": "Novelist"}}, "entities": [{"URI": "http://dbpedia.org/resource/Frank_Herbert", "surface form": "Frank Herbert"}], "relations": [{"URI": "http://dbpedia.org/ontology/profession", "surface form": "profession"}]}, {"id": "429", "question": [{"language": "en", "string": "What is the last work of Dan Brown?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbp: <http://dbpedia.org/property/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?book WHERE { { ?book dbo:author dbr:Dan_Brown . ?book dbp:releaseDate ?date } UNION { ?book dbo:author dbr:Dan_Brown . ?book dbo:publicationDate ?date} } ORDER BY DESC(xsd:date(?date)) LIMIT 1"}, "answers": {"book": {"type": "uri", "value": "http://dbpedia.org/resource/Origin_(Brown_novel)"}}, "entities": [{"URI": "http://dbpedia.org/resource/Dan_Brown", "surface form": "Dan Brown"}], "relations": [{"URI": "http://dbpedia.org/ontology/battle", "surface form": "work"}]}, {"id": "153", "question": [{"language": "en", "string": "What was Brazil's lowest rank in the FIFA World Ranking?"}], "query": {"sparql": "SELECT DISTINCT ?n WHERE { <http://dbpedia.org/resource/Brazil_national_football_team> <http://dbpedia.org/property/fifaMin> ?n }"}, "answers": {"n": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "22"}}, "entities": [{"URI": "http://dbpedia.org/resource/Brazil", "surface form": "Brazil"}, {"URI": "http://dbpedia.org/resource/RANK", "surface form": " lowest rank"}, {"URI": "http://dbpedia.org/resource/FIFA", "surface form": "FIFA"}, {"URI": "http://dbpedia.org/resource/WBSC_World_Rankings", "surface form": "World Ranking"}], "relations": []}, {"id": "246", "question": [{"language": "en", "string": "Give me all the TV shows with Neil Patrick Harris."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/TelevisionShow> ; <http://dbpedia.org/ontology/starring> <http://dbpedia.org/resource/Neil_Patrick_Harris> }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Christmas_Blessing"}}, "entities": [{"URI": "http://dbpedia.org/resource/Tv_test_pattern", "surface form": "TV"}, {"URI": "http://dbpedia.org/resource/Neil_Patrick_Harris", "surface form": "Neil Patrick Harris"}], "relations": [{"URI": "http://dbpedia.org/ontology/place", "surface form": "shows"}]}, {"id": "411", "question": [{"language": "en", "string": "Who is the novelist of the work a song of ice and fire?"}], "query": {"sparql": "PREFIX dbr: <http://dbpedia.org/resource/> PREFIX dbp: <http://dbpedia.org/property/> SELECT ?Novelist WHERE { dbr:A_Song_of_Ice_and_Fire dbp:author ?Novelist }"}, "answers": {"Novelist": {"type": "uri", "value": "http://dbpedia.org/resource/George_R._R._Martin"}}, "entities": [], "relations": [{"URI": "http://dbpedia.org/ontology/author", "surface form": "novelist"}, {"URI": "http://dbpedia.org/ontology/service", "surface form": "work"}, {"URI": "http://dbpedia.org/ontology/anthem", "surface form": "song"}, {"URI": "http://dbpedia.org/ontology/frozen", "surface form": "ice"}]}, {"id": "396", "question": [{"language": "en", "string": "Give me the birth place of Frank Sinatra."}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?place WHERE { res:Frank_Sinatra dbo:birthPlace ?place }"}, "answers": {"place": {"type": "uri", "value": "http://dbpedia.org/resource/Hoboken,_New_Jersey"}}, "entities": [{"URI": "http://dbpedia.org/resource/Frank_Sinatra", "surface form": "Frank Sinatra"}], "relations": [{"URI": "http://dbpedia.org/ontology/birthPlace", "surface form": "birth place"}]}, {"id": "29", "question": [{"language": "en", "string": "Who developed the video game World of Warcraft?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:World_of_Warcraft dbo:developer ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Blizzard_Entertainment"}}, "entities": [{"URI": "http://dbpedia.org/resource/World_of_Warcraft", "surface form": "video game World of Warcraft"}], "relations": [{"URI": "http://dbpedia.org/ontology/developer", "surface form": "developed"}]}, {"id": "84", "question": [{"language": "en", "string": "What is the time zone of Salt Lake City?"}], "query": {"sparql": "PREFIX res: <http://dbpedia.org/resource/> PREFIX dbp: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Salt_Lake_City <http://dbpedia.org/ontology/timeZone> ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mountain_Time_Zone"}}, "entities": [{"URI": "http://dbpedia.org/resource/Salt_Lake_City", "surface form": "Salt Lake City"}], "relations": [{"URI": "http://dbpedia.org/ontology/timeZone", "surface form": "time zone"}]}, {"id": "262", "question": [{"language": "en", "string": "Show me all English Gothic buildings in Kent."}], "query": {"sparql": "SELECT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Building> ; <http://dbpedia.org/ontology/architecturalStyle> <http://dbpedia.org/resource/English_Gothic_architecture> ; <http://dbpedia.org/ontology/location> <http://dbpedia.org/resource/Kent> }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/All_Saints_Church,_Waldershare"}}, "entities": [{"URI": "http://dbpedia.org/resource/English_Gothic_architecture", "surface form": "English Gothic buildings in Kent"}], "relations": [{"URI": "http://dbpedia.org/ontology/show", "surface form": "show"}]}, {"id": "162", "question": [{"language": "en", "string": "What was the last movie with Alec Guinness?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Film ; dbo:starring res:Alec_Guinness ; dbo:releaseDate ?date } ORDER BY DESC(?date) LIMIT 1"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Star_Wars_original_trilogy"}}, "entities": [{"URI": "http://dbpedia.org/resource/Alec_Guinness", "surface form": "Alec Guinness"}], "relations": [{"URI": "http://dbpedia.org/ontology/picture", "surface form": "movie"}]}, {"id": "173", "question": [{"language": "en", "string": "Give me all world heritage sites designated within the past two years."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/WorldHeritageSite> . { ?uri <http://dbpedia.org/property/year> '2013'^^xsd:integer . } UNION { ?uri <http://dbpedia.org/property/year> '2014'^^xsd:integer . } }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Descent_of_the_Holy_Spirit_Church"}}, "entities": [], "relations": [{"URI": "http://dbpedia.org/ontology/fate", "surface form": "heritage sites"}, {"URI": "http://dbpedia.org/ontology/class", "surface form": "designated"}]}, {"id": "241", "question": [{"language": "en", "string": "Give all swimmers that were born in Moscow."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Swimmer> ; <http://dbpedia.org/ontology/birthPlace> <http://dbpedia.org/resource/Moscow> }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alla_Grebennikova"}}, "entities": [{"URI": "http://dbpedia.org/resource/Swimmers_(film)", "surface form": "swimmers"}, {"URI": "http://dbpedia.org/resource/Moscow", "surface form": "Moscow"}], "relations": [{"URI": "http://dbpedia.org/ontology/birthPlace", "surface form": "born"}]}, {"id": "45", "question": [{"language": "en", "string": "Who produced films starring Natalie Portman?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?film a <http://dbpedia.org/ontology/Film> ; <http://dbpedia.org/ontology/starring> <http://dbpedia.org/resource/Natalie_Portman> ; <http://dbpedia.org/ontology/producer> ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Wachowskis"}}, "entities": [{"URI": "http://dbpedia.org/resource/Natalie_Portman", "surface form": "produced films films starring Natalie Portman"}], "relations": [{"URI": "http://dbpedia.org/ontology/wineProduced", "surface form": "produced"}]}, {"id": "76", "question": [{"language": "en", "string": "In which military conflicts did Lawrence of Arabia participate?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:T._E._Lawrence dbo:battle ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Battle_of_Megiddo_(1918)"}}, "entities": [{"URI": "http://dbpedia.org/resource/T._E._Lawrence", "surface form": "Lawrence of Arabia"}], "relations": [{"URI": "http://dbpedia.org/ontology/militaryBranch", "surface form": "military conflicts"}, {"URI": "http://dbpedia.org/ontology/participant", "surface form": "participate"}]}, {"id": "281", "question": [{"language": "en", "string": "In which city does the Chile Route 68 end?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Chile_Route_68 dbo:routeEnd ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Valpara\u00edso"}}, "entities": [{"URI": "http://dbpedia.org/resource/Chile_Route_68", "surface form": "Chile Route 68 end"}], "relations": [{"URI": "http://dbpedia.org/ontology/city", "surface form": "city"}]}, {"id": "292", "question": [{"language": "en", "string": "When did the Boston Tea Party take place?"}], "query": {"sparql": "SELECT DISTINCT ?d WHERE { <http://dbpedia.org/resource/Boston_Tea_Party> <http://dbpedia.org/property/date> ?d }"}, "answers": {"d": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#date", "value": "1773-12-16"}}, "entities": [{"URI": "http://dbpedia.org/resource/Boston_Tea_Party", "surface form": "Boston Tea Party"}], "relations": [{"URI": "http://dbpedia.org/ontology/place", "surface form": "place"}]}, {"id": "169", "question": [{"language": "en", "string": "Which spaceflights were launched from Baikonur?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/launchPad> res:Baikonur_Cosmodrome }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Salyut_1"}}, "entities": [{"URI": "http://dbpedia.org/resource/Baikonur_Cosmodrome_Site_110", "surface form": "Baikonur"}], "relations": [{"URI": "http://dbpedia.org/ontology/countryWithFirstSpaceflight", "surface form": "spaceflights"}, {"URI": "http://dbpedia.org/ontology/totalLaunches", "surface form": "launched"}]}, {"id": "401", "question": [{"language": "en", "string": "What are the top selling luxury vehicle brands in Germany?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dct: <http://purl.org/dc/terms/> PREFIX dbc: <http://dbpedia.org/resource/Category:> SELECT ?company WHERE { ?company dct:subject dbc:Car_manufacturers_of_Germany ; dbo:equity ?equity ; dbo:netIncome ?netIncome ; dbo:production ?production ; dbo:revenue ?revenue } ORDER BY DESC(?equity)"}, "answers": {"company": {"type": "uri", "value": "http://dbpedia.org/resource/Mercedes-Benz_Group"}}, "entities": [{"URI": "http://dbpedia.org/resource/Luxury_vehicle", "surface form": "luxury vehicle brands"}, {"URI": "http://dbpedia.org/resource/Germany", "surface form": "Germany"}], "relations": [{"URI": "http://dbpedia.org/ontology/promotion", "surface form": "selling"}]}, {"id": "434", "question": [{"language": "en", "string": "What languages are spoken in Pakistan?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Pakistan> <http://dbpedia.org/ontology/language> ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Memoni_language"}}, "entities": [{"URI": "http://dbpedia.org/resource/Pakistan", "surface form": "Pakistan"}], "relations": [{"URI": "http://dbpedia.org/ontology/language", "surface form": "languages"}, {"URI": "http://dbpedia.org/ontology/spokenIn", "surface form": "spoken"}]}, {"id": "155", "question": [{"language": "en", "string": "When is Halloween?"}], "query": {"sparql": "SELECT DISTINCT ?date WHERE { <http://dbpedia.org/resource/Halloween> <http://dbpedia.org/property/date> ?date . } "}, "answers": {"date": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#gMonthDay", "value": "--10-31"}}, "entities": [{"URI": "http://dbpedia.org/resource/Halloween", "surface form": "Halloween"}], "relations": [{"URI": "http://dbpedia.org/property/date", "surface form": "when"}]}, {"id": "27", "question": [{"language": "en", "string": "Which presidents were born in 1945?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/President> ; <http://dbpedia.org/ontology/birthDate> ?date FILTER regex(?date, \"^1945\") }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vladislav_Ardzinba"}}, "entities": [{"URI": "http://dbpedia.org/resource/1945", "surface form": "1945"}], "relations": [{"URI": "http://dbpedia.org/ontology/country", "surface form": "presidents"}, {"URI": "http://dbpedia.org/ontology/birthPlace", "surface form": "born"}]}, {"id": "421", "question": [{"language": "en", "string": "What is the smallest city by area in Germany?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX skos: <http://www.w3.org/2004/02/skos/core#> PREFIX dbc: <http://dbpedia.org/resource/Category:> PREFIX dct: <http://purl.org/dc/terms/> SELECT ?city WHERE { ?m skos:broader dbc:Cities_in_Germany . ?city dct:subject ?m ; dbo:areaTotal ?area } ORDER BY ?area LIMIT 1"}, "answers": {"city": {"type": "uri", "value": "http://dbpedia.org/resource/Eckernf\u00f6rde"}}, "entities": [{"URI": "http://dbpedia.org/resource/Germany", "surface form": "Germany"}], "relations": [{"URI": "http://dbpedia.org/ontology/city", "surface form": "city"}, {"URI": "http://dbpedia.org/property/area", "surface form": "area"}]}, {"id": "293", "question": [{"language": "en", "string": "Who played Gus Fring in Breaking Bad?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Gus_Fring dbo:portrayer ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Giancarlo_Esposito"}}, "entities": [{"URI": "http://dbpedia.org/resource/Gus_Fring", "surface form": "Gus Fring"}, {"URI": "http://dbpedia.org/resource/Breaking_Bad", "surface form": "Breaking Bad"}], "relations": [{"URI": "http://dbpedia.org/ontology/portrayer", "surface form": "played"}]}, {"id": "290", "question": [{"language": "en", "string": "Where does Piccadilly start?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/routeStart> <http://dbpedia.org/resource/Piccadilly> }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dover_Street"}}, "entities": [{"URI": "http://dbpedia.org/resource/Piccadilly", "surface form": "Piccadilly"}], "relations": [{"URI": "http://dbpedia.org/ontology/routeStart", "surface form": "start"}]}, {"id": "259", "question": [{"language": "en", "string": "Which bridges cross the Seine?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Bridge> ; <http://dbpedia.org/ontology/crosses> <http://dbpedia.org/resource/Seine> }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Viaduc_d'Austerlitz"}}, "entities": [{"URI": "http://dbpedia.org/resource/Seine", "surface form": "Seine"}], "relations": [{"URI": "http://dbpedia.org/ontology/abstract", "surface form": "bridges"}, {"URI": "http://dbpedia.org/ontology/network", "surface form": "cross"}]}, {"id": "75", "question": [{"language": "en", "string": "Give me all Australian nonprofit organizations."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/type> <http://dbpedia.org/resource/Nonprofit_organization> { ?uri <http://dbpedia.org/ontology/locationCountry> <http://dbpedia.org/resource/Australia> } UNION { ?uri <http://dbpedia.org/ontology/location> ?x . ?x <http://dbpedia.org/ontology/country> <http://dbpedia.org/resource/Australia> } }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/YourView"}}, "entities": [{"URI": "http://dbpedia.org/resource/Australia", "surface form": "Australian nonprofit organizations"}, {"URI": "http://dbpedia.org/resource/Master_of_Nonprofit_Organizations", "surface form": "Australian nonprofit organizations"}], "relations": [{"URI": "http://dbpedia.org/ontology/country", "surface form": ""}]}, {"id": "321", "question": [{"language": "en", "string": "Show me all Czech movies."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Film> ; <http://dbpedia.org/ontology/country> <http://dbpedia.org/resource/Czech_Republic> }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Boredom_in_Brno"}}, "entities": [{"URI": "http://dbpedia.org/resource/Czech_Republic", "surface form": "Czech movies"}, {"URI": "http://dbpedia.org/resource/The_Movies_(film)", "surface form": "Czech movies"}], "relations": [{"URI": "http://dbpedia.org/ontology/show", "surface form": "show"}, {"URI": "http://dbpedia.org/ontology/country", "surface form": ""}]}, {"id": "243", "question": [{"language": "en", "string": "How many museums does Paris have?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Museum> ; <http://dbpedia.org/ontology/location> <http://dbpedia.org/resource/Paris> }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gallery_of_Paleontology_and_Comparative_Anatomy"}}, "entities": [{"URI": "http://dbpedia.org/resource/Museums_in_Aalborg", "surface form": "museums"}, {"URI": "http://dbpedia.org/resource/Paris", "surface form": "Paris"}], "relations": []}, {"id": "436", "question": [{"language": "en", "string": "Which daughters of British earls died at the same place they were born at?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX yago: <http://dbpedia.org/class/yago/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type yago:WikicatDaughtersOfBritishEarls ; dbo:birthPlace ?x ; dbo:deathPlace ?y FILTER ( ?x = ?y ) }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Megan_Lloyd_George"}}, "entities": [{"URI": "http://dbpedia.org/resource/Daughters_of_the_Dust", "surface form": "daughters"}, {"URI": "http://dbpedia.org/resource/United_Kingdom", "surface form": "British earls"}, {"URI": "http://dbpedia.org/resource/Earls_Barton", "surface form": "British earls"}], "relations": [{"URI": "http://dbpedia.org/property/deathPlace", "surface form": "died"}, {"URI": "http://dbpedia.org/ontology/place", "surface form": "place"}, {"URI": "http://dbpedia.org/ontology/birthPlace", "surface form": "born"}, {"URI": "http://dbpedia.org/ontology/country", "surface form": ""}]}, {"id": "305", "question": [{"language": "en", "string": "How many seats does the home stadium of FC Porto have?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbp: <http://dbpedia.org/property/> PREFIX dbr: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> PREFIX db: <http://dbpedia.org/> SELECT ?capacity WHERE { { dbr:FC_Porto dbo:ground ?ground . ?ground dbo:capacity ?capacity } UNION { dbr:FC_Porto dbo:ground ?ground . ?ground dbp:capacity ?capacity } }"}, "answers": {"capacity": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "50035"}}, "entities": [{"URI": "http://dbpedia.org/resource/FC_Porto", "surface form": "stadium of FC Porto"}], "relations": [{"URI": "http://dbpedia.org/property/seat", "surface form": "seats"}, {"URI": "http://dbpedia.org/ontology/ground", "surface form": "home stadium"}]}, {"id": "4", "question": [{"language": "en", "string": "Which U.S. states possess gold minerals?"}], "query": {"sparql": "PREFIX yago: <http://dbpedia.org/class/yago/> PREFIX dbp: <http://dbpedia.org/property/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type yago:WikicatStatesOfTheUnitedStates ; dbp:mineral ?mineral FILTER regex(?mineral, \"gold\", \"i\") }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alaska"}}, "entities": [{"URI": "http://dbpedia.org/resource/United_States", "surface form": "US"}], "relations": [{"URI": "http://dbpedia.org/ontology/owner", "surface form": "possess"}, {"URI": "http://dbpedia.org/ontology/champion", "surface form": "gold minerals"}]}, {"id": "165", "question": [{"language": "en", "string": "Give me the grandchildren of Bruce Lee."}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Bruce_Lee dbo:child ?child . ?child <http://dbpedia.org/property/children> ?uri }"}, "answers": {"uri": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "1"}}, "entities": [{"URI": "http://dbpedia.org/resource/Bruce_Lee", "surface form": "Bruce Lee"}], "relations": [{"URI": "http://dbpedia.org/ontology/child", "surface form": "grandchildren"}]}, {"id": "119", "question": [{"language": "en", "string": "Give me all books written by Danielle Steel."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Book> ; <http://dbpedia.org/ontology/author> <http://dbpedia.org/resource/Danielle_Steel> }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Amazing_Grace_(novel)"}}, "entities": [{"URI": "http://dbpedia.org/resource/Danielle_Steel", "surface form": "Danielle Steel"}], "relations": [{"URI": "http://dbpedia.org/ontology/volume", "surface form": "books"}, {"URI": "http://dbpedia.org/ontology/writer", "surface form": "written"}]}, {"id": "340", "question": [{"language": "en", "string": "On which day is Columbus Day?"}], "query": {"sparql": "SELECT DISTINCT ?d WHERE { <http://dbpedia.org/resource/Columbus_Day> <http://dbpedia.org/property/date> ?d . } "}, "answers": {"d": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#gMonthDay", "value": "--10-12"}}, "entities": [{"URI": "http://dbpedia.org/resource/Columbus_Day", "surface form": "Columbus Day"}], "relations": [{"URI": "http://dbpedia.org/ontology/day", "surface form": "day"}]}, {"id": "233", "question": [{"language": "en", "string": "Which television shows were created by John Cleese?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/TelevisionShow> ; <http://dbpedia.org/ontology/creator> <http://dbpedia.org/resource/John_Cleese> }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Monty_Python's_Fliegender_Zirkus"}}, "entities": [{"URI": "http://dbpedia.org/resource/John_Cleese", "surface form": "John Cleese"}], "relations": [{"URI": "http://dbpedia.org/ontology/televisionSeries", "surface form": "television shows"}, {"URI": "http://dbpedia.org/ontology/author", "surface form": "created"}]}, {"id": "144", "question": [{"language": "en", "string": "What is the bridge with the longest span?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Bridge ; dbo:mainspan ?s } ORDER BY DESC(?s) OFFSET 0 LIMIT 1"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/C\u1ea7n_Gi\u1edd_Bridge"}}, "entities": [], "relations": [{"URI": "http://dbpedia.org/ontology/discipline", "surface form": "bridge"}, {"URI": "http://dbpedia.org/ontology/mainspan", "surface form": "span"}]}, {"id": "247", "question": [{"language": "en", "string": "Who wrote The Hunger Games?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/The_Hunger_Games> <http://dbpedia.org/property/author> ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Suzanne_Collins"}}, "entities": [{"URI": "http://dbpedia.org/resource/The_Hunger_Games", "surface form": "The Hunger Games"}], "relations": [{"URI": "http://dbpedia.org/property/author", "surface form": "wrote"}]}, {"id": "436", "question": [{"language": "en", "string": "Which daughters of British earls died at the same place they were born at?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX yago: <http://dbpedia.org/class/yago/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type yago:WikicatDaughtersOfBritishEarls ; dbo:birthPlace ?x ; dbo:deathPlace ?y FILTER ( ?x = ?y ) }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Megan_Lloyd_George"}}, "entities": [{"URI": "http://dbpedia.org/resource/Daughters_of_the_Dust", "surface form": "daughters"}, {"URI": "http://dbpedia.org/resource/United_Kingdom", "surface form": "British earls"}, {"URI": "http://dbpedia.org/resource/Earls_Barton", "surface form": "British earls"}], "relations": [{"URI": "http://dbpedia.org/property/deathPlace", "surface form": "died"}, {"URI": "http://dbpedia.org/ontology/place", "surface form": "place"}, {"URI": "http://dbpedia.org/ontology/birthPlace", "surface form": "born"}, {"URI": "http://dbpedia.org/ontology/country", "surface form": ""}]}, {"id": "25", "question": [{"language": "en", "string": "What is the highest place of Karakoram?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Karakoram dbp:highest ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/K2"}}, "entities": [{"URI": "http://dbpedia.org/resource/Karakoram", "surface form": "Karakoram"}], "relations": [{"URI": "http://dbpedia.org/ontology/elevation", "surface form": "highest place"}]}, {"id": "345", "question": [{"language": "en", "string": "Who is the coach of Ankara's ice hockey team?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { ?x dbo:city res:Ankara ; dbo:league res:Turkish_Ice_Hockey_First_League ; dbo:coach ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/\u0130brahim_O\u011fuz"}}, "entities": [{"URI": "http://dbpedia.org/resource/Ankara", "surface form": "Ankara"}, {"URI": "http://dbpedia.org/resource/Greece_national_ice_hockey_team", "surface form": " ice hockey team"}], "relations": [{"URI": "http://dbpedia.org/ontology/coach", "surface form": "coach"}]}, {"id": "44", "question": [{"language": "en", "string": "In which programming language is GIMP written?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:GIMP dbo:programmingLanguage ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/C_(programming_language)"}}, "entities": [{"URI": "http://dbpedia.org/resource/GIMP", "surface form": "GIMP"}], "relations": [{"URI": "http://dbpedia.org/ontology/programmingLanguage", "surface form": "programming language"}, {"URI": "http://dbpedia.org/ontology/writer", "surface form": "written"}]}, {"id": "25", "question": [{"language": "en", "string": "What is the highest place of Karakoram?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Karakoram dbp:highest ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/K2"}}, "entities": [{"URI": "http://dbpedia.org/resource/Karakoram", "surface form": "Karakoram"}], "relations": [{"URI": "http://dbpedia.org/ontology/elevation", "surface form": "highest place"}]}, {"id": "16", "question": [{"language": "en", "string": "Which countries in the European Union adopted the Euro?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Country> { ?uri <http://dbpedia.org/ontology/currency> <http://dbpedia.org/resource/Euro> } UNION { ?uri <http://dbpedia.org/property/currencyCode> \"EUR\"@en } }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Andorra"}}, "entities": [{"URI": "http://dbpedia.org/resource/Countries_of_the_United_Kingdom", "surface form": "countries"}, {"URI": "http://dbpedia.org/resource/Europe", "surface form": "European Union adopted the Euro"}, {"URI": "http://dbpedia.org/resource/The_Adopted", "surface form": "European Union adopted the Euro"}], "relations": [{"URI": "http://dbpedia.org/ontology/country", "surface form": ""}]}, {"id": "380", "question": [{"language": "en", "string": "When did Muhammad die?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT xsd:date(?date) WHERE { res:Muhammad dbo:deathDate ?date }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#date", "value": "0632-06-08"}}, "entities": [{"URI": "http://dbpedia.org/resource/Muhammad", "surface form": "Muhammad"}], "relations": [{"URI": "http://dbpedia.org/ontology/deathDate", "surface form": "die"}]}, {"id": "336", "question": [{"language": "en", "string": "How did Michael Jackson die?"}], "query": {"sparql": "SELECT DISTINCT ?s WHERE { <http://dbpedia.org/resource/Michael_Jackson> <http://dbpedia.org/property/deathCause> ?s }"}, "answers": {"s": {"type": "uri", "value": "http://dbpedia.org/resource/Death_of_Michael_Jackson"}}, "entities": [{"URI": "http://dbpedia.org/resource/Michael_Jackson", "surface form": "Michael Jackson"}], "relations": [{"URI": "http://dbpedia.org/ontology/deathDate", "surface form": "die"}]}, {"id": "145", "question": [{"language": "en", "string": "Give me all films produced by Steven Spielberg with a budget of at least $80 million."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film> . ?uri <http://dbpedia.org/ontology/director> <http://dbpedia.org/resource/Steven_Spielberg> . ?uri <http://dbpedia.org/ontology/budget> ?b . FILTER( xsd:double(?b) >= 8.0E7 ) }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/War_of_the_Worlds_(2005_film)"}}, "entities": [{"URI": "http://dbpedia.org/resource/Steven_Spielberg", "surface form": "Steven Spielberg"}, {"URI": "http://dbpedia.org/resource/Boeing_80", "surface form": "$80"}], "relations": [{"URI": "http://dbpedia.org/ontology/production", "surface form": "films"}, {"URI": "http://dbpedia.org/ontology/manufacturer", "surface form": "produced"}, {"URI": "http://dbpedia.org/ontology/budget", "surface form": "budget"}]}, {"id": "281", "question": [{"language": "en", "string": "In which city does the Chile Route 68 end?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Chile_Route_68 dbo:routeEnd ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Valpara\u00edso"}}, "entities": [{"URI": "http://dbpedia.org/resource/Chile_Route_68", "surface form": "Chile Route 68 end"}], "relations": [{"URI": "http://dbpedia.org/ontology/city", "surface form": "city"}]}, {"id": "104", "question": [{"language": "en", "string": "Who wrote the lyrics for the Polish national anthem?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Poland> <http://dbpedia.org/ontology/anthem> ?x . ?x <http://dbpedia.org/property/author> ?uri . } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/J\u00f3zef_Wybicki"}}, "entities": [{"URI": "http://dbpedia.org/resource/Poland", "surface form": "Polish national anthem"}, {"URI": "http://dbpedia.org/resource/Afghan_National_Anthem", "surface form": "Polish national anthem"}], "relations": [{"URI": "http://dbpedia.org/property/author", "surface form": "wrote"}, {"URI": "http://dbpedia.org/ontology/lyrics", "surface form": "lyrics"}, {"URI": "http://dbpedia.org/ontology/country", "surface form": ""}]}, {"id": "244", "question": [{"language": "en", "string": "Which city has the most inhabitants?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:City ; dbo:populationTotal ?pop } ORDER BY DESC(?pop) OFFSET 0 LIMIT 1"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Beinamar"}}, "entities": [], "relations": [{"URI": "http://dbpedia.org/ontology/city", "surface form": "city"}, {"URI": "http://dbpedia.org/ontology/country", "surface form": "inhabitants"}]}, {"id": "272", "question": [{"language": "en", "string": "Who was influenced by Socrates?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/influencedBy> <http://dbpedia.org/resource/Socrates> }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Arcesilaus"}}, "entities": [{"URI": "http://dbpedia.org/resource/Socrates", "surface form": "Socrates"}], "relations": [{"URI": "http://dbpedia.org/ontology/influenced", "surface form": "influenced"}]}, {"id": "91", "question": [{"language": "en", "string": "When was the Statue of Liberty built?"}], "query": {"sparql": "SELECT DISTINCT ?date WHERE { <http://dbpedia.org/resource/Statue_of_Liberty> <http://dbpedia.org/property/beginningDate> ?date }"}, "answers": {"date": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#date", "value": "1886-10-28"}}, "entities": [{"URI": "http://dbpedia.org/resource/Statue_of_Liberty", "surface form": "Statue of Liberty"}], "relations": [{"URI": "http://dbpedia.org/ontology/numberBuilt", "surface form": "built"}]}, {"id": "417", "question": [{"language": "en", "string": "How large is the total area of North Rhine-Westphalia?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?tarea WHERE { dbr:North_Rhine-Westphalia dbo:areaTotal ?tarea }"}, "answers": {"tarea": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#double", "value": "3.40841e+10"}}, "entities": [{"URI": "http://dbpedia.org/resource/North_Rhine-Westphalia", "surface form": "North Rhine-Westphalia"}], "relations": [{"URI": "http://dbpedia.org/ontology/areaTotal", "surface form": "total area"}]}, {"id": "15", "question": [{"language": "en", "string": "What is the currency of the Czech Republic?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Czech_Republic dbo:currency ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Czech_koruna"}}, "entities": [{"URI": "http://dbpedia.org/resource/Czech_Republic", "surface form": "Czech Republic"}, {"URI": "http://dbpedia.org/resource/Czech_Republic", "surface form": "Czech Republic"}], "relations": [{"URI": "http://dbpedia.org/ontology/currency", "surface form": "currency"}, {"URI": "http://dbpedia.org/ontology/country", "surface form": ""}]}, {"id": "65", "question": [{"language": "en", "string": "Give me all people that were born in Vienna and died in Berlin."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/birthPlace> <http://dbpedia.org/resource/Vienna> ; <http://dbpedia.org/ontology/deathPlace> <http://dbpedia.org/resource/Berlin> }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hans_Fidesser"}}, "entities": [{"URI": "http://dbpedia.org/resource/Vienna", "surface form": "Vienna"}, {"URI": "http://dbpedia.org/resource/Berlin", "surface form": "Berlin"}], "relations": [{"URI": "http://dbpedia.org/ontology/birthPlace", "surface form": "born"}, {"URI": "http://dbpedia.org/ontology/flag", "surface form": "died"}]}, {"id": "42", "question": [{"language": "en", "string": "Which books were written by Danielle Steel?"}], "query": {"sparql": "PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX foaf: <http://xmlns.com/foaf/0.1/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT ?uri WHERE { ?uri rdf:type onto:Book ; onto:author <http://dbpedia.org/resource/Danielle_Steel> }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Amazing_Grace_(novel)"}}, "entities": [{"URI": "http://dbpedia.org/resource/Danielle_Steel", "surface form": "Danielle Steel"}], "relations": [{"URI": "http://dbpedia.org/ontology/volume", "surface form": "books"}, {"URI": "http://dbpedia.org/ontology/writer", "surface form": "written"}]}, {"id": "256", "question": [{"language": "en", "string": "Who played Agent Smith in Matrix?"}], "query": {"sparql": "PREFIX res: <http://dbpedia.org/resource/> PREFIX dbp: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Agent_Smith <http://dbpedia.org/ontology/portrayer> ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jonathan_Groff"}}, "entities": [{"URI": "http://dbpedia.org/resource/Agent_Smith", "surface form": "Agent Smith"}], "relations": [{"URI": "http://dbpedia.org/ontology/portrayer", "surface form": "played"}]}]} \ No newline at end of file diff --git a/bart/pred.json b/bart/pred.json index 7ba8649f95f8f57a35c7424a983cf37dc5a67697..2806f29f890668b90d0a301aad1f5295918f6729 100644 --- a/bart/pred.json +++ b/bart/pred.json @@ -1 +1 @@ -{"questions": [{"query": {"sparql": " \"SELECT DISTINCT?uri WHERE {?uri wdt:P31/wdt:P170?uri. }\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE {?uri wdt:P279* wd:Q1724. }\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE {?uri wdt:P31/wdt:P170?height. }\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE {?uri wdt:P279* wd:Q624. }\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE { ?uri wdt:P31 wd:Q624. }\""}}, {"query": {"sparql": " \"SELECT (COUNT( DISTINCT?uri) AS?c) WHERE {?uri wdt:P31/wdt:P106?uri. }\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE {?uri wdt:P279* wd:Q924. }\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE {?uri wdt:P31/wdt:P106?uri. }\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE {?uri wdt:P31/wdt:P170?uri. }\""}}, {"query": {"sparql": " \"SELECT (COUNT( DISTINCT?uri) AS?c) WHERE {?uri wdt:P31/wdt:P170?uri. }\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE {?uri wdt:P31/wdt:P106?uri. }\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE {?uri wdt:P31/wdt:P106?uri. }\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE {?uri wdt:P31/wdt:P106?uri. }\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE {?uri wdt:P31/wdt:P170?uri. }\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE {?uri wdt:P31/wdt:P106?uri. }\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE {?uri wdt:P31/wdt:P106?uri. }\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE {?uri wdt:P31/wdt:P170?uri. }\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE {?uri wdt:P31/wdt:P170?uri. }\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE {?uri wdt:P31/wdt:P106?uri. }\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE {?uri wdt:P279* wd:Q1724. }\""}}, {"query": {"sparql": " \"SELECT (COUNT( DISTINCT?uri) AS?c) WHERE {?uri wdt:P31/wdt:P106?uri. }\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE {?uri wdt:P31/wdt:P170?uri. }\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE { ?uri wdt:P31 wd:Q936. }\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE {?uri wdt:P31/wdt:P170?uri. }\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE { ?uri wdt:P31 wd:Q936. }\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE {?uri wdt:P31/wdt:P170?uri. }\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE {?uri wdt:P31/wdt:P106?uri. }\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE {?uri wdt:P31/wdt:P170?uri. }\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE {?uri wdt:P31/wdt:P170?uri. }\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE {?uri wdt:P31/wdt:P170?uri. }\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE {?uri wdt:P31/wdt:P170?uri. }\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE {?uri wdt:P31/wdt:P106?uri. }\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE {?uri wdt:P31/wdt:P170?uri. }\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE {?uri wdt:P31/wdt:P106?uri. }\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE {?uri wdt:P31/wdt:P106?uri. }\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE {?uri wdt:P31/wdt:P106?uri. }\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE {?uri wdt:P31/wdt:P170?uri. }\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE {?uri wdt:P31/wdt:P106?uri. }\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE { ?uri wdt:P106 wd:Q936. }\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE {?uri wdt:P31/wdt:P106?uri. }\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE {?uri wdt:P31/wdt:P106?uri. }\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE {?uri wdt:P31/wdt:P170?uri. }\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE {?uri wdt:P31/wdt:P106?uri. }\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE {?uri wdt:P31/wdt:P170?uri. }\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE {?uri wdt:P31/wdt:P170?uri. }\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE {?uri wdt:P31/wdt:P106?uri. }\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE {?uri wdt:P31/wdt:P106?uri. }\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE {?uri wdt:P31/wdt:P106?uri. }\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE {?uri wdt:P31/wdt:P106?uri. }\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE {?uri wdt:P31/wdt:P106?uri. }\""}}, {"query": {"sparql": " \"SELECT (COUNT( DISTINCT?uri) AS?date) WHERE {?date wdt:P170?date. }\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE {?uri wdt:P279* wd:Q539. }\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE {?uri wdt:P31/wdt:P106?uri. }\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE {?uri wdt:P31/wdt:P170?uri. }\""}}, {"query": {"sparql": " \"SELECT (COUNT( DISTINCT?uri) AS?c) WHERE {?uri wdt:P31/wdt:P106?uri. }\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE {?uri wdt:P31/wdt:P170?uri. }\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE {?uri wdt:P31/wdt:P106?uri. }\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE {?uri wdt:P31/wdt:P106?uri. }\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE {?uri wdt:P31/wdt:P170?uri. }\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE {?uri wdt:P31/wdt:P106?uri. }\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE {?uri wdt:P31/wdt:P170?uri. }\""}}, {"query": {"sparql": " \"SELECT (COUNT( DISTINCT?uri) AS?c) WHERE {?uri wdt:P170?uri. }\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE {?uri wdt:P31/wdt:P170?uri. }\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE {?uri wdt:P31/wdt:P170?uri. }\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE {?uri wdt:P31/wdt:P106?uri. }\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE {?uri wdt:P31/wdt:P106?uri. }\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE { ?uri wdt:P31 wd:Q936. }\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE {?uri wdt:P31/wdt:P170?uri. }\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE {?uri wdt:P31/wdt:P106?uri. }\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE {?uri wdt:P31/wdt:P106?uri. }\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE {?uri wdt:P31/wdt:P170?uri. }\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE {?uri wdt:P31/wdt:P170?uri. }\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE {?uri wdt:P31/wdt:P170?uri. }\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE {?uri wdt:P31/wdt:P106?uri. }\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE {?uri wdt:P31/wdt:P170?uri. }\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE {?uri wdt:P279* wd:Q936. }\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE {?uri wdt:P31/wdt:P106?uri. }\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE {?uri wdt:P31/wdt:P170?uri. }\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE {?uri wdt:P31/wdt:P106?uri. }\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE {?uri wdt:P31/wdt:P106?uri. }\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE {?uri wdt:P31/wdt:P106?uri. }\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE {?uri wdt:P31/wdt:P170?uri. }\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE {?uri wdt:P31/wdt:P170?uri. }\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE {?uri wdt:P31/wdt:P106?uri. }\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE {?uri wdt:P31/wdt:P106?uri. }\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE {?uri wdt:P31/wdt:P170?uri. }\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE {?uri wdt:P31/wdt:P106?uri. }\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE {?uri wdt:P31/wdt:P106?uri. }\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE {?uri wdt:P31/wdt:P170?uri. }\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE {?uri wdt:P31/wdt:P106?uri. }\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE {?uri wdt:P31/wdt:P170?uri. }\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE {?uri wdt:P31/wdt:P106?uri. }\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE {?uri wdt:P31/wdt:P170?uri. }\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE {?uri wdt:P31/wdt:P170?uri. }\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE {?uri wdt:P31/wdt:P170?uri. }\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE {?uri wdt:P31/wdt:P106?uri. }\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE {?uri wdt:P31/wdt:P170?uri. }\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE {?uri wdt:P31/wdt:P106?uri. }\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE {?uri wdt:P31/wdt:P106?uri. }\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE {?uri wdt:P31/wdt:P170?uri. }\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE {?uri wdt:P31/wdt:P170?uri. }\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE {?uri wdt:P31/wdt:P170?uri. }\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE {?uri wdt:P31/wdt:P170?uri. }\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE {?uri wdt:P279* wd:Q924. }\""}}, {"query": {"sparql": " \"SELECT (COUNT( DISTINCT?uri) AS?c) WHERE {?uri wdt:P170?uri. }\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE {?uri wdt:P31/wdt:P170?uri. }\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE {?uri wdt:P31/wdt:P170?uri. }\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE {?uri wdt:P31/wdt:P170?uri. }\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE {?uri wdt:P279* wd:Q936. }\""}}, {"query": {"sparql": " \"SELECT (COUNT( DISTINCT?uri) AS?height) WHERE {?height wdt:P170?height. }\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE {?uri wdt:P31/wdt:P106?uri. }\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE {?uri wdt:P279* wd:Q539. }\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE {?uri wdt:P31/wdt:P170?uri. }\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE {?uri wdt:P31/wdt:P170?uri. }\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE {?uri wdt:P279* wd:Q539. }\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE {?uri wdt:P31/wdt:P170?uri. }\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE {?uri wdt:P31/wdt:P170?uri. }\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE {?uri wdt:P31/wdt:P170?uri. }\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE {?uri wdt:P279* wd:Q1724. }\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE {?uri wdt:P31/wdt:P170?uri. }\""}}, {"query": {"sparql": " \"SELECT DISTINCT?date WHERE {?date wdt:P279* wd:Q936. }\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE {?uri wdt:P31/wdt:P106?uri. }\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE {?uri wdt:P31/wdt:P170?uri. }\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE {?uri wdt:P31/wdt:P170?uri. }\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE {?uri wdt:P31/wdt:P170?uri. }\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE {?uri wdt:P31/wdt:P170?uri. }\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE {?uri wdt:P31/wdt:P106?uri. }\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE {?uri wdt:P31/wdt:P106?uri. }\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE {?uri wdt:P31/wdt:P170?uri. }\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE {?uri wdt:P31/wdt:P170?uri. }\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE {?uri wdt:P279* wd:Q624. }\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE { ?uri wdt:P31 wd:Q1748. }\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE {?uri wdt:P31/wdt:P170?uri. }\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE {?uri wdt:P31/wdt:P106?uri. }\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE {?uri wdt:P279* wd:Q624. }\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE {?uri wdt:P31/wdt:P170?uri. }\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE { ?uri wdt:P106 wd:Q936. }\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE {?uri wdt:P31/wdt:P106?uri. }\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE {?uri wdt:P31/wdt:P106?uri. }\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE {?uri wdt:P31/wdt:P170?uri. }\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE {?uri wdt:P31/wdt:P170?uri. }\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE {?uri wdt:P31/wdt:P170?uri. }\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE {?uri wdt:P31/wdt:P170?uri. }\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE {?uri wdt:P31/wdt:P170?uri. }\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE {?uri wdt:P31/wdt:P106?uri. }\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE {?uri wdt:P31/wdt:P170?uri. }\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE {?uri wdt:P31/wdt:P106?uri. }\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE {?uri wdt:P31/wdt:P170?uri. }\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE {?uri wdt:P31/wdt:P170?uri. }\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE {?uri wdt:P31/wdt:P106?uri. }\""}}]} \ No newline at end of file +{"questions": [{"query": {"sparql": "<s><s> \"SELECT DISTINCT?uri WHERE { res:SaltLakeCity dbo:timeZone?uri }\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE { res:Caesar dbo:deathPlace?uri }\""}}, {"query": {"sparql": " \"SELECT DISTINCT?height WHERE {?height dbo:elevation?height } ORDER BY DESC(?height) OFFSET 0 LIMIT 1\""}}, {"query": {"sparql": "<s><s> \"SELECT DISTINCT?uri WHERE {?uri rdf:type dbo:UnitedStates_States_of_Vietnam_War } ORDER BY DESC(?uri) OFFSET 1\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE { res:Butch Otter dbo:governor?uri } ORDER BY DESC(?uri) OFFSET 0 LIMIT 1\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE { res:Michael_Phelps dbo:award?uri }\""}}, {"query": {"sparql": "<s><s> \"SELECT DISTINCT?date WHERE { res:Rachel_Stevens dbo:birthDate?date }\""}}, {"query": {"sparql": "<s><s> \"SELECT DISTINCT?uri WHERE { res:Frank Herbert dbo:profession?uri }\""}}, {"query": {"sparql": "<s><s> \"ASK WHERE { res:Taiko dbo:musicalInstrument?uri }\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE { res:FCPorto dbo:homeStadium?uri } ORDER BY DESC(?uri) OFFSET 0 LIMIT 1\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE {?uri dbo:Airline?uri }\""}}, {"query": {"sparql": "<s><s> \"SELECT DISTINCT?uri WHERE {?uri rdf:type dbo:European_Monarchy } ORDER BY DESC(?uri) OFFSET 0 LIMIT 1\""}}, {"query": {"sparql": "<s> \"SELECT DISTINCT?uri WHERE {?uri dbo:country?uri } ORDER BY DESC(?uri) OFFSET 0 LIMIT 1\""}}, {"query": {"sparql": "<s> \"SELECT DISTINCT?uri WHERE {?uri dbo:Airport?uri }\""}}, {"query": {"sparql": "<s> \"SELECT DISTINCT?uri WHERE { res:San Francisco dbo:nickname?uri } ORDER BY DESC(?uri) OFFSET 0 LIMIT 1\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE { res:Angela_Merkel dbo:birthName?uri }\""}}, {"query": {"sparql": "<s><s> \"SELECT DISTINCT?uri WHERE { res:Berlin dbo:leader?uri }\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE {?uri dbo:currency?uri }\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE {?uri dbo:publisher?uri }\""}}, {"query": {"sparql": "<s><s> \"SELECT DISTINCT?uri WHERE { res:Bill Gates dbo:country?uri }\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE { res:Jacques_Cousteau dbo:child?uri }\""}}, {"query": {"sparql": "<s><s> \"SELECT DISTINCT?uri WHERE {?uri rdf:type dbo:Skateboard ; dbp:country res:Sweden }\""}}, {"query": {"sparql": "<s> \"SELECT DISTINCT?uri WHERE {?uri rdf:type dbo:King.?uri dbp:spouse?uri } ORDER BY DESC(?uri) OFFSET 0 LIMIT 1\""}}, {"query": {"sparql": "<s> \"SELECT DISTINCT?uri WHERE {?uri a dbo:ArgentineFilm ; dbp:starring?uri } ORDER BY DESC(?uri) OFFSET 0 LIMIT 1\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE { res:Michael_Jackson dbo:deathPlace?uri }\""}}, {"query": {"sparql": "<s><s> \"SELECT DISTINCT?uri WHERE {?uri rdf:type dbo:University }\""}}, {"query": {"sparql": "<s><s> \"SELECT DISTINCT?uri WHERE { res:Milepede dbo:class?uri }\""}}, {"query": {"sparql": "<s><s> \"SELECT DISTINCT?uri WHERE {?uri rdf:type dbo:Website?uri } ORDER BY DESC(?uri) OFFSET 0 LIMIT 1\""}}, {"query": {"sparql": "<s><s> \"SELECT DISTINCT?uri WHERE { res:Amanda Palmer dbo:spouse?uri }\""}}, {"query": {"sparql": "<s><s> \"SELECT DISTINCT?uri WHERE { res:Sea of Galilee dbo:portrayer?uri }\""}}, {"query": {"sparql": "<s><s> \"SELECT DISTINCT?height WHERE { res:Karakoram dbo:elevation?height }\""}}, {"query": {"sparql": "<s><s> \"SELECT DISTINCT?uri WHERE { res:Finland dbo:EuropeanUnion?uri }\""}}, {"query": {"sparql": "<s><s> \"SELECT DISTINCT?uri WHERE { res:Big Bang Theory dbo:starring?uri }\""}}, {"query": {"sparql": "<s><s> \"SELECT DISTINCT?uri WHERE {?uri rdf:type dbo:Computer_Scientist ; dbp:award?uri } ORDER BY DESC(?uri) OFFSET 0 LIMIT 1\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE { res:Harry_Potter dbo:author?uri }\""}}, {"query": {"sparql": "<s><s> \"SELECT DISTINCT?uri WHERE {?uri rdf:type dbo:Literature.?uri dbp:award?uri }\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE { res:Lovesick dbo:starring?uri } ORDER BY DESC(?uri) OFFSET 0 LIMIT 1\""}}, {"query": {"sparql": "<s><s> \"SELECT DISTINCT?uri WHERE { res:Baghdad dbo:nickname?uri }\""}}, {"query": {"sparql": "<s><s> \"SELECT DISTINCT?uri WHERE { res:Montenegro dbo:city?uri }\""}}, {"query": {"sparql": "<s> \"SELECT DISTINCT?uri WHERE {?uri dbo:populationTotal?uri }\""}}, {"query": {"sparql": "<s> \"SELECT DISTINCT?length WHERE {?length dbo:length?length } ORDER BY DESC(?length) OFFSET 0 LIMIT 1\""}}, {"query": {"sparql": "<s><s> \"SELECT DISTINCT?uri WHERE { res:Berlin dbo:areaCode?uri }\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE { res:IvyLeague_University dbo:almaMater?uri } ORDER BY DESC(?uri) OFFSET 0 LIMIT 1\""}}, {"query": {"sparql": "<s><s> \"SELECT DISTINCT?uri WHERE { res:Australia dbo:professionalSurfer?uri }\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE {?uri dbo:party?uri }\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE { res:Mars dbo:moon?uri } ORDER BY DESC(?uri) OFFSET 0 LIMIT 1\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE { res:Batman dbo:name?uri } ORDER BY DESC(?uri) OFFSET 0 LIMIT 1\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE { res:Elon_Musk dbo:author?uri }\""}}, {"query": {"sparql": "<s><s> \"SELECT DISTINCT?uri WHERE { res:Wikileaks dbo:author?uri }\""}}, {"query": {"sparql": "<s><s> \"SELECT DISTINCT?uri WHERE { res:Sean Parnell dbo:governor?uri }\""}}, {"query": {"sparql": "<s> \"SELECT DISTINCT?uri WHERE { res:FordModelT dbo:manufacturer?uri } ORDER BY DESC(?uri) OFFSET 0 LIMIT 1\""}}, {"query": {"sparql": "<s> \"SELECT DISTINCT?uri WHERE { res:Carlo Giuliani dbo:deathPlace?uri }\""}}, {"query": {"sparql": "<s> \"SELECT DISTINCT?uri WHERE {?uri rdf:type dbr:Animal ; dbo:extinct?uri }\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE { res:President_Lincoln dbo:spouse?uri }\""}}, {"query": {"sparql": "<s><s> \"SELECT DISTINCT?uri WHERE { res:Bertrand Russell dbo:award?uri }\""}}, {"query": {"sparql": "<s> \"ASK WHERE { res:Pamela Anderson dbo:vegan?uri }\""}}, {"query": {"sparql": "<s> \"SELECT DISTINCT?uri WHERE {?uri dbo:spacecraft?uri }\""}}, {"query": {"sparql": "<s> \"SELECT DISTINCT?uri WHERE {?uri dbo:populationTotal?uri }\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE { res:RobertKennedy dbo:spouse?uri }\""}}, {"query": {"sparql": "<s><s> \"SELECT DISTINCT?number WHERE {?number dbo:numberOfStudents?number }\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE { res:IBM dbo:revenue?uri } ORDER BY DESC(?uri) OFFSET 0 LIMIT 1\""}}, {"query": {"sparql": "<s><s> \"SELECT DISTINCT?uri WHERE { res:James_Bond dbo:starring?uri } ORDER BY DESC(?uri) OFFSET 0 LIMIT 1\""}}, {"query": {"sparql": "<s><s> \"SELECT DISTINCT?uri WHERE { res:Bart Simpson dbo:voice?uri }\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE { res:Tom_Hanks dbo:spouse?uri }\""}}, {"query": {"sparql": "<s><s> \"SELECT DISTINCT?uri WHERE { res:Yenisei dbo:country?uri }\""}}, {"query": {"sparql": "<s><s> \"SELECT DISTINCT?uri WHERE {?uri rdf:type dbo:Car ; dbp:manufacturer res:Germany }\""}}, {"query": {"sparql": "<s><s> \"SELECT DISTINCT?date WHERE { res:Michael_Jackson dbo:deathDate?date }\""}}, {"query": {"sparql": "<s><s> \"SELECT DISTINCT?height WHERE {?height dbo:elevation?height } ORDER BY DESC(?height) OFFSET 0 LIMIT 1\""}}, {"query": {"sparql": "<s><s> \"SELECT DISTINCT?uri WHERE {?uri rdf:type dbo:Poet.?uri dbp:author?uri }\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE {?uri dbo:gangster?uri }\""}}, {"query": {"sparql": "<s><s> \"SELECT DISTINCT?uri WHERE { res:Mars dbo:missionary?uri }\""}}, {"query": {"sparql": "<s><s> \"SELECT DISTINCT?uri WHERE {?uri rdf:type dbo:Film ; Dbo:starring?uri } ORDER BY DESC(?uri) OFFSET 0 LIMIT 1\""}}, {"query": {"sparql": "<s><s> \"SELECT DISTINCT?uri WHERE {?uri rdf:type dbo:Astronaut }\""}}, {"query": {"sparql": "<s><s> \"SELECT DISTINCT?uri WHERE {?uri rdf:type dbo:Volcano.?uri dbp:country?uri }\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE { res:Tom_Cruise dbo:starring?uri } ORDER BY DESC(?uri) OFFSET 0 LIMIT 1\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE { res:Dracula dbo:creator?uri }\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE { res:English_Wikipedia dbo:creator?uri }\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE {?uri dbo:Chancellor?uri }\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE { res:Aldi dbo:owner?uri }\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE { res:Danielle_Steel dbo:author?uri }\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE { res:Socrates dbo:influenced?uri }\""}}, {"query": {"sparql": "<s><s> \"SELECT DISTINCT?uri WHERE { res:Lake Chiemsee dbo:depth?uri }\""}}, {"query": {"sparql": "<s><s> \"SELECT DISTINCT?uri WHERE {?uri rdf:type dbo:Aerospace ; dbp:company?uri } ORDER BY DESC(?uri) OFFSET 0 LIMIT 1\""}}, {"query": {"sparql": "<s> \"SELECT DISTINCT?uri WHERE { res:Philippines dbo:professionalSurfer?uri } ORDER BY DESC(?uri) OFFSET 0 LIMIT 1\""}}, {"query": {"sparql": "<s><s> \"SELECT DISTINCT?uri WHERE { res:Queen Victoria dbo:spouse?uri }\""}}, {"query": {"sparql": "<s> \"SELECT DISTINCT?uri WHERE { res:UnitedStates dbo:castle?uri }\""}}, {"query": {"sparql": "<s><s> \"SELECT DISTINCT?uri WHERE { res:Estonia dbo:spokenLanguage?uri }\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE {?uri rdf:type dbr:Birds ; dbo:populationTotal?uri }\""}}, {"query": {"sparql": "<s> \"SELECT DISTINCT?uri WHERE {?uri dbo:country?uri }\""}}, {"query": {"sparql": "<s><s> \"SELECT DISTINCT?uri WHERE { res:Queen Elizabeth II dbo:father?uri }\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE {?uri dbo:ChemicalElement?uri }\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE {?uri dbo:leader?uri }\""}}, {"query": {"sparql": "<s><s> \"SELECT DISTINCT?uri WHERE { res:The Netherlands dbo:movie?uri }\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE { res:Lance Bass dbo:spouse?uri }\""}}, {"query": {"sparql": "<s><s> \"SELECT DISTINCT?uri WHERE { res:TUI Travel dbo:location?uri } ORDER BY DESC(?uri) OFFSET 0 LIMIT 1\""}}, {"query": {"sparql": "<s><s> \"SELECT DISTINCT?uri WHERE { res:Pakistan dbo:spokenLanguage?uri }\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE { res:Bill_Clinton dbo:spouse?uri }\""}}, {"query": {"sparql": "<s><s> \"SELECT DISTINCT?uri WHERE { res:Apollo 11 dbo:mission res:Mission?uri }\""}}, {"query": {"sparql": "<s><s> \"SELECT DISTINCT?uri WHERE { res:Indigo dbo: wavelength?uri }\""}}, {"query": {"sparql": "<s><s> \"SELECT DISTINCT?uri WHERE {?uri dbo:band res:The_Ramones }\""}}, {"query": {"sparql": "<s> \"SELECT DISTINCT?uri WHERE { res:Scarface dbo:name?uri }\""}}, {"query": {"sparql": "<s><s> \"SELECT DISTINCT?uri WHERE {?uri rdf:type dbo:River } ORDER BY DESC(?uri) OFFSET 0 LIMIT 1\""}}, {"query": {"sparql": "<s><s> \"SELECT DISTINCT?uri WHERE { res:Fort Knox dbo:location?uri }\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE {?uri rdf:type dbr:Earl ; dbo:birthPlace?uri } ORDER BY DESC(?uri) OFFSET 0 LIMIT 1\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE { res:China dbo:emperor?uri } ORDER BY DESC(?uri) OFFSET 0 LIMIT 1\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE { res:Teenage Mutant Ninja Turtles dbo:name?uri } ORDER BY DESC(?uri) OFFSET 0 LIMIT 1\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE { res:Piccadilly dbo:location?uri } ORDER BY DESC(?uri) OFFSET 0 LIMIT 1\""}}, {"query": {"sparql": "<s><s> \"SELECT DISTINCT?uri WHERE {?uri rdf:type dbo:University }\""}}, {"query": {"sparql": "<s><s> \"SELECT DISTINCT?uri WHERE { res:Paraguay dbo:independenceDate?uri }\""}}, {"query": {"sparql": "<s><s> \"SELECT DISTINCT?height WHERE {?height dbo:height?height } ORDER BY DESC(?height) OFFSET 0 LIMIT 1\""}}, {"query": {"sparql": "<s><s> \"SELECT DISTINCT?uri WHERE { res:Abraham Lincoln dbo:deathPlace?uri }\""}}, {"query": {"sparql": "<s><s> \"SELECT DISTINCT?date WHERE { res:Jack Wolfskin dbo:foundedDate?date }\""}}, {"query": {"sparql": "<s> \"SELECT DISTINCT?uri WHERE { res:Air China dbo:headquarter?uri } ORDER BY DESC(?uri) OFFSET 0 LIMIT 1\""}}, {"query": {"sparql": "<s><s> \"SELECT DISTINCT?uri WHERE { res:Pilsner Urquell dbo:foundedYear?uri }\""}}, {"query": {"sparql": "<s><s> \"SELECT DISTINCT?date WHERE { res:Boston_Tea_Party dbo:date?date }\""}}, {"query": {"sparql": "<s> \"SELECT DISTINCT?uri WHERE {?uri rdf:type dbr:Animal ; dbo:critic?uri }\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE {?uri dbo:spouse?uri }\""}}, {"query": {"sparql": "<s><s> \"SELECT DISTINCT?uri WHERE { res:Earth dbo:diameter?uri }\""}}, {"query": {"sparql": " \"ASK WHERE { res:Michelle_Obama dbo:spouse?uri }\""}}, {"query": {"sparql": "<s><s> \"SELECT DISTINCT?uri WHERE { res:Minnesota dbo:state?uri }\""}}, {"query": {"sparql": "<s><s> \"SELECT DISTINCT?date WHERE { res:Muhammad dbo:deathPlace?date }\""}}, {"query": {"sparql": "<s><s> \"SELECT DISTINCT?uri WHERE { res:Moon dbo:mosphere?uri }\""}}, {"query": {"sparql": "<s><s> \"SELECT DISTINCT?uri WHERE { res:Texas dbo:governor?uri }\""}}, {"query": {"sparql": "<s> \"SELECT DISTINCT?uri WHERE { res:Kurosawa dbo:director?uri } ORDER BY DESC(?uri) OFFSET 0 LIMIT 1\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE { res:San Antonio dbo:battle?uri }\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE {?uri dbo:starring?uri }\""}}, {"query": {"sparql": "<s> \"SELECT DISTINCT?uri WHERE { res:Baguette dbo:calorie?uri } ORDER BY DESC(?uri) OFFSET 0 LIMIT 1\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE {?uri dbo:Library?uri }\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE {?uri rdf:type dbo:Island }\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE {?uri rdf:type dbo:Museum }\""}}, {"query": {"sparql": "<s><s> \"SELECT DISTINCT?date WHERE { res:DeBeers dbo:foundedDate?date }\""}}, {"query": {"sparql": "<s><s> \"SELECT DISTINCT?uri WHERE { res:JFK dbo:deathPlace?uri }\""}}, {"query": {"sparql": "<s><s> \"SELECT DISTINCT?uri WHERE { res:Juan Carlos I dbo:spouse?uri }\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE { res:Ice_Fire dbo:author?uri }\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE { res:The_Beatles dbo:band?uri }\""}}, {"query": {"sparql": "<s><s> \"SELECT DISTINCT?uri WHERE { res:North-Rhine Westphalia dbo:brewery?uri }\""}}, {"query": {"sparql": "<s><s> \"SELECT DISTINCT?date WHERE { res:Princess Diana dbo:deathDate?date }\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE { res:Intel dbo:foundedBy?uri }\""}}, {"query": {"sparql": "<s><s> \"SELECT DISTINCT?uri WHERE { res:PremierLeague dbo:player?uri }\""}}, {"query": {"sparql": "<s><s> \"SELECT DISTINCT?uri WHERE { res:Cat Stevens dbo:instrument?uri }\""}}, {"query": {"sparql": "<s><s> \"SELECT DISTINCT?uri WHERE { res:South Carolina dbo:river?uri } ORDER BY DESC(?uri) OFFSET 0 LIMIT 1\""}}, {"query": {"sparql": "<s> \"SELECT DISTINCT?uri WHERE { res:Rodzilla dbo:name?uri }\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE {?uri dbo:country?uri }\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE {?uri dbo:Bridge?uri }\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE { res:Facebook dbo:founder?uri } ORDER BY DESC(?uri) OFFSET 0 LIMIT 1\""}}, {"query": {"sparql": "<s><s> \"SELECT DISTINCT?uri WHERE {?uri rdf:type dbo:HikingTrail.?uri dbp:country?uri }\""}}, {"query": {"sparql": "<s> \"SELECT DISTINCT?uri WHERE {?uri dbo:numberOfPages?uri }\""}}, {"query": {"sparql": "<s> \"SELECT DISTINCT?uri WHERE { res:UnitedStates dbo:largestState?uri } ORDER BY DESC(?uri) OFFSET 0 LIMIT 1\""}}, {"query": {"sparql": " \"SELECT DISTINCT?uri WHERE {?uri dbo:Company?uri }\""}}, {"query": {"sparql": "<s> \"SELECT DISTINCT?uri WHERE { res:Columbus dbo:name?uri } ORDER BY DESC(?uri) OFFSET 0 LIMIT 1\""}}]} \ No newline at end of file diff --git a/bart/qald-10-test-predictions.csv b/bart/qald-10-test-predictions.csv index 2b9670c2f9a9038875a918a831f02dc78bc46c22..c3021686c221356346637714b3ced264ac522dec 100644 --- a/bart/qald-10-test-predictions.csv +++ b/bart/qald-10-test-predictions.csv @@ -1,394 +1,394 @@ -"After whom is the Riemannian geometry named?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P106> ?uri . }" -"Which animal participated in a military operation with the Australian Defence Force?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P170> ?uri . }" -"among the characters in the witcher, who has two unmarried partners, Yennefer of Vengerberg and Triss Merigold?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P170> ?uri . }" -"among the founders of tencent company, who has been member of national people’s congress?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P106> ?uri . }" -"among the other representative work of the author of hunter x hunter, which one is talking about middle school student?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P106> ?uri . }" -"On which stock exchanges are Siemens AG shares traded?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P106> ?uri . }" -"Apart from the book series the witcher, name all of the author’s notable work.","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P106> ?uri . }" -"are brooke raboutou and colin duffy from same state of the usa?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P106> ?uri . }" -"What is the boiling point of water?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P106> ?uri . }" -"At which school was Yayoi Kusama educated at?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P106> ?uri . }" -"Which High School did Allen Ginsberg attend?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P106> ?uri . }" -"On which island is the Indonesian capital located?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P106> ?uri . }" -"can i play don't starve on play station 4?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P106> ?uri . }" -"How many General Secretaries of the CPSU were there before Leonid Brezhnev?","SELECT (COUNT( DISTINCT?uri) AS?c) WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P170> ?uri . }" -"How many different presidents of Russia have there been that took the position after 1990?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P106> ?uri . }" -"Did adam ondra win a medal in the 2020 summer olympics?","SELECT DISTINCT?uri WHERE { ?uri <http://www.wikidata.org/prop/direct/P31> <http://www.wikidata.org/entity/Q936> . }" -"Did the Chicago Bulls win at least two seasons of the NBA championship?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P279*> <http://www.wikidata.org/entity/Q624> . }" -"Did Haruki Murakami receive the Nobel Prize in Literature?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P106> ?uri . }" -"Did Kobe Bryant leave the Lakers when LeBron James joined that team?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P279*> <http://www.wikidata.org/entity/Q624> . }" -"Did Rawson Marshall Thurber, the director of Red Notice also direct Titanic?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P106> ?uri . }" -"Did Venice at any point belong to the Austrian Empire?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P106> ?uri . }" -"Were at least two of the founders of tencent educated at the same university?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P106> ?uri . }" -"Do all of batman’s partner speak english as native language?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P106> ?uri . }" -"How many spouses do head of states have on average?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P106> ?uri . }" -"Was there at least one Formula 1 event on the AVUS?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P170> ?uri . }" -"Find all Turkish verbs ending with “uş” with their lemma.","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P106> ?uri . }" -"From which country are the beagles originally from?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P106> ?uri . }" -"From which country came the 2nd most winners of the Emmy Award ?","SELECT DISTINCT?uri WHERE { ?uri <http://www.wikidata.org/prop/direct/P31> <http://www.wikidata.org/entity/Q624> . }" -"Does the music style of Helloween belong to rock music?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P170> ?uri . }" -"Does the postal code 32423 belong to Minden?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P279> ?uri . }" -"has adam ondra been a winner of IFSC climbing world cup?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P279*> <http://www.wikidata.org/entity/Q624> . }" -"has life expectancy in iran grown in any year after 1999?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P279*> <http://www.wikidata.org/entity/Q924> . }" -"has population of Isfahan increased at any point after 2006?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P170> ?uri . }" -"Did Joe Cocker play at the Woodstock festival?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P279*> <http://www.wikidata.org/entity/Q624> . }" -"Did Udo Bölts participate in the Tour de France?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P170> ?uri . }" -"How many of Reinhold Messner's brothers still live?","SELECT (COUNT( DISTINCT?uri) AS?c) WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P106> ?uri . }" -"In which manner did Hemingway die?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P106> ?uri . }" -"In which industry does the House of Medici own a business?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P170> ?uri . }" -"How do people from Turkey call the official name of the united states of america?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P170> ?uri . }" -"How high is the Cologne Cathedral ?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P106> ?uri . }" -"How is the Harz called in Mandarin Chinese?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P106> ?uri . }" -"How many international airports are located within the city of Hamburg ?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P106> ?uri . }" -"On how many albums does Madonna perform?","SELECT (COUNT( DISTINCT?uri) AS?c) WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P106> ?uri . }" -"On how many albums does Mariah Carey perform?","SELECT (COUNT( DISTINCT?uri) AS?c) WHERE {?uri <http://www.wikidata.org/prop/direct/P279*> <http://www.wikidata.org/entity/Q624> . }" -"How many studio albums has Lana Del Rey have?","SELECT (COUNT( DISTINCT?uri) AS?c) WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P106> ?uri . }" -"How many ancient civilizations are there?","SELECT (COUNT( DISTINCT?uri) AS?c) WHERE {?uri <http://www.wikidata.org/prop/direct/P170> ?uri . }" -"In how many years did Kobe Bryant receive an NBA All-Defensive Team award?","SELECT (COUNT( DISTINCT?uri) AS?c) WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P106> ?uri . }" -"How many All-NBA Team awards have Shaquille O'Neal and Kobe Bryant received in the same year?","SELECT (COUNT( DISTINCT?uri) AS?c) WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P170> ?uri . }" -"How many literary works did Richard Bachman write?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P106> ?uri . }" -"How many notable works does Sarah J. Maas have?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P106> ?uri . }" -"Did Bryan Evenson work for at least one university where he was educated at?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P170> ?uri . }" -"How many children (including apopted ones) does Jeff Bezos have with his ex-wife?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P106> ?uri . }" -"How many children had Paul McCartney together with his ex-wife Linda McCartney?","SELECT (COUNT( DISTINCT?uri) AS?c) WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P106> ?uri . }" -"How many Chinese zodiac animals are there in total?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P106> ?uri . }" -"How many cities are part of the Pearl River Delta?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P170> ?uri . }" -"How many city-states are currently in the world?","SELECT (COUNT( DISTINCT?uri) AS?c) WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P106> ?uri . }" -"How many businesses did Steve Jobs found?","SELECT (COUNT( DISTINCT?uri) AS?c) WHERE {?uri <http://www.wikidata.org/prop/direct/P170> ?uri . }" -"How many countries have a democracy index higher than 7 and drive on the left side ?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P106> ?uri . }" -"How many countries have never been members of the UN?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P106> ?uri . }" -"How many countries are on the continent of South America ?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P106> ?uri . }" -"How many countries have mountains whose peaks are higher than 2000m above sea level?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P170> ?uri . }" -"How many fictional dragons are present in Game of Thrones?","SELECT (COUNT( DISTINCT?uri) AS?c) WHERE {?uri <http://www.wikidata.org/prop/direct/P279> ?uri . }" -"how many emmy awards has the tv series game of thrones won?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P106> ?uri . }" -"How many films are derived from the original Ghost in the Shell Manga?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P170> ?uri . }" -"How many French kings didn't die of natural causes?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P106> ?uri . }" -"How many given names has Queen Elizabeth II ?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P106> ?uri . }" -"How many different female mayors did Hamburg have?","SELECT (COUNT( DISTINCT?uri) AS?c) WHERE {?uri <http://www.wikidata.org/prop/direct/P170> ?uri . }" -"how many head of the state does iran have?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P106> ?uri . }" -"How many scholary articles have ImageNet as a subject?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P106> ?uri . }" -"How many inhabitants does the birthplace of Cristiano Ronaldo have?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P106> ?uri . }" -"How many Japanese writers received the Nobel Prize?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P106> ?uri . }" -"How many languages are widely used in India?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P106> ?uri . }" -"How many different colors can water take?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P106> ?uri . }" -"How many locations has Georges Braque worked at (work location)?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P170> ?uri . }" -"How many months does winter consist of in Germany?","SELECT (COUNT( DISTINCT?uri) AS?date) WHERE {?date <http://www.wikidata.org/prop/direct/P31/wdt:P106> ?date . }" -"How many movies does the Scream franchise have?","SELECT (COUNT( DISTINCT?uri) AS?c) WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P170> ?uri . }" -"How many movies has James Cameron directed prior to the year 2010?","SELECT (COUNT( DISTINCT?uri) AS?c) WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P170> ?uri . }" -"How many movies were directed by Akira Kurosawa ?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P106> ?uri . }" -"How many musical scales are there?","SELECT (COUNT( DISTINCT?uri) AS?c) WHERE {?uri <http://www.wikidata.org/prop/direct/P170> ?uri . }" -"How many public holidays does the state Bavaria have in a year?","SELECT (COUNT( DISTINCT?uri) AS?date) WHERE {?date <http://www.wikidata.org/prop/direct/P31/wdt:P106> ?date . }" -"How many literary works besides The Picture of Dorian Gray did its author write?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P106> ?uri . }" -"How many literary works did Mark Twain write in his lifetime?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P106> ?uri . }" -"How many occupations did Mark Twain have?","SELECT (COUNT( DISTINCT?uri) AS?c) WHERE {?uri <http://www.wikidata.org/prop/direct/P170> ?uri . }" -"how many of spiderman perfomers are citizens of the united kingdom?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P106> ?uri . }" -"how many official languages does the united states of america have?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P106> ?uri . }" -"How many official languages has Pakistan ?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P106> ?uri . }" -"How many Oscars did all the movies directed by Hayao Miyazaki combined win?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P106> ?uri . }" -"How many paintings of Pablo Picasso were ever in a museum?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P106> ?uri . }" -"How many people can play "Mensch ärgere dich nicht" at most?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P170> ?uri . }" -"How many people did Oscar Pistorius kill?","SELECT (COUNT( DISTINCT?uri) AS?c) WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P106> ?uri . }" -"How many people died due to the Great Leap Forward according to the highest estimate?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P170> ?uri . }" -"How many people have won the Nobel Prize in Literature since its inception?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P106> ?uri . }" -"How many people live in cities in the vicinity of the Nile ?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P106> ?uri . }" -"How many pitch classes are part of the chromatic scale?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P106> ?uri . }" -"how many plays has William Shakespeare written in the 16th century.","SELECT (COUNT( DISTINCT?uri) AS?c) WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P106> ?uri . }" -"How many poems did Allen Ginsberg published?","SELECT (COUNT( DISTINCT?uri) AS?c) WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P106> ?uri . }" -"How many political parties have ever had seats in the German Bundestag ?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P106> ?uri . }" -"How many positions did Kobe Bryant play in his team?","SELECT (COUNT( DISTINCT?uri) AS?c) WHERE {?uri <http://www.wikidata.org/prop/direct/P279*> <http://www.wikidata.org/entity/Q624> . }" -"How many prizes are there established by Alfred Nobel ?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P106> ?uri . }" -"Did SpaceX ever operate a space mission that was a failed launch?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P106> ?uri . }" -"How many people nominated for the nobel prize in chemistry didn't ever win it?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P106> ?uri . }" -"How many seasons does Pose have?","SELECT (COUNT( DISTINCT?uri) AS?c) WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P106> ?uri . }" -"How many seats are there in the current German Bundestag ?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P106> ?uri . }" -"How many siblings had the author of “Little Women” ?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P106> ?uri . }" -"How many ski resorts were there ever in France?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P170> ?uri . }" -"How many songs were composed by Jay Chou but not released in his own albums?","SELECT (COUNT( DISTINCT?uri) AS?c) WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P106> ?uri . }" -"How many works that are based on Spider-Man has Venom been a part of?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P170> ?uri . }" -"How many spouses had Rama V (one of the former Kings of Siam)?","SELECT (COUNT( DISTINCT?uri) AS?c) WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P106> ?uri . }" -"Does Switzerland have a place north of the Point (8.57 47.8)?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P106> ?uri . }" -"how many times has Giorgio Moroder won golden globe award?","SELECT (COUNT( DISTINCT?uri) AS?c) WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P106> ?uri . }" -"How many Olympic Games has Kobe Bryant taken part in?","SELECT (COUNT( DISTINCT?uri) AS?c) WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P106> ?uri . }" -"How many times was Oskar Lafontaine elected Member of the Landtag of Saarland?","SELECT (COUNT( DISTINCT?uri) AS?c) WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P106> ?uri . }" -"How many wars did the Empire of Japan participate in?","SELECT (COUNT( DISTINCT?uri) AS?c) WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P106> ?uri . }" -"How many women were amongst the founding members of “The Bridge” (“Die Brücke”)?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P170> ?uri . }" -"Who has a higher observed lifespan out of the common bottlenose dolphin and the brown bear?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P106> ?uri . }" -"What is TNFAIP1 ?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P106> ?uri . }" -"How often did Naomi Novik win the nebula award?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P106> ?uri . }" -"How often did the Mongols try to invade Japan?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P170> ?uri . }" -"How often was Naomi Novik nominated for a Hugo Award?","SELECT DISTINCT?uri WHERE { ?uri <http://www.wikidata.org/prop/direct/P31> <http://www.wikidata.org/entity/Q936> . }" -"How many years did the second oldest dog in the world live?","SELECT (COUNT( DISTINCT?uri) AS?date) WHERE {?date <http://www.wikidata.org/prop/direct/P279> ?date . }" -"if someone died in 1969, is there any chance they heard of queen’s music?","SELECT DISTINCT?uri WHERE { ?uri <http://www.wikidata.org/prop/direct/P31> <http://www.wikidata.org/entity/Q624> . }" -"Is Dr. Pepper named after its inventor?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P106> ?uri . }" -"In how many movies did Carey Mulligan and Ryan Gosling star together?","SELECT (COUNT( DISTINCT?uri) AS?c) WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P170> ?uri . }" -"in the country where ghost in the shell is born, who is the current head of the state?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P106> ?uri . }" -"How many rivers are in or next to the U.S. state where cage the elephant is from?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P170> ?uri . }" -"In which federal state is the Veltins brewery headquarter?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P170> ?uri . }" -"In which stadium do the New York Yankees play?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P170> ?uri . }" -"In which countries is the Himalayas located?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P170> ?uri . }" -"Was Isfahan a capital in the year 934?","SELECT DISTINCT?uri WHERE { ?uri <http://www.wikidata.org/prop/direct/P31> <http://www.wikidata.org/entity/Q936> . }" -"In how many countries has IKEA been established?","SELECT (COUNT( DISTINCT?uri) AS?c) WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P106> ?uri . }" -"In which country did the United Fruit Company have their headquarters?","SELECT DISTINCT?uri WHERE { ?uri <http://www.wikidata.org/prop/direct/P31> <http://www.wikidata.org/entity/Q624> . }" -"In how many countries is pysanka practiced?","SELECT (COUNT( DISTINCT?uri) AS?c) WHERE {?uri <http://www.wikidata.org/prop/direct/P170> ?uri . }" -"In which country is Oberirrach ?","SELECT DISTINCT?uri WHERE { ?uri <http://www.wikidata.org/prop/direct/P31> <http://www.wikidata.org/entity/Q936> . }" -"In which country was Spotify created?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P106> ?uri . }" -"What is the song Vogue by Madonna named after?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P170> ?uri . }" -"in which language does the united stated have the shortest short name?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P106> ?uri . }" -"Does Bremerhaven's local dialing code start with 4?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P106> ?uri . }" -"In how many movies was Johnny Depp casted in?","SELECT (COUNT( DISTINCT?uri) AS?c) WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P161> ?uri . }" -"In which year did ABBA publish their album The Visitors ?","SELECT DISTINCT?uri WHERE { ?uri <http://www.wikidata.org/prop/direct/P31> <http://www.wikidata.org/entity/Q936> . }" -"In which year was the author of “The Vanishing Half” born?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P106> ?uri . }" -"Is After Eight manufactured by Unilever?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P106> ?uri . }" -"Is ALDI also in Italy?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P170> ?uri . }" -"is Isfahan a big city?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P170> ?uri . }" -"Is math related to science ?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P106> ?uri . }" -"Is Python a kind of Programming languages?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P106> ?uri . }" -"Is samurai champloo a piece of original work or an adaptation?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P170> ?uri . }" -"Was the first female chancellor in Germany ever married?","SELECT DISTINCT?uri WHERE { ?uri <http://www.wikidata.org/prop/direct/P106> <http://www.wikidata.org/entity/Q936> . }" -"Is the Mariana Trench deeper than Mount Everest is high (above sea level)?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P170> ?uri . }" -"Is the number of countries in Europe larger than that in Asia?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P170> ?uri . }" -"Is the production company of samurai champloo still existing?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P170> ?uri . }" -"is there female main character in hunter x hunter?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P170> ?uri . }" -"Is water colorless?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P279*> <http://www.wikidata.org/entity/Q936> . }" -"Is Axel Rose a member of Guns N' Roses?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P170> ?uri . }" -"Is the capital of Iran bigger than that of Germany?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P170> ?uri . }" -"Is the Weser longer than the Rhine?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P170> ?uri . }" -"Is Tony Blair taller than Tiger Woods?","SELECT (COUNT( DISTINCT?uri) AS?height) WHERE {?height <http://www.wikidata.org/prop/direct/P170> ?height . }" -"Is Chicago located at Lake Michigan?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P170> ?uri . }" -"Is the district of Höxter next to the district of Paderborn?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P170> ?uri . }" -"Are part of the Harz mountains in the district of Nordhausen?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P170> ?uri . }" -"How many people won the Nobel Prize in Literature or Physics since 2000?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P106> ?uri . }" -"How many african-american people got a star on the Hollywood Walk of Fame?","SELECT (COUNT( DISTINCT?uri) AS?c) WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P106> ?uri . }" -"With how many countries does Australia share a border?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P106> ?uri . }" -"How many female Chinese Empresses have there been?","SELECT (COUNT( DISTINCT?uri) AS?c) WHERE {?uri <http://www.wikidata.org/prop/direct/P170> ?uri . }" -"Of which political party was Joseph Beuys a member?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P106> ?uri . }" -"In what year did the Hollywood Walk of Fame open?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P170> ?uri . }" -"on which video streaming services can i watch hunter x hunter anime series?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P279*> <http://www.wikidata.org/entity/Q924> . }" -"People of what age belong to the Silent Generation ?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P279*> <http://www.wikidata.org/entity/Q624> . }" -"In what year did the district of Höxter come into existence?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P170> ?uri . }" -"Is the Linux Foundation verified on Twitter?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P106> ?uri . }" -"Were Angela Merkel and Tony Blair born in the same year?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P170> ?uri . }" -"Do more than 100000000 people speak Japanese?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P279*> <http://www.wikidata.org/entity/Q936> . }" -"Tell me all the cast members of the film Red Notice directed by Rawson Marshall Thurber ?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P170> ?uri . }" -"The first album of Jay Chou","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P279*> <http://www.wikidata.org/entity/Q936> . }" -"Through which countries does the Danube go?","SELECT DISTINCT?uri WHERE { ?uri <http://www.wikidata.org/prop/direct/P31> <http://www.wikidata.org/entity/Q624> . }" -"What do sperm whales mainly eat?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P106> ?uri . }" -"Was Frida Kahlo a surrealist?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P170> ?uri . }" -"Was Funny Games and its remake directed by different persons?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P170> ?uri . }" -"Was Google founded by Bill Gates?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P106> ?uri . }" -"What is the second letter in the Greek alphabet?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P106> ?uri . }" -"Was it the cancer that caused the death of Steve Jobs who was the CEO of Apple?","SELECT DISTINCT?uri WHERE { ?uri <http://www.wikidata.org/prop/direct/P106> <http://www.wikidata.org/entity/Q936> . }" -"Was Shaquille O'Neal the teammate of Kobe Bryant in the year of 2000?","SELECT DISTINCT?uri WHERE { ?uri <http://www.wikidata.org/prop/direct/P31> <http://www.wikidata.org/entity/Q936> . }" -"Was Shaquille O'Neal, as the basketball player, also an film actor?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P170> ?uri . }" -"Was the first album of the band Darkside released in 2012?","SELECT DISTINCT?uri WHERE { ?uri <http://www.wikidata.org/prop/direct/P31> <http://www.wikidata.org/entity/Q936> . }" -"What are the spin-offs of Breaking Bad?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P106> ?uri . }" -"Which river flows through the Grand Canyon?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P170> ?uri . }" -"What was the key event related to Salvador Dalí?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P170> ?uri . }" -"Who passed the German Occupational Safety and Health Act?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P170> ?uri . }" -"What are the German names of academic disciplines containing “linguistik”?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P106> ?uri . }" -"What are the names of the head of states of Germany and France ?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P106> ?uri . }" -"What are the professions of John Lennon’s sons?","SELECT DISTINCT?uri WHERE { ?uri <http://www.wikidata.org/prop/direct/P31> <http://www.wikidata.org/entity/Q936> . }" -"What are the titles of the Star Wars series movies?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P170> ?uri . }" -"What came first: the TV show The Flintstones or the end of racial discrimination in voting in the US ?","SELECT DISTINCT?uri WHERE { ?uri <http://www.wikidata.org/prop/direct/P31> <http://www.wikidata.org/entity/Q936> . }" -"What colors does the German national flag have?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P106> ?uri . }" -"What did the suffragettes stand for?","SELECT DISTINCT?uri WHERE { ?uri <http://www.wikidata.org/prop/direct/P31> <http://www.wikidata.org/entity/Q624> . }" -"What do you call a female form of an emperor in English?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P279*> <http://www.wikidata.org/entity/Q624> . }" -"What event killed the most people in the years 1910 to 1920?","SELECT DISTINCT?uri WHERE { ?uri <http://www.wikidata.org/prop/direct/P31> <http://www.wikidata.org/entity/Q936> . }" -"Does the ATI Company still exist?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P279*> <http://www.wikidata.org/entity/Q1724> . }" -"What happened to the dinosaurs ?","SELECT DISTINCT?uri WHERE { }" -"What instruments did Louis Armstrong play?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P279*> <http://www.wikidata.org/entity/Q624> . }" -"what did the author of the phrase: "Alea iacta est" die of?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P106> ?uri . }" -"What is the binary gender of the partner of Allen Ginsberg ?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P106> ?uri . }" -"What is the capital of the prefecture Tokyo ?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P106> ?uri . }" -"What is the Chinese zodiac animal that follows the ox?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P106> ?uri . }" -"What is the combined total revenue of three largest Big Tech companies ordered by number of employees?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P106> ?uri . }" -"What is the coordinate location of Shenzhen ?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P106> ?uri . }" -"What is the Erlangen program ?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P106> ?uri . }" -"Did the Roland Corporation produce synthesizers?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P106> ?uri . }" -"How many perople do the Port of Rotterdam employ?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P170> ?uri . }" -"what is the main subject of the manga "your lie in april": primary school, middle school or high school student?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P106> ?uri . }" -"What is the mother tongue of the author Chimamanda Ngozi Adichie ?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P106> ?uri . }" -"Who was the partner of Allen Ginsberg?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P106> ?uri . }" -"What is the second game developed by Piranha Bytes?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P170> ?uri . }" -"What is the TV-show that starred Rowan Atkinson , had 4 seasons and started in 1983?","SELECT DISTINCT?uri WHERE { ?uri <http://www.wikidata.org/prop/direct/P31> <http://www.wikidata.org/entity/Q936> . }" -"What is the english nickname of Ella Fitzgerald?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P106> ?uri . }" -"What are the occupations of Kazuo Ishiguro’s daughter?","SELECT DISTINCT?uri WHERE { ?uri <http://www.wikidata.org/prop/direct/P31> <http://www.wikidata.org/entity/Q936> . }" -"What are the occupations of Nat King Cole?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P170> ?uri . }" -"what is the official language of iran?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P106> ?uri . }" -"What is the population in Freiburg ?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P106> ?uri . }" -"What is the title of the 2020 released movie in which Carey Mulligan was the main actress?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P170> ?uri . }" -"What does Ray-Ban produce primarily?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P170> ?uri . }" -"What language did the famous king, who was also a student of Aristotle's , speak?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P106> ?uri . }" -"What language do they speak in Poland ?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P106> ?uri . }" -"How many different languages are spoken in West Europe?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P106> ?uri . }" -"Is Germany bigger than Poland?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P170> ?uri . }" -"What notes does a C major chord consist of?","SELECT DISTINCT?uri WHERE { ?uri <http://www.wikidata.org/prop/direct/P106> <http://www.wikidata.org/entity/Q936> . }" -"How many different occupations did/do spouses of winners of the Nobel Prize in Literature hold?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P106> ?uri . }" -"How many other video games began the same year as Dead by Daylight?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P170> ?uri . }" -"What other civilizations existed during the Aztecs ?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P106> ?uri . }" -"What brand uses petroleum jelly?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P106> ?uri . }" -"How many other musical films were launched the same year as Grease?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P170> ?uri . }" -"Which creator of The OA also acted in it?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P170> ?uri . }" -"What albums has Atif Aslam been on?","SELECT DISTINCT?uri WHERE { ?uri <http://www.wikidata.org/prop/direct/P31> <http://www.wikidata.org/entity/Q936> . }" -"What was Ada Lovelace’s noble title?","SELECT DISTINCT?uri WHERE { ?uri <http://www.wikidata.org/prop/direct/P31> <http://www.wikidata.org/entity/Q936> . }" -"What was Janus the god of?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P106> ?uri . }" -"Who was the fellow Hobbit who was an enemy of Frodo?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P170> ?uri . }" -"What was the last painting that Van Gogh painted?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P106> ?uri . }" -"What was the main subject addressed in the Deep Purple song “Smoke on the water”?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P170> ?uri . }" -"When did the first sperm whales exist?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P279*> <http://www.wikidata.org/entity/Q1724> . }" -"What year did the Berlin Wall fall?","SELECT DISTINCT?uri WHERE { ?uri <http://www.wikidata.org/prop/direct/P31> <http://www.wikidata.org/entity/Q936> . }" -"What year was Riverdale first aired?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P170> ?uri . }" -"When did Allen Ginsberg die?","SELECT DISTINCT?uri WHERE { ?uri <http://www.wikidata.org/prop/direct/P31> <http://www.wikidata.org/entity/Q936> . }" -"When did Ella Fitzgerald die?","SELECT DISTINCT?uri WHERE { ?uri <http://www.wikidata.org/prop/direct/P31> <http://www.wikidata.org/entity/Q936> . }" -"when did human first start to bouldering?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P106> ?uri . }" -"When did Pakistan become independent?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P279*> <http://www.wikidata.org/entity/Q539> . }" -"When did Rumi die?","SELECT DISTINCT?uri WHERE { ?uri <http://www.wikidata.org/prop/direct/P31> <http://www.wikidata.org/entity/Q936> . }" -"When did the brother of the author of Slaughterhouse Five die?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P279*> <http://www.wikidata.org/entity/Q539> . }" -"when was the creator of saturday night live born?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P106> ?uri . }" -"Who was part of the Hambach Festival?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P170> ?uri . }" -"When did The OA was first released?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P279*> <http://www.wikidata.org/entity/Q936> . }" -"How many casualties were a result of the Troubles?","SELECT (COUNT( DISTINCT?uri) AS?c) WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P106> ?uri . }" -"When did the Weimar Republic start?","SELECT DISTINCT?uri WHERE { ?uri <http://www.wikidata.org/prop/direct/P31> <http://www.wikidata.org/entity/Q936> . }" -"When did World War II officially end?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P279*> <http://www.wikidata.org/entity/Q624> . }" -"when is the first ironman world championship?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P279*> <http://www.wikidata.org/entity/Q924> . }" -"when was the magazine in which hunter x hunter is published established?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P106> ?uri . }" -"When the film Red Notice was released?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P170> ?uri . }" -"When was Cologne Cathedral built?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P279*> <http://www.wikidata.org/entity/Q936> . }" -"What can be done against gout?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P170> ?uri . }" -"When was HIV first identified?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P106> ?uri . }" -"When was the first article about Liquid State Machines published?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P106> ?uri . }" -"When was Marlene Dietrich born?","SELECT DISTINCT?date WHERE {?date <http://www.wikidata.org/prop/direct/P279*> <http://www.wikidata.org/entity/Q924> . }" -"When was Penicillin discovered?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P279*> <http://www.wikidata.org/entity/Q1724> . }" -"When was Rumi born?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P279*> <http://www.wikidata.org/entity/Q936> . }" -"When was the beginning of Romanticism ?","SELECT DISTINCT?uri WHERE { ?uri <http://www.wikidata.org/prop/direct/P31> <http://www.wikidata.org/entity/Q936> . }" -"When was the Echo Music Prize abolished?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P279*> <http://www.wikidata.org/entity/Q924> . }" -"When was the first album of the American band Typhoon released?","SELECT DISTINCT?uri WHERE { ?uri <http://www.wikidata.org/prop/direct/P106> <http://www.wikidata.org/entity/Q936> . }" -"When was the Hamburg Airport inaugurated?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P170> ?uri . }" -"When was the Hamburg S-Bahn officially opened?","SELECT DISTINCT?uri WHERE { ?uri <http://www.wikidata.org/prop/direct/P31> <http://www.wikidata.org/entity/Q936> . }" -"When was the jazz club Birdland in Hamburg founded?","SELECT DISTINCT?uri WHERE { ?uri <http://www.wikidata.org/prop/direct/P106> <http://www.wikidata.org/entity/Q936> . }" -"When was the poem Howl written?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P279*> <http://www.wikidata.org/entity/Q539> . }" -"When was the university of Cambridge founded?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P106> ?uri . }" -"When was the University of Hamburg founded?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P170> ?uri . }" -"When was the University of Saskatchewan founded?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P279*> <http://www.wikidata.org/entity/Q624> . }" -"When was the Vatican City created?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P170> ?uri . }" -"When was United Fruit Company founded?","SELECT DISTINCT?date WHERE {?date <http://www.wikidata.org/prop/direct/P31/wdt:P106> ?date . }" -"Where did Trotzky die?","SELECT DISTINCT?uri WHERE { ?uri <http://www.wikidata.org/prop/direct/P31> <http://www.wikidata.org/entity/Q936> . }" -"Where are both The Call of the Wild and White Fang set, the most two famous works of Jack London?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P170> ?uri . }" -"Where did the Hambach Festival happen?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P170> ?uri . }" -"Where do the novels of the franchise The Lord of the Rings take place?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P170> ?uri . }" -"Where does the Nutri-Score originate from?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P170> ?uri . }" -"Are there at least two winners of the Academy Award for Best Actress who have been educated at the same institution?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P170> ?uri . }" -"Where was K-pop star Lisa Manoban born?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P170> ?uri . }" -"What is the highest point of Norway?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P106> ?height . }" -"Where did the psychedelic band “Khruangbin” form?","SELECT DISTINCT?uri WHERE { ?uri <http://www.wikidata.org/prop/direct/P31> <http://www.wikidata.org/entity/Q936> . }" -"Where was Caesar murdered?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P106> ?uri . }" -"Where was Goethe’s unmarried partner born ?","SELECT DISTINCT?uri WHERE { ?uri <http://www.wikidata.org/prop/direct/P31> <http://www.wikidata.org/entity/Q624> . }" -"Where was Roland Corporation founded?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P106> ?uri . }" -"Where was the author of The Catcher in the Rye born ?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P106> ?uri . }" -"Who developed the Erlangen program?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P106> ?uri . }" -"Which actor starring in Free Guy also starred in Deadpool?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P170> ?uri . }" -"Which American presidents followed in their father‘s step and also became the president?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P106> ?uri . }" -"which animal can possibly live longer, panda or koala?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P106> ?uri . }" -"Which archipelago has more islands: the Galápagos Islands or the Hawaiian Islands ?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P170> ?uri . }" -"Which art movement was Yoko Ono part of?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P170> ?uri . }" -"which band is created earlier, queen or pink floyd?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P279*> <http://www.wikidata.org/entity/Q624> . }" -"What caused Kobe Bryant's Death?","SELECT DISTINCT?uri WHERE { ?uri <http://www.wikidata.org/prop/direct/P31> <http://www.wikidata.org/entity/Q936> . }" -"What are the opposites of zero?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P106> ?uri . }" -"Which businesses are founded by the person in charge of Tesla?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P106> ?uri . }" -"Did Germany have a population growth of at least 1% since 2010?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P170> ?uri . }" -"Which aircraft did Howard Hughes build?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P106> ?uri . }" -"Which country has more official languages: South Africa (Q258) or Ethiopia ?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P279*> <http://www.wikidata.org/entity/Q6279> . }" -"Is throat singing a tradition?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P170> ?uri . }" -"Which disease caused the death of Mark Twain?","SELECT DISTINCT?uri WHERE { ?uri <http://www.wikidata.org/prop/direct/P31> <http://www.wikidata.org/entity/Q936> . }" -"Which diseases can be caused by smoking ?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P106> ?uri . }" -"Which genre that Cage the Elephant belongs to has the fewest english characters?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P170> ?uri . }" -"Which takes less space? 1kg of lead or 1kg of iron.","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P170> ?uri . }" -"Which kingdom preceded the Thonburi Kingdom ?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P170> ?uri . }" -"How many mountains are located in Germany?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P170> ?uri . }" -"Which movements is the painting “Les Demoiselles d'Avignon” assigned to?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P106> ?uri . }" -"Which movies belong to the Cornetto trilogy ?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P170> ?uri . }" -"During what event was the Four Policemen Council proposed?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P170> ?uri . }" -"Which NBA teams have won the most seasons?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P106> ?uri . }" -"Which of the dragons in Game of Thrones died?","SELECT DISTINCT?uri WHERE { ?uri <http://www.wikidata.org/prop/direct/P31> <http://www.wikidata.org/entity/Q936> . }" -"Which other movies by the director of Another Round also starred Mads Mikkelsen ?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P170> ?uri . }" -"Which egyptian pyramid is the tallest?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P106> ?height . }" -"What is the offical language of Taipei?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P106> ?uri . }" -"Which shows aired for the first time the same year as Saturday Night Live ?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P170> ?uri . }" -"Which songs made up the album Fijación Oral vol. 1 ?","SELECT DISTINCT?uri WHERE { ?uri <http://www.wikidata.org/prop/direct/P106> <http://www.wikidata.org/entity/Q936> . }" -"Which started first: impressionism or expressionism (art movements)?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P106> ?uri . }" -"which state inside USA is batman living in?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P170> ?uri . }" -"which swordfighter in the lord of the rings marry a half-elven and belong to rangers of the north?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P170> ?uri . }" -"Which teams participated in the 2020 UEFA Champions League Final ?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P106> ?uri . }" -"Which universities have more than 200000 students?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P106> ?uri . }" -"which university is established earlier, university of oxford or university of cambridge?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P106> ?uri . }" -"Who developed WordNet?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P106> ?uri . }" -"Who are the actresses in Portrait of a Lady on Fire?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P170> ?uri . }" -"Did Michael Jordan and Kobe Bryant play for the same team?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P279*> <http://www.wikidata.org/entity/Q624> . }" -"Who created the Turing machine?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P106> ?uri . }" -"When was the Hambach Castle built?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P170> ?uri . }" -"Who died at the North Pole?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P106> ?uri . }" -"Who directed Anne with an E ?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P106> ?uri . }" -"Who wrote "Prototypical Networks for Few-shot Learning"?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P106> ?uri . }" -"Who founded “The Blue Rider”?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P170> ?uri . }" -"Who founded the Worpswede artist colony ?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P106> ?uri . }" -"Who is the author of “Convenience Store Woman” ?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P106> ?uri . }" -"Who is the soccer player with the most goals in their career?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P106> ?uri . }" -"Who is the creator of the Dinosaurs tv show ?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P106> ?uri . }" -"Who is the current president of the German Bundestag currently?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P170> ?uri . }" -"Who is the most wealthy entrepreneur?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P106> ?uri . }" -"Who is the oldest cast member of the Netflix show “Queer Eye” ?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P279*> <http://www.wikidata.org/entity/Q624> . }" -"Who is the publisher of Smite ?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P106> ?uri . }" -"Who wrote the Erlangen program?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P106> ?uri . }" -"In which country is the Nanga Parbat located?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P170> ?uri . }" -"who produced Star Wars: Episode VI – Return of the Jedi?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P170> ?uri . }" -"Who was an actor in more movies, Daniel Day Lewis or Paul Dano ?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P106> ?uri . }" -"For what literature prize was Simone de Beauvoir nominated?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P106> ?uri . }" -"What is the website of NPR's “Tiny Desk Concert”?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P170> ?uri . }" -"Who was the creator of Boo-Boo Bear ?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P106> ?uri . }" -"Who was the creator of Unbreakable Kimmy Schmidt ?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P106> ?uri . }" -"Who was the director of Llamas with Hats ?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P106> ?uri . }" -"Who founded the Roland Corporation?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P106> ?uri . }" -"Who was the original actor who played Pinhead ?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P106> ?uri . }" -"Who were the parents of Socrates ?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P106> ?uri . }" -"Who wrote Anne of Green Gables ?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P106> ?uri . }" -"Who wrote the poem Howl ?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P106> ?uri . }" -"Who's the author of The Hellbound Heart ?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P106> ?uri . }" -"Whom did Clara Westhoff marry?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P170> ?uri . }" -"what is the oldest film festival?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P106> ?uri . }" -"When was Athens founded?","SELECT DISTINCT?date WHERE {?date <http://www.wikidata.org/prop/direct/P31/wdt:P106> ?date . }" -"which river is longer, the Seine or Elbe?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P279*> <http://www.wikidata.org/entity/Q624> . }" -"which game is created earlier, super mario bros or Pac-Man?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P170> ?uri . }" -"who is the youngested member in g-idle?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P106> ?uri . }" -"who is older, Lionel Messi or Cristiano Ronaldo?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P279*> <http://www.wikidata.org/entity/Q624> . }" -"Is heidelberg university or university hamburg founded earlier?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P170> ?uri . }" -"which forest is bigger, Amazon Rainforest or Congo Basin?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P170> ?uri . }" -"Does Samsung Electronics or Apple have more employees?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P170> ?uri . }" -"which company is founded later, samsung or sony?","SELECT DISTINCT?uri WHERE { ?uri <http://www.wikidata.org/prop/direct/P31> <http://www.wikidata.org/entity/Q936> . }" -"who is taller, Lionel Messi or Cristiano Ronaldo?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P279*> <http://www.wikidata.org/entity/Q624> . }" -"who has won more NBA awards, Michael Jordan or Kobe Bean Bryant?","SELECT DISTINCT?uri WHERE { ?uri <http://www.wikidata.org/prop/direct/P31> <http://www.wikidata.org/entity/Q624> . }" -"Did Michael Jordan ever weigh more than Kobe Bean Bryant?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P279*> <http://www.wikidata.org/entity/Q624> . }" -"Who is older, Sebastian Vettel or Lewis Hamilton?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P279*> <http://www.wikidata.org/entity/Q1724> . }" -"which city is more populated, copenhagen or amsterdam?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P170> ?uri . }" -"How many things are part of the "One Piece" Franchise?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P170> ?uri . }" -"How many fictional female swordfighters are there?","SELECT (COUNT( DISTINCT?uri) AS?c) WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P106> ?uri . }" -"which company started earlier, Black Diamond Equipment or la sportiva?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P170> ?uri . }" -"which desert is bigger, sahara desert or arabian desert?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P170> ?uri . }" -"who lives longer, series black or bellatrix Lestrange?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P106> ?uri . }" -"What is the area of the great lakes?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P170> ?uri . }" -"What is native name of the composer of the Japanese national anthem?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P106> ?uri . }" -"Who is the founder of the capital of Vietnam?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P106> ?uri . }" -"Who is the manager of the operator of Neumayer III?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P170> ?uri . }" -"How high is the mountain on which Günther Messner died?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P279*> <http://www.wikidata.org/entity/Q924> . }" -"What is the twitter name of Running Wild?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P106> ?uri . }" -"How many times did the Italian national soccer team win the Fifa World Cup?","SELECT (COUNT( DISTINCT?uri) AS?c) WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P106> ?uri . }" -"What is the area of the capital of Spitsbergen?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P170> ?uri . }" -"What percentage of Andorra is covered with water?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P170> ?uri . }" -"How many countries are located around the euorpean Lake Constance?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P170> ?uri . }" -"With how many persons was Richard Burton married?","SELECT (COUNT( DISTINCT?uri) AS?c) WHERE {?uri <http://www.wikidata.org/prop/direct/P170> ?uri . }" -"At what coordinates was the "Sender Teutoburger Wald" erected?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P170> ?uri . }" -"Where is the poet Alexander Pope buried?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P106> ?uri . }" -"In what country is the Kandahar-downhill?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P170> ?uri . }" -"Who founded the architectural firm who planned the Elbphilharmonie?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P106> ?uri . }" -"Where are the founders of the band Metallica from?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P170> ?uri . }" -"Where does the Granny Smith apple variety come from?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P106> ?uri . }" -"What is the Fujiyama made of?","SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31/wdt:P106> ?uri . }" +"After whom is the Riemannian geometry named?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Riemannian_Geometry> <http://dbpedia.org/ontology/name> ?uri }" +"Which animal participated in a military operation with the Australian Defence Force?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Australian_Defence_Force> <http://dbpedia.org/ontology/animal> ?uri } ORDER BY DESC(?uri) OFFSET 0 LIMIT 1" +"among the characters in the witcher, who has two unmarried partners, Yennefer of Vengerberg and Triss Merigold?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Yennefer> <http://dbpedia.org/ontology/spouse> ?uri }" +"among the founders of tencent company, who has been member of national people’s congress?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Tencent> <http://dbpedia.org/ontology/founder> ?uri }" +"among the other representative work of the author of hunter x hunter, which one is talking about middle school student?","SELECT DISTINCT?uri WHERE {?uri <http://dbpedia.org/ontology/author> ?uri }" +"On which stock exchanges are Siemens AG shares traded?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Siemens> AG <http://dbpedia.org/ontology/stockExchange> ?uri }" +"Apart from the book series the witcher, name all of the author’s notable work.","SELECT DISTINCT?uri WHERE {?uri <http://dbpedia.org/ontology/author> ?uri } ORDER BY DESC(?uri) OFFSET 0 LIMIT 1" +"are brooke raboutou and colin duffy from same state of the usa?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Colin> duffy <http://dbpedia.org/ontology/state> ?uri }" +"What is the boiling point of water?","SELECT DISTINCT?uri WHERE {?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Water> }" +"At which school was Yayoi Kusama educated at?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Yayoi> Kusama <http://dbpedia.org/ontology/school> ?uri }" +"Which High School did Allen Ginsberg attend?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Allen> Ginsberg <http://dbpedia.org/ontology/highSchool> ?uri }" +"On which island is the Indonesian capital located?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Indonesia> <http://dbpedia.org/ontology/capital> ?uri }" +"can i play don't starve on play station 4?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/PlayStation> 4 <http://dbpedia.org/ontology/starring> ?uri }" +"How many General Secretaries of the CPSU were there before Leonid Brezhnev?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Leonid> Brezhnev <http://dbpedia.org/ontology/GeneralSecretary> ?uri }" +"How many different presidents of Russia have there been that took the position after 1990?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Russia> <http://dbpedia.org/ontology/leader> ?uri } ORDER BY DESC(?uri) OFFSET 0 LIMIT 1" +"Did adam ondra win a medal in the 2020 summer olympics?","ASK WHERE { <http://dbpedia.org/resource/2019_Summer_Olympics> <http://dbpedia.org/ontology/medalist> ?uri }" +"Did the Chicago Bulls win at least two seasons of the NBA championship?","ASK WHERE { <http://dbpedia.org/resource/Chicago_Bulls> <http://dbpedia.org/ontology/title> ?uri }" +"Did Haruki Murakami receive the Nobel Prize in Literature?","ASK WHERE { <http://dbpedia.org/resource/Haruki> Murakami <http://dbpedia.org/ontology/award> ?uri }" +"Did Kobe Bryant leave the Lakers when LeBron James joined that team?","ASK WHERE { <http://dbpedia.org/resource/Kobe_Bryson> <http://dbpedia.org/ontology/located> ?uri }" +"Did Rawson Marshall Thurber, the director of Red Notice also direct Titanic?","ASK WHERE { <http://dbpedia.org/resource/Red> Notice <http://dbpedia.org/ontology/director> ?uri }" +"Did Venice at any point belong to the Austrian Empire?","ASK WHERE { <http://dbpedia.org/resource/Venice> <http://dbpedia.org/ontology/country> <http://dbpedia.org/resource/Austria> }" +"Were at least two of the founders of tencent educated at the same university?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Tencent> <http://dbpedia.org/ontology/foundedBy> ?uri }" +"Do all of batman’s partner speak english as native language?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Batman> <http://dbpedia.org/ontology/spouse> ?uri }" +"How many spouses do head of states have on average?","SELECT DISTINCT?uri WHERE {?uri <http://dbpedia.org/ontology/spouse> ?uri }" +"Was there at least one Formula 1 event on the AVUS?","ASK WHERE { <http://dbpedia.org/resource/AVUS> <http://dbpedia.org/ontology/Formula> 1Event ?uri }" +"Find all Turkish verbs ending with “uş” with their lemma.","SELECT DISTINCT?uri WHERE {?uri a <http://dbpedia.org/ontology/TurkishVerbsEnd> ?uri }" +"From which country are the beagles originally from?","SELECT DISTINCT?uri WHERE {?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> dbr:Beagle ; <http://dbpedia.org/ontology/country> ?uri }" +"From which country came the 2nd most winners of the Emmy Award ?","SELECT DISTINCT?uri WHERE {?uri <http://dbpedia.org/ontology/country> ?uri }" +"Does the music style of Helloween belong to rock music?","ASK WHERE { <http://dbpedia.org/resource/Helloween> <http://dbpedia.org/ontology/genre> ?uri }" +"Does the postal code 32423 belong to Minden?","ASK WHERE { <http://dbpedia.org/resource/Minden> <http://dbpedia.org/ontology/postalCode> ?uri }" +"has adam ondra been a winner of IFSC climbing world cup?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/adam> <http://dbpedia.org/ontology/World_Cup> ?uri }" +"has life expectancy in iran grown in any year after 1999?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/iran> <http://dbpedia.org/ontology/populationTotal> ?uri }" +"has population of Isfahan increased at any point after 2006?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Isfahan> <http://dbpedia.org/ontology/population> ?uri }" +"Did Joe Cocker play at the Woodstock festival?","ASK WHERE { <http://dbpedia.org/resource/Woodstock> <http://dbpedia.org/ontology/band> ?uri }" +"Did Udo Bölts participate in the Tour de France?","ASK WHERE { <http://dbpedia.org/resource/Udo> Bölts <http://dbpedia.org/ontology/Tour> de France ?uri }" +"How many of Reinhold Messner's brothers still live?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Reinhold> Messner <http://dbpedia.org/ontology/brother> ?uri }" +"In which manner did Hemingway die?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Hemingway> <http://dbpedia.org/ontology/deathPlace> ?uri }" +"In which industry does the House of Medici own a business?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/House> of Medici <http://dbpedia.org/ontology/industry> ?uri }" +"How do people from Turkey call the official name of the united states of america?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/UnitedStates> <http://dbpedia.org/ontology/officialName> ?uri }" +"How high is the Cologne Cathedral ?","SELECT DISTINCT?height WHERE {?height <http://dbpedia.org/ontology/church> ?height } ORDER BY DESC(?height) OFFSET 0 LIMIT 1" +"How is the Harz called in Mandarin Chinese?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Harz> <http://dbpedia.org/ontology/language> <http://dbpedia.org/resource/Mandarin_Chinese> }" +"How many international airports are located within the city of Hamburg ?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Hamburg> <http://dbpedia.org/ontology/internationalAirport> ?uri }" +"On how many albums does Madonna perform?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Madonna> <http://dbpedia.org/ontology/album> ?uri }" +"On how many albums does Mariah Carey perform?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Mariah_Carey> <http://dbpedia.org/ontology/album> ?uri }" +"How many studio albums has Lana Del Rey have?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Lana> Del Rey <http://dbpedia.org/ontology/album> ?uri }" +"How many ancient civilizations are there?","SELECT DISTINCT?uri WHERE {?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Ancient_Culture> }" +"In how many years did Kobe Bryant receive an NBA All-Defensive Team award?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Kobe_Bryant> <http://dbpedia.org/ontology/award> ?uri }" +"How many All-NBA Team awards have Shaquille O'Neal and Kobe Bryant received in the same year?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Shaquille_O'Neal> <http://dbpedia.org/ontology/award> ?uri }" +"How many literary works did Richard Bachman write?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Richard> Bachman <http://dbpedia.org/ontology/author> ?uri } ORDER BY DESC(?uri) OFFSET 0 LIMIT 1" +"How many notable works does Sarah J. Maas have?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Sarah> J. Maas <http://dbpedia.org/ontology/author> ?uri }" +"Did Bryan Evenson work for at least one university where he was educated at?","ASK WHERE { <http://dbpedia.org/resource/Bryan_Evenson> <http://dbpedia.org/ontology/almaMater> ?uri }" +"How many children (including apopted ones) does Jeff Bezos have with his ex-wife?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Jeff> Bezos <http://dbpedia.org/ontology/child> ?uri }" +"How many children had Paul McCartney together with his ex-wife Linda McCartney?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Paul> McCartney <http://dbpedia.org/ontology/child> ?uri }" +"How many Chinese zodiac animals are there in total?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Chinese_Zodiac> <http://dbpedia.org/ontology/animal> ?uri } ORDER BY DESC(?uri) OFFSET 0 LIMIT 1" +"How many cities are part of the Pearl River Delta?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/PearRiverDelta> <http://dbpedia.org/ontology/city> ?uri } ORDER BY DESC(?uri) OFFSET 0 LIMIT 1" +"How many city-states are currently in the world?","SELECT DISTINCT?uri WHERE {?uri <http://dbpedia.org/ontology/country> ?uri }" +"How many businesses did Steve Jobs found?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Steve_Jobs> <http://dbpedia.org/ontology/business> ?uri } ORDER BY DESC(?uri) OFFSET 0 LIMIT 1" +"How many countries have a democracy index higher than 7 and drive on the left side ?","SELECT DISTINCT?uri WHERE {?uri <http://dbpedia.org/ontology/country> ?uri }" +"How many countries have never been members of the UN?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/United_States> <http://dbpedia.org/ontology/member> ?uri }" +"How many countries are on the continent of South America ?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/South_America> <http://dbpedia.org/ontology/country> ?uri } ORDER BY DESC(?uri) OFFSET 0 LIMIT 1" +"How many countries have mountains whose peaks are higher than 2000m above sea level?","SELECT DISTINCT?height WHERE {?height <http://dbpedia.org/ontology/country> ?height } ORDER BY DESC(?height) OFFSET 0 LIMIT 1" +"How many fictional dragons are present in Game of Thrones?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Game> of Thrones <http://dbpedia.org/ontology/dragon> ?uri }" +"how many emmy awards has the tv series game of thrones won?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/GameOfThrones> <http://dbpedia.org/ontology/award> ?uri }" +"How many films are derived from the original Ghost in the Shell Manga?","SELECT DISTINCT?uri WHERE {?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Manga> . ?uri <http://dbpedia.org/property/starring> <http://dbpedia.org/resource/GhostInTheShell> } ORDER BY DESC( ?uri) OFFSET 0 LIMIT 1" +"How many French kings didn't die of natural causes?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/French_King_of_France> <http://dbpedia.org/ontology/deathPlace> ?uri }" +"How many given names has Queen Elizabeth II ?","SELECT DISTINCT?uri WHERE {?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Name> ?uri }" +"How many different female mayors did Hamburg have?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Hamburg> <http://dbpedia.org/ontology/leader> ?uri } ORDER BY DESC(?uri) OFFSET 0 LIMIT 1" +"how many head of the state does iran have?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Iran> <http://dbpedia.org/ontology/leader> ?uri }" +"How many scholary articles have ImageNet as a subject?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/ImageNet> <http://dbpedia.org/ontology/subject> ?uri } ORDER BY DESC(?uri) OFFSET 0 LIMIT 1" +"How many inhabitants does the birthplace of Cristiano Ronaldo have?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Cristiano_Ronaldo> <http://dbpedia.org/ontology/birthPlace> ?uri }" +"How many Japanese writers received the Nobel Prize?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Japanese_Literature> <http://dbpedia.org/ontology/award> ?uri } ORDER BY DESC(?uri) OFFSET 0 LIMIT 1" +"How many languages are widely used in India?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/India> <http://dbpedia.org/ontology/language> ?uri } ORDER BY DESC(?uri) OFFSET 0 LIMIT 1" +"How many different colors can water take?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Water> <http://dbpedia.org/ontology/color> ?uri }" +"How many locations has Georges Braque worked at (work location)?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Georges> Braque <http://dbpedia.org/ontology/location> ?uri }" +"How many months does winter consist of in Germany?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Germany> <http://dbpedia.org/ontology/season> ?uri }" +"How many movies does the Scream franchise have?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Scream> <http://dbpedia.org/ontology/starring> ?uri } ORDER BY DESC(?uri) OFFSET 0 LIMIT 1" +"How many movies has James Cameron directed prior to the year 2010?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/James_Cameron> <http://dbpedia.org/ontology/director> ?uri }" +"How many movies were directed by Akira Kurosawa ?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Akira> Kurosawa <http://dbpedia.org/ontology/director> ?uri }" +"How many musical scales are there?","SELECT DISTINCT?uri WHERE {?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/MusicalScale> ?uri }" +"How many public holidays does the state Bavaria have in a year?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Bavaria> <http://dbpedia.org/ontology/holiday> ?uri }" +"How many literary works besides The Picture of Dorian Gray did its author write?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Dorian> Gray <http://dbpedia.org/ontology/author> ?uri } ORDER BY DESC(?uri) OFFSET 0 LIMIT 1" +"How many literary works did Mark Twain write in his lifetime?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Mark> Twain <http://dbpedia.org/ontology/author> ?uri } ORDER BY DESC(?uri) OFFSET 0 LIMIT 1" +"How many occupations did Mark Twain have?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Mark> Twain <http://dbpedia.org/ontology/occupation> ?uri }" +"how many of spiderman perfomers are citizens of the united kingdom?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/United_Kingdom> <http://dbpedia.org/ontology/spiderman> ?uri }" +"how many official languages does the united states of america have?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/UnitedStates> <http://dbpedia.org/ontology/officialLanguage> ?uri }" +"How many official languages has Pakistan ?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Pakistan> <http://dbpedia.org/ontology/officialLanguage> ?uri }" +"How many Oscars did all the movies directed by Hayao Miyazaki combined win?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Hayao> Miyazaki <http://dbpedia.org/ontology/director> ?uri } ORDER BY DESC(?uri) OFFSET 0 LIMIT 1" +"How many paintings of Pablo Picasso were ever in a museum?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Pablo_Picasso> <http://dbpedia.org/ontology/museum> ?uri } ORDER BY DESC(?uri) OFFSET 0 LIMIT 1" +"How many people can play "Mensch ärgere dich nicht" at most?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Mensch> ärgere <http://dbpedia.org/ontology/band> ?uri }" +"How many people did Oscar Pistorius kill?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Oscar_Pistorius> <http://dbpedia.org/ontology/deathPlace> ?uri }" +"How many people died due to the Great Leap Forward according to the highest estimate?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Great> Leap Forward <http://dbpedia.org/ontology/deathTotal> ?uri } ORDER BY DESC(?uri) OFFSET 0 LIMIT 1" +"How many people have won the Nobel Prize in Literature since its inception?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Nobel_Literature> <http://dbpedia.org/ontology/award> ?uri } ORDER BY DESC(?uri) OFFSET 0 LIMIT 1" +"How many people live in cities in the vicinity of the Nile ?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Nile> <http://dbpedia.org/ontology/city> ?uri }" +"How many pitch classes are part of the chromatic scale?","SELECT DISTINCT?uri WHERE {?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Chamber> . ?uri <http://dbpedia.org/property/class> ?uri } ORDER BY ASC(?uri) OFFSET 0 LIMIT 1" +"how many plays has William Shakespeare written in the 16th century.","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/William> Shakespeare <http://dbpedia.org/ontology/author> ?uri }" +"How many poems did Allen Ginsberg published?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Allen> Ginsberg <http://dbpedia.org/ontology/publisher> ?uri }" +"How many political parties have ever had seats in the German Bundestag ?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/German_Bundestag> <http://dbpedia.org/ontology/party> ?uri } ORDER BY DESC(?uri) OFFSET 0 LIMIT 1" +"How many positions did Kobe Bryant play in his team?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Kobe_Bryant> <http://dbpedia.org/ontology/position> ?uri }" +"How many prizes are there established by Alfred Nobel ?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Alfred> Nobel <http://dbpedia.org/ontology/award> ?uri }" +"Did SpaceX ever operate a space mission that was a failed launch?","ASK WHERE { <http://dbpedia.org/resource/SpaceX> <http://dbpedia.org/ontology/failedMission> ?uri }" +"How many people nominated for the nobel prize in chemistry didn't ever win it?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Chemistry> <http://dbpedia.org/ontology/award> ?uri }" +"How many seasons does Pose have?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Pose> <http://dbpedia.org/ontology/seasonTotal> ?uri } ORDER BY DESC(?uri) OFFSET 0 LIMIT 1" +"How many seats are there in the current German Bundestag ?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/German_Bundestag> <http://dbpedia.org/ontology/numberOfSeat> ?uri }" +"How many siblings had the author of “Little Women” ?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Little> Women <http://dbpedia.org/ontology/author> ?uri }" +"How many ski resorts were there ever in France?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/France> <http://dbpedia.org/ontology/country> ?uri }" +"How many songs were composed by Jay Chou but not released in his own albums?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Jay> Chou <http://dbpedia.org/ontology/album> ?uri } ORDER BY DESC(?uri) OFFSET 0 LIMIT 1" +"How many works that are based on Spider-Man has Venom been a part of?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Venom> <http://dbpedia.org/ontology/author> ?uri } ORDER BY DESC(?uri) OFFSET 0 LIMIT 1" +"How many spouses had Rama V (one of the former Kings of Siam)?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Rama> V <http://dbpedia.org/ontology/spouse> ?uri } ORDER BY DESC(?uri) OFFSET 0 LIMIT 1" +"Does Switzerland have a place north of the Point (8.57 47.8)?","ASK WHERE { <http://dbpedia.org/resource/Switzerland> <http://dbpedia.org/ontology/point> ?point }" +"how many times has Giorgio Moroder won golden globe award?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Giorgio> Moroder <http://dbpedia.org/ontology/award> ?uri }" +"How many Olympic Games has Kobe Bryant taken part in?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Kobe_Bryton> <http://dbpedia.org/ontology/Olympic_Games> ?uri } ORDER BY DESC(?uri) OFFSET 0 LIMIT 1" +"How many times was Oskar Lafontaine elected Member of the Landtag of Saarland?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Oskar> Lafontaine <http://dbpedia.org/ontology/Landtag> ?uri }" +"How many wars did the Empire of Japan participate in?","SELECT DISTINCT?uri WHERE {?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/War> } ORDER BY DESC( ?uri) OFFSET 0 LIMIT 1" +"How many women were amongst the founding members of “The Bridge” (“Die Brücke”)?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Die> Brücke <http://dbpedia.org/ontology/foundedBy> ?uri }" +"Who has a higher observed lifespan out of the common bottlenose dolphin and the brown bear?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Common_Bottlenose_Dolphin> <http://dbpedia.org/ontology/lifeTotal> ?uri }" +"What is TNFAIP1 ?","SELECT DISTINCT?uri WHERE {?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TNFAIP1> }" +"How often did Naomi Novik win the nebula award?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Naomi_Novik> <http://dbpedia.org/ontology/award> ?uri }" +"How often did the Mongols try to invade Japan?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Mongols> <http://dbpedia.org/ontology/invasionCountry> ?uri } ORDER BY DESC(?uri) OFFSET 0 LIMIT 1" +"How often was Naomi Novik nominated for a Hugo Award?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Naomi_Novik> <http://dbpedia.org/ontology/award> ?uri }" +"How many years did the second oldest dog in the world live?","SELECT DISTINCT?uri WHERE {?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> dbr:Dog ; <http://dbpedia.org/ontology/age> ?uri }" +"if someone died in 1969, is there any chance they heard of queen’s music?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Queen_of_Queen> <http://dbpedia.org/ontology/deathPlace> ?uri }" +"Is Dr. Pepper named after its inventor?","ASK WHERE { <http://dbpedia.org/resource/Dr> . Pepper <http://dbpedia.org/ontology/inventor> ?uri }" +"In how many movies did Carey Mulligan and Ryan Gosling star together?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Carey> Mulligan <http://dbpedia.org/ontology/starring> ?uri }" +"in the country where ghost in the shell is born, who is the current head of the state?","SELECT DISTINCT?uri WHERE {?uri <http://dbpedia.org/ontology/country> ?uri }" +"How many rivers are in or next to the U.S. state where cage the elephant is from?","SELECT DISTINCT?uri WHERE {?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> dbr:Elephant ; <http://dbpedia.org/ontology/river> ?uri }" +"In which federal state is the Veltins brewery headquarter?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Veltins> <http://dbpedia.org/ontology/headquarter> ?uri } ORDER BY DESC(?uri) OFFSET 0 LIMIT 1" +"In which stadium do the New York Yankees play?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/New> York Yankees <http://dbpedia.org/ontology/stadium> ?uri }" +"In which countries is the Himalayas located?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Himalayas> <http://dbpedia.org/ontology/country> ?uri }" +"Was Isfahan a capital in the year 934?","ASK WHERE { <http://dbpedia.org/resource/Isfahan> <http://dbpedia.org/ontology/capital> ?uri }" +"In how many countries has IKEA been established?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/IKEA> <http://dbpedia.org/ontology/country> ?uri }" +"In which country did the United Fruit Company have their headquarters?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/United> Fruit Company <http://dbpedia.org/ontology/country> ?uri } ORDER BY DESC(?uri) OFFSET 0 LIMIT 1" +"In how many countries is pysanka practiced?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Pysanka> <http://dbpedia.org/ontology/country> ?uri }" +"In which country is Oberirrach ?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Oberirrach> <http://dbpedia.org/ontology/country> ?uri }" +"In which country was Spotify created?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Spotify> <http://dbpedia.org/ontology/country> ?uri }" +"What is the song Vogue by Madonna named after?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Vogue> <http://dbpedia.org/ontology/name> ?uri } ORDER BY DESC(?uri) OFFSET 0 LIMIT 1" +"in which language does the united stated have the shortest short name?","SELECT DISTINCT?uri WHERE {?uri <http://dbpedia.org/ontology/Language> ?uri }" +"Does Bremerhaven's local dialing code start with 4?","ASK WHERE { <http://dbpedia.org/resource/Bremerhaven> <http://dbpedia.org/ontology/dialingCode> ?uri }" +"In how many movies was Johnny Depp casted in?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Johnny_Depp> <http://dbpedia.org/ontology/starring> ?uri }" +"In which year did ABBA publish their album The Visitors ?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/ABBA> <http://dbpedia.org/ontology/publisher> ?uri }" +"In which year was the author of “The Vanishing Half” born?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/The_Vanishing_Half> <http://dbpedia.org/ontology/author> ?uri }" +"Is After Eight manufactured by Unilever?","ASK WHERE { <http://dbpedia.org/resource/Unilever> <http://dbpedia.org/ontology/manufacturer> ?uri }" +"Is ALDI also in Italy?","ASK WHERE { <http://dbpedia.org/resource/ALDI> <http://dbpedia.org/ontology/country> <http://dbpedia.org/resource/Italy> }" +"is Isfahan a big city?","ASK WHERE { <http://dbpedia.org/resource/Isfahan> <http://dbpedia.org/ontology/bigCity> ?uri }" +"Is math related to science ?","ASK WHERE { <http://dbpedia.org/resource/Math> <http://dbpedia.org/ontology/science> ?uri }" +"Is Python a kind of Programming languages?","ASK WHERE { <http://dbpedia.org/resource/Python> <http://dbpedia.org/ontology/ProgrammingLanguage> ?uri }" +"Is samurai champloo a piece of original work or an adaptation?","ASK WHERE { <http://dbpedia.org/resource/Samurai_Champloo> <http://dbpedia.org/ontology/author> ?uri }" +"Was the first female chancellor in Germany ever married?","ASK WHERE { <http://dbpedia.org/resource/Chancellor_of_Germany> <http://dbpedia.org/ontology/spouse> ?uri }" +"Is the Mariana Trench deeper than Mount Everest is high (above sea level)?","ASK WHERE { <http://dbpedia.org/resource/Mount> Everest <http://dbpedia.org/ontology/height> ?height }" +"Is the number of countries in Europe larger than that in Asia?","ASK WHERE { <http://dbpedia.org/resource/Europe> <http://dbpedia.org/ontology/country> ?uri }" +"Is the production company of samurai champloo still existing?","ASK WHERE { <http://dbpedia.org/resource/Samurai_Champloo> <http://dbpedia.org/ontology/producer> ?uri }" +"is there female main character in hunter x hunter?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Hunter> x hunter <http://dbpedia.org/ontology/female> ?uri } ORDER BY DESC(?uri) OFFSET 0 LIMIT 1" +"Is water colorless?","ASK WHERE { <http://dbpedia.org/resource/Water> <http://dbpedia.org/ontology/color> ?uri }" +"Is Axel Rose a member of Guns N' Roses?","ASK WHERE { <http://dbpedia.org/resource/Axel_Rose> <http://dbpedia.org/ontology/band> <http://dbpedia.org/resource/Guns_N'> Roses }" +"Is the capital of Iran bigger than that of Germany?","ASK WHERE { <http://dbpedia.org/resource/Iran> <http://dbpedia.org/ontology/capital> ?uri }" +"Is the Weser longer than the Rhine?","ASK WHERE { <http://dbpedia.org/resource/Weser> <http://dbpedia.org/ontology/length> ?length }" +"Is Tony Blair taller than Tiger Woods?","ASK WHERE { <http://dbpedia.org/resource/Tony_Blair> <http://dbpedia.org/ontology/height> ?height }" +"Is Chicago located at Lake Michigan?","ASK WHERE { <http://dbpedia.org/resource/Lake_Michigan> <http://dbpedia.org/ontology/location> ?uri }" +"Is the district of Höxter next to the district of Paderborn?","ASK WHERE { <http://dbpedia.org/resource/Höxter> <http://dbpedia.org/ontology/district> ?uri }" +"Are part of the Harz mountains in the district of Nordhausen?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Harz> <http://dbpedia.org/ontology/mountain> ?uri }" +"How many people won the Nobel Prize in Literature or Physics since 2000?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Nobel_Literature> <http://dbpedia.org/ontology/award> ?uri } ORDER BY DESC(?uri) OFFSET 0 LIMIT 1" +"How many african-american people got a star on the Hollywood Walk of Fame?","SELECT DISTINCT?uri WHERE {?uri <http://dbpedia.org/ontology/star> ?uri }" +"With how many countries does Australia share a border?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Australia> <http://dbpedia.org/ontology/border> ?uri }" +"How many female Chinese Empresses have there been?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Chinese_Emperor> <http://dbpedia.org/ontology/numberOfEmpresses> ?uri }" +"Of which political party was Joseph Beuys a member?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Joseph_Beuys> <http://dbpedia.org/ontology/party> ?uri }" +"In what year did the Hollywood Walk of Fame open?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Hollywood_Walk_of_Hollywood> <http://dbpedia.org/ontology/year> ?uri } ORDER BY DESC(?uri) OFFSET 0 LIMIT 1" +"on which video streaming services can i watch hunter x hunter anime series?","SELECT DISTINCT?uri WHERE {?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/VideoStreamingService> ?uri } ORDER BY DESC(?uri) OFFSET 0 LIMIT 1" +"People of what age belong to the Silent Generation ?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/SilentGenre> <http://dbpedia.org/ontology/Age> ?uri }" +"In what year did the district of Höxter come into existence?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Höxter> <http://dbpedia.org/ontology/district> ?uri }" +"Is the Linux Foundation verified on Twitter?","ASK WHERE { <http://dbpedia.org/resource/Linux_Foundation> <http://dbpedia.org/ontology/verified> ?uri }" +"Were Angela Merkel and Tony Blair born in the same year?","ASK WHERE { <http://dbpedia.org/resource/Angela_Merkel> <http://dbpedia.org/ontology/birthYear> ?year }" +"Do more than 100000000 people speak Japanese?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Japanese> <http://dbpedia.org/ontology/language> ?uri }" +"Tell me all the cast members of the film Red Notice directed by Rawson Marshall Thurber ?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Red> Notice <http://dbpedia.org/ontology/starring> ?uri }" +"The first album of Jay Chou","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Jay> Chou <http://dbpedia.org/ontology/album> ?uri }" +"Through which countries does the Danube go?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Danube> <http://dbpedia.org/ontology/country> ?uri }" +"What do sperm whales mainly eat?","SELECT DISTINCT?uri WHERE {?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/SpermWhale> }" +"Was Frida Kahlo a surrealist?","ASK WHERE { <http://dbpedia.org/resource/Frida> Kahlo <http://dbpedia.org/ontology/surrealist> ?uri }" +"Was Funny Games and its remake directed by different persons?","ASK WHERE { <http://dbpedia.org/resource/FunnyGames> <http://dbpedia.org/ontology/director> ?uri }" +"Was Google founded by Bill Gates?","ASK WHERE { <http://dbpedia.org/resource/Google> <http://dbpedia.org/ontology/foundedBy> Bill Gates }" +"What is the second letter in the Greek alphabet?","SELECT DISTINCT?uri WHERE {?uri <http://dbpedia.org/ontology/GreekAlphabet> ?uri }" +"Was it the cancer that caused the death of Steve Jobs who was the CEO of Apple?","ASK WHERE { <http://dbpedia.org/resource/Steve_Jobs> <http://dbpedia.org/ontology/cancer> ?uri }" +"Was Shaquille O'Neal the teammate of Kobe Bryant in the year of 2000?","ASK WHERE { <http://dbpedia.org/resource/Kobe_Bryant> <http://dbpedia.org/ontology/coach> ?uri }" +"Was Shaquille O'Neal, as the basketball player, also an film actor?","ASK WHERE { <http://dbpedia.org/resource/Shaquille_O'Neal> <http://dbpedia.org/ontology/starring> ?uri }" +"Was the first album of the band Darkside released in 2012?","ASK WHERE { <http://dbpedia.org/resource/Darkside> <http://dbpedia.org/ontology/album> ?date }" +"What are the spin-offs of Breaking Bad?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Breaking> Bad <http://dbpedia.org/ontology/spouse> ?uri } ORDER BY DESC(?uri) OFFSET 0 LIMIT 1" +"Which river flows through the Grand Canyon?","SELECT DISTINCT?uri WHERE {?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/River> }" +"What was the key event related to Salvador Dalí?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Salvador> Dalí <http://dbpedia.org/ontology/keyEvent> ?uri } ORDER BY DESC(?uri) OFFSET 0 LIMIT 1" +"Who passed the German Occupational Safety and Health Act?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/German_Occupational_Safety_and_Health> <http://dbpedia.org/ontology/author> ?uri }" +"What are the German names of academic disciplines containing “linguistik”?","SELECT DISTINCT?uri WHERE {?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> dbr:Academic ; <http://dbpedia.org/ontology/name> ?uri }" +"What are the names of the head of states of Germany and France ?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Germany> <http://dbpedia.org/ontology/leader> ?uri }" +"What are the professions of John Lennon’s sons?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/John> Lennon <http://dbpedia.org/ontology/profession> ?uri }" +"What are the titles of the Star Wars series movies?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Star> Wars <http://dbpedia.org/ontology/title> ?uri } ORDER BY DESC(?uri) OFFSET 0 LIMIT 1" +"What came first: the TV show The Flintstones or the end of racial discrimination in voting in the US ?","SELECT DISTINCT?uri WHERE {?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Television> . ?uri <http://dbpedia.org/property/ethnicity> ?uri } ORDER BY DESC(?uri) OFFSET 0 LIMIT 1" +"What colors does the German national flag have?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/German_national_flag> <http://dbpedia.org/ontology/flag> ?uri }" +"What did the suffragettes stand for?","SELECT DISTINCT?uri WHERE {?uri <http://dbpedia.org/ontology/suffragette> ?uri }" +"What do you call a female form of an emperor in English?","SELECT DISTINCT?uri WHERE {?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Emperor> }" +"What event killed the most people in the years 1910 to 1920?","SELECT DISTINCT?uri WHERE {?uri a <http://dbpedia.org/ontology/deathDate> ?uri } ORDER BY DESC(?uri) OFFSET 0 LIMIT 1" +"Does the ATI Company still exist?","ASK WHERE { <http://dbpedia.org/resource/ATI> <http://dbpedia.org/ontology/company> ?uri }" +"What happened to the dinosaurs ?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Dinosaur> <http://dbpedia.org/ontology/deathPlace> ?uri }" +"What instruments did Louis Armstrong play?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Louis_Armstrong> <http://dbpedia.org/ontology/instrument> ?uri }" +"what did the author of the phrase: "Alea iacta est" die of?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Alea> iacta <http://dbpedia.org/ontology/author> ?uri }" +"What is the binary gender of the partner of Allen Ginsberg ?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Allen> Ginsberg <http://dbpedia.org/ontology/spouse> ?uri }" +"What is the capital of the prefecture Tokyo ?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Tokyo> <http://dbpedia.org/ontology/capital> ?uri } ORDER BY DESC(?uri) OFFSET 0 LIMIT 1" +"What is the Chinese zodiac animal that follows the ox?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Chinese_Ox> <http://dbpedia.org/ontology/animal> ?uri } ORDER BY DESC(?uri) OFFSET 0 LIMIT 1" +"What is the combined total revenue of three largest Big Tech companies ordered by number of employees?","SELECT DISTINCT?uri WHERE {?uri <http://dbpedia.org/ontology/CompanyTotal> ?uri }" +"What is the coordinate location of Shenzhen ?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Shenzhen> <http://dbpedia.org/ontology/coordinate> ?uri }" +"What is the Erlangen program ?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Erlangen> <http://dbpedia.org/ontology/programming> ?uri }" +"Did the Roland Corporation produce synthesizers?","ASK WHERE { <http://dbpedia.org/resource/Roland> <http://dbpedia.org/ontology/producer> ?uri }" +"How many perople do the Port of Rotterdam employ?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Port> of Rotterdam <http://dbpedia.org/ontology/numberOfPerople> ?uri }" +"what is the main subject of the manga "your lie in april": primary school, middle school or high school student?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/April> <http://dbpedia.org/ontology/subject> ?uri }" +"What is the mother tongue of the author Chimamanda Ngozi Adichie ?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Chimamanda> Ngozi Adichie <http://dbpedia.org/ontology/language> ?uri }" +"Who was the partner of Allen Ginsberg?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Allen> Ginsberg <http://dbpedia.org/ontology/spouse> ?uri }" +"What is the second game developed by Piranha Bytes?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Piranha> Bytes <http://dbpedia.org/ontology/developer> ?uri }" +"What is the TV-show that starred Rowan Atkinson , had 4 seasons and started in 1983?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Rowan> Atkinson <http://dbpedia.org/ontology/starring> ?uri } ORDER BY DESC(?uri) OFFSET 0 LIMIT 1" +"What is the english nickname of Ella Fitzgerald?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Ella> Fitzgerald <http://dbpedia.org/ontology/nickname> ?uri }" +"What are the occupations of Kazuo Ishiguro’s daughter?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Kazuo> Ishiguro <http://dbpedia.org/ontology/occupation> ?uri }" +"What are the occupations of Nat King Cole?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/NatKingCole> <http://dbpedia.org/ontology/occupation> ?uri }" +"what is the official language of iran?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/iran> <http://dbpedia.org/ontology/officialLanguage> ?uri }" +"What is the population in Freiburg ?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Freiburg> <http://dbpedia.org/ontology/population> ?uri }" +"What is the title of the 2020 released movie in which Carey Mulligan was the main actress?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Carey> Mulligan <http://dbpedia.org/ontology/starring> ?uri }" +"What does Ray-Ban produce primarily?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Ray-Ban> <http://dbpedia.org/ontology/producer> ?uri }" +"What language did the famous king, who was also a student of Aristotle's , speak?","SELECT DISTINCT?uri WHERE {?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Language> ?uri }" +"What language do they speak in Poland ?","SELECT DISTINCT?uri WHERE {?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Language> ?uri }" +"How many different languages are spoken in West Europe?","SELECT DISTINCT?uri WHERE {?uri <http://dbpedia.org/ontology/Language> ?uri }" +"Is Germany bigger than Poland?","ASK WHERE { <http://dbpedia.org/resource/Germany> <http://dbpedia.org/ontology/country> <http://dbpedia.org/resource/Poland> }" +"What notes does a C major chord consist of?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/CMajor_Chord> <http://dbpedia.org/ontology/string> ?uri }" +"How many different occupations did/do spouses of winners of the Nobel Prize in Literature hold?","SELECT DISTINCT?uri WHERE {?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Occupation> ?uri } ORDER BY DESC(?uri) OFFSET 0 LIMIT 1" +"How many other video games began the same year as Dead by Daylight?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/DeadByDaylight> <http://dbpedia.org/ontology/year> ?uri }" +"What other civilizations existed during the Aztecs ?","SELECT DISTINCT?uri WHERE {?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Culture> } ORDER BY DESC( ?uri) OFFSET 0 LIMIT 1" +"What brand uses petroleum jelly?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Petroleum_Jelly> <http://dbpedia.org/ontology/brand> ?uri }" +"How many other musical films were launched the same year as Grease?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Grease> <http://dbpedia.org/ontology/launchYear> ?uri } ORDER BY DESC(?uri) OFFSET 0 LIMIT 1" +"Which creator of The OA also acted in it?","SELECT DISTINCT?uri WHERE {?uri <http://dbpedia.org/ontology/creator> ?uri } ORDER BY DESC(?uri) OFFSET 0 LIMIT 1" +"What albums has Atif Aslam been on?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Atif> Aslam <http://dbpedia.org/ontology/album> ?uri }" +"What was Ada Lovelace’s noble title?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Ada> Lovelace <http://dbpedia.org/ontology/title> ?uri }" +"What was Janus the god of?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Janus> <http://dbpedia.org/ontology/god> ?uri }" +"Who was the fellow Hobbit who was an enemy of Frodo?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Frodo> <http://dbpedia.org/ontology/enemy> ?uri }" +"What was the last painting that Van Gogh painted?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Van> Gogh <http://dbpedia.org/ontology/artist> ?uri } ORDER BY DESC(?uri) OFFSET 0 LIMIT 1" +"What was the main subject addressed in the Deep Purple song “Smoke on the water”?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Deep> Purple <http://dbpedia.org/ontology/subject> ?uri } ORDER BY DESC(?uri) OFFSET 0 LIMIT 1" +"When did the first sperm whales exist?","SELECT DISTINCT?date WHERE {?date <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/SpermWhale> . ?date <http://dbpedia.org/property/birthDate> ?date }" +"What year did the Berlin Wall fall?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Berlin_Wall> <http://dbpedia.org/ontology/year> ?uri }" +"What year was Riverdale first aired?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Riverdale> <http://dbpedia.org/ontology/year> ?uri } ORDER BY DESC(?uri) OFFSET 0 LIMIT 1" +"When did Allen Ginsberg die?","SELECT DISTINCT?date WHERE { <http://dbpedia.org/resource/Allen> Ginsberg <http://dbpedia.org/ontology/deathDate> ?date }" +"When did Ella Fitzgerald die?","SELECT DISTINCT?date WHERE { <http://dbpedia.org/resource/Ella> Fitzgerald <http://dbpedia.org/ontology/deathDate> ?date }" +"when did human first start to bouldering?","SELECT DISTINCT?uri WHERE {?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Bouldering> ?uri }" +"When did Pakistan become independent?","SELECT DISTINCT?date WHERE { <http://dbpedia.org/resource/Pakistan> <http://dbpedia.org/ontology/independenceDate> ?date }" +"When did Rumi die?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Rumi> <http://dbpedia.org/ontology/deathDate> ?uri }" +"When did the brother of the author of Slaughterhouse Five die?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Slaughterhouse_Five> <http://dbpedia.org/ontology/author> ?uri }" +"when was the creator of saturday night live born?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/SaturdaysNightLive> <http://dbpedia.org/ontology/creator> ?uri }" +"Who was part of the Hambach Festival?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Hambach> <http://dbpedia.org/ontology/band> ?uri } ORDER BY DESC(?uri) OFFSET 0 LIMIT 1" +"When did The OA was first released?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/The_OA> <http://dbpedia.org/ontology/releaseDate> ?uri }" +"How many casualties were a result of the Troubles?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/The_Troubles> <http://dbpedia.org/ontology/deathTotal> ?uri }" +"When did the Weimar Republic start?","SELECT DISTINCT?date WHERE { <http://dbpedia.org/resource/Weimar_Republic> <http://dbpedia.org/ontology/date> ?date }" +"When did World War II officially end?","SELECT DISTINCT?date WHERE { <http://dbpedia.org/resource/WorldWar> II <http://dbpedia.org/ontology/date> ?date }" +"when is the first ironman world championship?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Ironman_World_Championship> <http://dbpedia.org/ontology/date> ?uri }" +"when was the magazine in which hunter x hunter is published established?","SELECT DISTINCT?date WHERE {?date <http://dbpedia.org/ontology/publisher> ?date }" +"When the film Red Notice was released?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Red> Notice <http://dbpedia.org/ontology/releaseDate> ?uri }" +"When was Cologne Cathedral built?","SELECT DISTINCT?date WHERE { <http://dbpedia.org/resource/Cologne> Cathedral <http://dbpedia.org/ontology/date> ?date }" +"What can be done against gout?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Gout> <http://dbpedia.org/ontology/treatment> ?uri }" +"When was HIV first identified?","SELECT DISTINCT?date WHERE { <http://dbpedia.org/resource/HIV> <http://dbpedia.org/ontology/date> ?date }" +"When was the first article about Liquid State Machines published?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/LiquidStateMachine> <http://dbpedia.org/ontology/author> ?uri }" +"When was Marlene Dietrich born?","SELECT DISTINCT?date WHERE { <http://dbpedia.org/resource/Marlene_Dietrich> <http://dbpedia.org/ontology/birthDate> ?date }" +"When was Penicillin discovered?","SELECT DISTINCT?date WHERE { <http://dbpedia.org/resource/Penicillin> <http://dbpedia.org/ontology/discoverer> ?date }" +"When was Rumi born?","SELECT DISTINCT?date WHERE { <http://dbpedia.org/resource/Rumi> <http://dbpedia.org/ontology/birthDate> ?date }" +"When was the beginning of Romanticism ?","SELECT DISTINCT?date WHERE { <http://dbpedia.org/resource/Romanticism> <http://dbpedia.org/ontology/date> ?date }" +"When was the Echo Music Prize abolished?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Echo_Music_Prize> <http://dbpedia.org/ontology/date> ?uri }" +"When was the first album of the American band Typhoon released?","SELECT DISTINCT?date WHERE { <http://dbpedia.org/resource/Typhoon> <http://dbpedia.org/ontology/album> ?date }" +"When was the Hamburg Airport inaugurated?","SELECT DISTINCT?date WHERE {?date <http://dbpedia.org/ontology/date> ?date }" +"When was the Hamburg S-Bahn officially opened?","SELECT DISTINCT?date WHERE { <http://dbpedia.org/resource/Hamburger_S-Bahn> <http://dbpedia.org/ontology/date> ?date }" +"When was the jazz club Birdland in Hamburg founded?","SELECT DISTINCT?date WHERE { <http://dbpedia.org/resource/Birdland> <http://dbpedia.org/ontology/founded> ?date }" +"When was the poem Howl written?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Howl> <http://dbpedia.org/ontology/author> ?uri }" +"When was the university of Cambridge founded?","SELECT DISTINCT?date WHERE { <http://dbpedia.org/resource/Cambridge> <http://dbpedia.org/ontology/foundedDate> ?date }" +"When was the University of Hamburg founded?","SELECT DISTINCT?date WHERE { <http://dbpedia.org/resource/University> of Hamburg <http://dbpedia.org/ontology/foundedDate> ?date }" +"When was the University of Saskatchewan founded?","SELECT DISTINCT?date WHERE { <http://dbpedia.org/resource/University_of_Saskatchewan> <http://dbpedia.org/ontology/foundedDate> ?date }" +"When was the Vatican City created?","SELECT DISTINCT?date WHERE { <http://dbpedia.org/resource/Vatican_City> <http://dbpedia.org/ontology/createdDate> ?date }" +"When was United Fruit Company founded?","SELECT DISTINCT?date WHERE { <http://dbpedia.org/resource/United> Fruit Company <http://dbpedia.org/ontology/foundedDate> ?date }" +"Where did Trotzky die?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Trotky> <http://dbpedia.org/ontology/deathPlace> ?uri }" +"Where are both The Call of the Wild and White Fang set, the most two famous works of Jack London?","SELECT DISTINCT?uri WHERE {?uri <http://dbpedia.org/ontology/author> ?uri }" +"Where did the Hambach Festival happen?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Hambach> <http://dbpedia.org/ontology/location> ?uri } ORDER BY DESC(?uri) OFFSET 0 LIMIT 1" +"Where do the novels of the franchise The Lord of the Rings take place?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Lord_of_The_Rings> <http://dbpedia.org/ontology/author> ?uri }" +"Where does the Nutri-Score originate from?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Nutri-Score> <http://dbpedia.org/ontology/source> ?uri }" +"Are there at least two winners of the Academy Award for Best Actress who have been educated at the same institution?","SELECT DISTINCT?uri WHERE {?uri <http://dbpedia.org/ontology/award> ?uri }" +"Where was K-pop star Lisa Manoban born?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Lisa_Manoban> <http://dbpedia.org/ontology/birthPlace> ?uri }" +"What is the highest point of Norway?","SELECT DISTINCT?height WHERE {?height <http://dbpedia.org/ontology/height> ?height } ORDER BY DESC(?height) OFFSET 0 LIMIT 1" +"Where did the psychedelic band “Khruangbin” form?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Khruangbin> <http://dbpedia.org/ontology/band> ?uri }" +"Where was Caesar murdered?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Caesar> <http://dbpedia.org/ontology/deathPlace> ?uri }" +"Where was Goethe’s unmarried partner born ?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Goethe> <http://dbpedia.org/ontology/birthPlace> ?uri }" +"Where was Roland Corporation founded?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Roland> Corporation <http://dbpedia.org/ontology/founded> ?uri }" +"Where was the author of The Catcher in the Rye born ?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/The_Catcher_in_The_Rye> <http://dbpedia.org/ontology/author> ?uri }" +"Who developed the Erlangen program?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Erlangen> <http://dbpedia.org/ontology/programming> ?uri }" +"Which actor starring in Free Guy also starred in Deadpool?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/FreeGuy> <http://dbpedia.org/ontology/starring> ?uri } ORDER BY DESC(?uri) OFFSET 0 LIMIT 1" +"Which American presidents followed in their father‘s step and also became the president?","SELECT DISTINCT?uri WHERE {?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/President> ?uri } ORDER BY DESC(?uri) OFFSET 0 LIMIT 1" +"which animal can possibly live longer, panda or koala?","SELECT DISTINCT?uri WHERE {?uri <http://dbpedia.org/ontology/animal> ?uri }" +"Which archipelago has more islands: the Galápagos Islands or the Hawaiian Islands ?","SELECT DISTINCT?uri WHERE {?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Archipelago> ?uri }" +"Which art movement was Yoko Ono part of?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Yoko> Ono <http://dbpedia.org/ontology/artGroup> ?uri }" +"which band is created earlier, queen or pink floyd?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Queen> <http://dbpedia.org/ontology/band> ?uri } ORDER BY DESC(?uri) OFFSET 0 LIMIT 1" +"What caused Kobe Bryant's Death?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Kobe_Bryant> <http://dbpedia.org/ontology/deathPlace> ?uri }" +"What are the opposites of zero?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Zero> <http://dbpedia.org/ontology/opposite> ?uri }" +"Which businesses are founded by the person in charge of Tesla?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Tesla> <http://dbpedia.org/ontology/founder> ?uri }" +"Did Germany have a population growth of at least 1% since 2010?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Germany> <http://dbpedia.org/ontology/populationTotal> ?uri }" +"Which aircraft did Howard Hughes build?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Howard> Hughes <http://dbpedia.org/ontology/aircraft> ?uri }" +"Which country has more official languages: South Africa (Q258) or Ethiopia ?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/South> Africa <http://dbpedia.org/ontology/officialLanguage> ?uri }" +"Is throat singing a tradition?","ASK WHERE { <http://dbpedia.org/resource/Larynx> <http://dbpedia.org/ontology/tradition> ?uri } ORDER BY DESC(?uri) OFFSET 0 LIMIT 1" +"Which disease caused the death of Mark Twain?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Mark> Twain <http://dbpedia.org/ontology/deathCause> ?uri }" +"Which diseases can be caused by smoking ?","SELECT DISTINCT?uri WHERE {?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Disease> } ORDER BY DESC( ?uri) OFFSET 0 LIMIT 1" +"Which genre that Cage the Elephant belongs to has the fewest english characters?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Cage> the Elephant <http://dbpedia.org/ontology/genre> ?uri } ORDER BY DESC(?uri) OFFSET 0 LIMIT 1" +"Which takes less space? 1kg of lead or 1kg of iron.","SELECT DISTINCT?uri WHERE {?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Lead> }" +"Which kingdom preceded the Thonburi Kingdom ?","SELECT DISTINCT?uri WHERE {?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/King> ?uri }" +"How many mountains are located in Germany?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Germany> <http://dbpedia.org/ontology/mountain> ?uri }" +"Which movements is the painting “Les Demoiselles d'Avignon” assigned to?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Les> Demoiselles d'Avignon <http://dbpedia.org/ontology/movement> ?uri }" +"Which movies belong to the Cornetto trilogy ?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Cornetto> <http://dbpedia.org/ontology/starring> ?uri } ORDER BY DESC(?uri) OFFSET 0 LIMIT 1" +"During what event was the Four Policemen Council proposed?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Four_Policemen_Council> <http://dbpedia.org/ontology/location> ?uri } ORDER BY DESC(?uri) OFFSET 0 LIMIT 1" +"Which NBA teams have won the most seasons?","SELECT DISTINCT?uri WHERE {?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/NBA> . ORDER BY DESC( ?uri) OFFSET 0 LIMIT 1" +"Which of the dragons in Game of Thrones died?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Game> of Thrones <http://dbpedia.org/ontology/deathPlace> ?uri }" +"Which other movies by the director of Another Round also starred Mads Mikkelsen ?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Mads> Mikkelsen <http://dbpedia.org/ontology/director> ?uri } ORDER BY DESC(?uri) OFFSET 0 LIMIT 1" +"Which egyptian pyramid is the tallest?","SELECT DISTINCT?height WHERE {?height <http://dbpedia.org/ontology/height> ?height } ORDER BY DESC(?height) OFFSET 0 LIMIT 1" +"What is the offical language of Taipei?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Taipei> <http://dbpedia.org/ontology/officialLanguage> ?uri } ORDER BY DESC(?uri) OFFSET 0 LIMIT 1" +"Which shows aired for the first time the same year as Saturday Night Live ?","SELECT DISTINCT?uri WHERE {?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Show> ?uri } ORDER BY DESC(?uri) OFFSET 1" +"Which songs made up the album Fijación Oral vol. 1 ?","SELECT DISTINCT?uri WHERE {?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Album> ?uri } ORDER BY DESC(?uri) OFFSET 0 LIMIT 1" +"Which started first: impressionism or expressionism (art movements)?","SELECT DISTINCT?uri WHERE {?uri <http://dbpedia.org/ontology/artMovement> ?uri } ORDER BY DESC(?uri) OFFSET 0 LIMIT 1" +"which state inside USA is batman living in?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/USA> <http://dbpedia.org/ontology/state> ?uri }" +"which swordfighter in the lord of the rings marry a half-elven and belong to rangers of the north?","SELECT DISTINCT?uri WHERE {?uri rangers <http://dbpedia.org/ontology/swordfighter> ?uri } ORDER BY DESC(?uri) OFFSET 0 LIMIT 1" +"Which teams participated in the 2020 UEFA Champions League Final ?","SELECT DISTINCT?uri WHERE {?uri <http://dbpedia.org/ontology/team> ?uri }" +"Which universities have more than 200000 students?","SELECT DISTINCT?uri WHERE {?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/University> }" +"which university is established earlier, university of oxford or university of cambridge?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Oxford> <http://dbpedia.org/ontology/establishedUniversity> ?uri }" +"Who developed WordNet?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/WordNet> <http://dbpedia.org/ontology/developer> ?uri }" +"Who are the actresses in Portrait of a Lady on Fire?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Portrait> of a Lady on Fire <http://dbpedia.org/ontology/starring> ?uri }" +"Did Michael Jordan and Kobe Bryant play for the same team?","ASK WHERE { <http://dbpedia.org/resource/Michael_Jordan> <http://dbpedia.org/ontology/team> ?uri }" +"Who created the Turing machine?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Turing> <http://dbpedia.org/ontology/creator> ?uri }" +"When was the Hambach Castle built?","SELECT DISTINCT?date WHERE { <http://dbpedia.org/resource/Hambach> <http://dbpedia.org/ontology/date> ?date }" +"Who died at the North Pole?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/North> Pole <http://dbpedia.org/ontology/deathPlace> ?uri } ORDER BY DESC(?uri) OFFSET 0 LIMIT 1" +"Who directed Anne with an E ?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Anne> <http://dbpedia.org/ontology/director> ?uri }" +"Who wrote "Prototypical Networks for Few-shot Learning"?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/PrototypicalNetwork> <http://dbpedia.org/ontology/author> ?uri }" +"Who founded “The Blue Rider”?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/The_Blue_Rider> <http://dbpedia.org/ontology/foundedBy> ?uri }" +"Who founded the Worpswede artist colony ?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Worpswede> <http://dbpedia.org/ontology/founder> ?uri }" +"Who is the author of “Convenience Store Woman” ?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Convenience> Store Woman <http://dbpedia.org/ontology/author> ?uri }" +"Who is the soccer player with the most goals in their career?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/SoccerPlayer> <http://dbpedia.org/ontology/numberOfGoals> ?uri }" +"Who is the creator of the Dinosaurs tv show ?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Dinosaurs> <http://dbpedia.org/ontology/creator> ?uri }" +"Who is the current president of the German Bundestag currently?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/German_Bundestag> <http://dbpedia.org/ontology/leader> ?uri }" +"Who is the most wealthy entrepreneur?","SELECT DISTINCT?uri WHERE {?uri <http://dbpedia.org/ontology/founder> ?uri }" +"Who is the oldest cast member of the Netflix show “Queer Eye” ?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Netflix> <http://dbpedia.org/ontology/starring> ?uri } ORDER BY DESC(?uri) OFFSET 0 LIMIT 1" +"Who is the publisher of Smite ?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Smite> <http://dbpedia.org/ontology/publisher> ?uri }" +"Who wrote the Erlangen program?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Erlangen> <http://dbpedia.org/ontology/programming> ?uri }" +"In which country is the Nanga Parbat located?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Nanga> Parbat <http://dbpedia.org/ontology/country> ?uri }" +"who produced Star Wars: Episode VI – Return of the Jedi?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Star> Wars: Episode VI <http://dbpedia.org/ontology/producer> ?uri }" +"Who was an actor in more movies, Daniel Day Lewis or Paul Dano ?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Daniel_Day> Lewis <http://dbpedia.org/ontology/starring> ?uri }" +"For what literature prize was Simone de Beauvoir nominated?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Simone> de Beauvoir <http://dbpedia.org/ontology/award> ?uri }" +"What is the website of NPR's “Tiny Desk Concert”?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/NPR> <http://dbpedia.org/ontology/Website> ?uri } ORDER BY DESC(?uri) OFFSET 0 LIMIT 1" +"Who was the creator of Boo-Boo Bear ?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Boo-Boo> Bear <http://dbpedia.org/ontology/creator> ?uri }" +"Who was the creator of Unbreakable Kimmy Schmidt ?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Unbreakable> Kimmy Schmidt <http://dbpedia.org/ontology/creator> ?uri }" +"Who was the director of Llamas with Hats ?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Llamas> <http://dbpedia.org/ontology/director> ?uri }" +"Who founded the Roland Corporation?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Roland> <http://dbpedia.org/ontology/foundedBy> ?uri }" +"Who was the original actor who played Pinhead ?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Pinhead> <http://dbpedia.org/ontology/starring> ?uri }" +"Who were the parents of Socrates ?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Socrates> <http://dbpedia.org/ontology/parent> ?uri }" +"Who wrote Anne of Green Gables ?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Anne_of_Green_Gables> <http://dbpedia.org/ontology/author> ?uri }" +"Who wrote the poem Howl ?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Howl> <http://dbpedia.org/ontology/author> ?uri }" +"Who's the author of The Hellbound Heart ?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Hellbound> Heart <http://dbpedia.org/ontology/author> ?uri }" +"Whom did Clara Westhoff marry?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Clara_Westhoff> <http://dbpedia.org/ontology/spouse> ?uri }" +"what is the oldest film festival?","SELECT DISTINCT?uri WHERE {?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film> ; <http://dbpedia.org/property/foundedDate> ?uri }" +"When was Athens founded?","SELECT DISTINCT?date WHERE { <http://dbpedia.org/resource/Athens> <http://dbpedia.org/ontology/foundedDate> ?date }" +"which river is longer, the Seine or Elbe?","SELECT DISTINCT?length WHERE {?length <http://dbpedia.org/ontology/length> ?length } ORDER BY DESC(?length) OFFSET 0 LIMIT 1" +"which game is created earlier, super mario bros or Pac-Man?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Pac-Man> <http://dbpedia.org/ontology/creator> ?uri }" +"who is the youngested member in g-idle?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/G-idle> <http://dbpedia.org/ontology/band> ?uri } ORDER BY DESC(?uri) OFFSET 0 LIMIT 1" +"who is older, Lionel Messi or Cristiano Ronaldo?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Lionel> Messi <http://dbpedia.org/ontology/age> ?uri }" +"Is heidelberg university or university hamburg founded earlier?","ASK WHERE { <http://dbpedia.org/resource/Heidelberg> <http://dbpedia.org/ontology/foundedDate> ?date }" +"which forest is bigger, Amazon Rainforest or Congo Basin?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Amazon_Rainforest> <http://dbpedia.org/ontology/big> ?uri }" +"Does Samsung Electronics or Apple have more employees?","ASK WHERE { <http://dbpedia.org/resource/Samsung> Electronics <http://dbpedia.org/ontology/numberOfEmployees> ?number }" +"which company is founded later, samsung or sony?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/samsung> <http://dbpedia.org/ontology/foundedCompany> ?uri }" +"who is taller, Lionel Messi or Cristiano Ronaldo?","SELECT DISTINCT?height WHERE { <http://dbpedia.org/resource/Lionel> Messi <http://dbpedia.org/ontology/height> ?height }" +"who has won more NBA awards, Michael Jordan or Kobe Bean Bryant?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Michael_Jordan> <http://dbpedia.org/ontology/award> ?uri }" +"Did Michael Jordan ever weigh more than Kobe Bean Bryant?","ASK WHERE { <http://dbpedia.org/resource/Michael_Jordan> <http://dbpedia.org/ontology/height> ?height }" +"Who is older, Sebastian Vettel or Lewis Hamilton?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Sebastian_Vettel> <http://dbpedia.org/ontology/age> ?uri }" +"which city is more populated, copenhagen or amsterdam?","SELECT DISTINCT?uri WHERE {?uri <http://dbpedia.org/ontology/populationTotal> ?uri }" +"How many things are part of the "One Piece" Franchise?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/One> Piece <http://dbpedia.org/ontology/Franchise> ?uri }" +"How many fictional female swordfighters are there?","SELECT DISTINCT?uri WHERE {?uri <http://dbpedia.org/ontology/Swordfighter> ?uri }" +"which company started earlier, Black Diamond Equipment or la sportiva?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Black> Diamond Equipment <http://dbpedia.org/ontology/company> ?uri } ORDER BY DESC(?uri) OFFSET 0 LIMIT 1" +"which desert is bigger, sahara desert or arabian desert?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Arabian_Desert> <http://dbpedia.org/ontology/big> ?uri }" +"who lives longer, series black or bellatrix Lestrange?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Lestrange> <http://dbpedia.org/ontology/deathPlace> ?uri }" +"What is the area of the great lakes?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/GreatLake> <http://dbpedia.org/ontology/area> ?uri }" +"What is native name of the composer of the Japanese national anthem?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Japanese_National_Alma> <http://dbpedia.org/ontology/composer> ?uri } ORDER BY DESC(?uri) OFFSET 0 LIMIT 1" +"Who is the founder of the capital of Vietnam?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Vietnam> <http://dbpedia.org/ontology/founder> ?uri } ORDER BY DESC(?uri) OFFSET 0 LIMIT 1" +"Who is the manager of the operator of Neumayer III?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Neumayer> III <http://dbpedia.org/ontology/operator> ?uri }" +"How high is the mountain on which Günther Messner died?","SELECT DISTINCT?height WHERE { <http://dbpedia.org/resource/Günther_Messner> <http://dbpedia.org/ontology/elevation> ?height }" +"What is the twitter name of Running Wild?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/RunningWild> <http://dbpedia.org/ontology/name> ?uri } ORDER BY DESC(?uri) OFFSET 0 LIMIT 1" +"How many times did the Italian national soccer team win the Fifa World Cup?","SELECT DISTINCT?uri WHERE {?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Soccer> }" +"What is the area of the capital of Spitsbergen?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Spitsbergen> <http://dbpedia.org/ontology/area> ?uri } ORDER BY DESC(?uri) OFFSET 0 LIMIT 1" +"What percentage of Andorra is covered with water?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Andorra> <http://dbpedia.org/ontology/water> ?uri }" +"How many countries are located around the euorpean Lake Constance?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Lake> Constance <http://dbpedia.org/ontology/country> ?uri }" +"With how many persons was Richard Burton married?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/RichardBurton> <http://dbpedia.org/ontology/spouse> ?uri }" +"At what coordinates was the "Sender Teutoburger Wald" erected?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Sender> Teutoburger Wald <http://dbpedia.org/ontology/location> ?uri }" +"Where is the poet Alexander Pope buried?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/AlexanderPope> <http://dbpedia.org/ontology/restingPlace> ?uri }" +"In what country is the Kandahar-downhill?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Kandahar> <http://dbpedia.org/ontology/country> ?uri }" +"Who founded the architectural firm who planned the Elbphilharmonie?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Elbphilharmonie> <http://dbpedia.org/ontology/architect> ?uri }" +"Where are the founders of the band Metallica from?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Metric> <http://dbpedia.org/ontology/foundedBy> ?uri }" +"Where does the Granny Smith apple variety come from?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Granny> Smith <http://dbpedia.org/ontology/variety> ?uri }" +"What is the Fujiyama made of?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Fuyama> <http://dbpedia.org/ontology/manufacturer> ?uri }" diff --git a/bart/qald-9-test-linked-tokenized.csv b/bart/qald-9-test-linked-tokenized.csv new file mode 100644 index 0000000000000000000000000000000000000000..b5ca6fbe6127ebef87219e3d6035032221426129 --- /dev/null +++ b/bart/qald-9-test-linked-tokenized.csv @@ -0,0 +1,151 @@ +text,summary +"What is the dbo:timeZone of res:Salt_Lake_City?", "SELECT DISTINCT ?uri WHERE { res:Salt_Lake_City dbo:timeZone ?uri }" +"Who dbo:billed res:Caesar_(game)?", "SELECT DISTINCT ?uri WHERE { ?uri dct:subject dbc:Assassins_of_Julius_Caesar }" +"What is the dbo:elevation in res:Germany?", "SELECT ?uri WHERE { ?uri rdf:type onto:Mountain ; onto:elevation ?elevation ; onto:locatedInArea res:Germany } ORDER BY DESC(?elevation) LIMIT 1" +"Which res:Organization_of_American_States were in dbo:office during the res:Vietnam_War?", "SELECT ?uri WHERE { ?uri dct:subject dbc:Presidents_of_the_United_States . res:Vietnam_War dbo:commander ?uri }" +"Butch Otter is the dbo:governor of which U.S. state?", "SELECT DISTINCT ?uri WHERE { ?uri a yago:WikicatStatesOfTheUnitedStates ; dbp:governor res:Butch_Otter }" +"How many dbo:goldMedalist did res:Michael_Phelps dbo:award at the res:2008_Summer_Olympics?", "SELECT Count(?sub) as ?c WHERE { ?sub dbo:goldMedalist dbr:Michael_Phelps . filter (contains (str(?sub), "2008") && contains (str(?sub), "Olympics")) }" +"Which dbp:artist were dbo:birthPlace on the same date as res:Rachel_Stevens?", "SELECT DISTINCT ?uri WHERE { ?uri a dbo:Artist . dbr:Rachel_Stevens dbo:birthDate ?birthdate . ?uri dbo:birthDate ?birthdate }" +"What is the dbo:profession of res:Frank_Herbert?", "SELECT DISTINCT ?string WHERE { res:Frank_Herbert dbpedia2:occupation ?string }" +"Are res:Taiko some kind of res:Japan?", "ASK WHERE { res:Taiko a yago:WikicatJapaneseMusicalInstruments }" +"How many dbp:seat does the home res:FC_Porto have?", "SELECT ?capacity WHERE { { dbr:FC_Porto dbo:ground ?ground . ?ground dbo:capacity ?capacity } UNION { dbr:FC_Porto dbo:ground ?ground . ?ground dbp:capacity ?capacity } }" +"Which res:Frequent-flyer_program has the most dbo:icaoAirlineCode?", "SELECT ?uri WHERE { ?airline rdf:type dbo:Airline . ?airline dbp:frequentFlyer ?uri. } GROUP BY ?uri ORDER BY DESC(COUNT( DISTINCT ?airline)) OFFSET 0 LIMIT 1" +"Which res:Europe have a res:Constitutional_monarchy?", "SELECT ?uri WHERE { ?uri dct:subject dbc:Countries_in_Europe ; dbo:governmentType dbr:Constitutional_monarchy }" +"Which res:Countries_of_the_United_Kingdom have dbo:place with more than two res:Caves_of_Aggtelek_Karst_and_Slovak_Karst?", "SELECT DISTINCT ?uri WHERE { ?cave rdf:type dbo:Cave ; dbo:location ?uri . ?uri rdf:type dbo:Country } GROUP BY ?uri HAVING ( COUNT( ?cave) 2 )" +"Which dbo:targetAirport are dbo:place in res:California,_Cincinnati res:United_States?", "SELECT DISTINCT ?uri WHERE { ?uri a dbo:Airport { ?uri dbo:location res:California } UNION { ?uri dbo:city res:California } UNION { ?uri dbo:city ?city . ?city dbo:isPartOf res:California } UNION { ?uri dbo:operator res:California } }" +"What are the dbo:mascot of res:San_Francisco?", "SELECT DISTINCT ?string WHERE { res:San_Francisco foaf:nick ?string }" +"What is res:Name_at_birth?", "SELECT DISTINCT ?string WHERE { res:Angela_Merkel dbp:birthName ?string }" +"Who is the dbo:mayor of res:Berlin?", "SELECT DISTINCT ?uri WHERE { res:Berlin dbp:leader ?uri }" +"Which res:Countries_of_the_United_Kingdom in the res:Europe?", "SELECT DISTINCT ?uri WHERE { ?uri a dbo:Country { ?uri dbo:currency res:Euro } UNION { ?uri dbp:currencyCode "EUR"@en } }" +"Which res:Software has been dbo:publisher by res:Mean_Hamster_Software?", "SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Software { ?uri prop:publisher "Mean Hamster Software"@en } UNION { ?uri onto:publisher res:Mean_Hamster_Software } }" +"Which dbo:country was res:Bill_Gates dbo:birthPlace in?", "SELECT DISTINCT ?country WHERE { { dbr:Bill_Gates dbo:birthPlace ?birthPlace . ?birthPlace dbo:country ?country } UNION { dbr:Bill_Gates dbo:birthPlace ?birthPlace . ?birthPlace dbo:isPartOf ?place . ?place dbo:country ?country } }" +"How many dbo:child did res:Jacques_Cousteau have?", "SELECT COUNT( DISTINCT ?y AS ?y) WHERE { res:Jacques_Cousteau dbo:child ?x . ?x dbo:child ?y . }" +"Give me all dbo:occupation from res:Sweden.", "SELECT DISTINCT ?uri WHERE { ?uri dbo:occupation dbr:Skateboarder { ?uri dbo:birthPlace dbr:Sweden } UNION { ?uri dbo:birthPlace ?place . ?place dbo:country dbr:Sweden } }" +"Which dbo:leader of the res:United_Kingdom were dbo:spouse to a res:Germany?", "SELECT DISTINCT ?uri WHERE { ?uri rdf:type yago:WikicatMonarchsOfTheUnitedKingdom ; dbo:spouse ?spouse . ?spouse dbo:birthPlace res:Germany }" +"Give me all res:Argentina.", "SELECT DISTINCT ?uri WHERE { { ?uri rdf:type yago:ArgentineFilms } UNION { ?uri rdf:type dbo:Film { ?uri dbo:country res:Argentina } UNION { ?uri dbp:country "Argentina"@en } } }" +"How did res:Michael_Jackson dbo:deathDate?", "SELECT DISTINCT ?s WHERE { res:Michael_Jackson dbp:deathCause ?s }" +"Which U.S. state has been dbp:known latest?", "SELECT DISTINCT ?uri WHERE { ?uri dct:subject dbc:States_of_the_United_States ; dbp:admittancedate ?x } ORDER BY DESC(?x) LIMIT 1" +"Which dbo:classes does the res:Millipede dbo:date to?", "SELECT DISTINCT ?String WHERE { res:Millipede dbp:taxon ?String }" +"Give me the homepage of res:Forbes.", "SELECT DISTINCT ?string WHERE { res:Forbes foaf:homepage ?string }" +"Who is the dbo:spouse of res:Amanda_Palmer?", "SELECT DISTINCT ?uri WHERE { ?uri dbo:spouse res:Amanda_Palmer }" +"Who dbp:artist res:The_Storm_on_the_Sea_of_Galilee?", "SELECT DISTINCT ?uri WHERE { res:The_Storm_on_the_Sea_of_Galilee dbo:author ?uri }" +"What is the dbo:elevation of res:Karakoram?", "SELECT DISTINCT ?uri WHERE { res:Karakoram dbp:highest ?uri }" +"When did res:Join res:Basque_language?", "SELECT DISTINCT ?date WHERE { res:Finland dbp:accessioneudate ?date }" +"Which dbo:background dbo:starring in res:The_Big_Bang_Theory?", "SELECT DISTINCT ?uri WHERE { res:The_Big_Bang_Theory dbo:starring ?uri }" +"Which res:Computer_scientist dbo:award an res:Oscar?", "SELECT DISTINCT ?uri WHERE { ?uri dbo:field res:Computer_science ; dbo:award res:Academy_Award }" +"Who dbp:author res:Harry_Potter?", "SELECT DISTINCT ?uri WHERE { res:Harry_Potter dbp:author ?uri }" +"Give me all dbo:writer that dbo:award the res:Nobel_Prize in res:Literature.", "SELECT DISTINCT ?uri WHERE { ?uri a dbo:Writer ; dbo:award res:Nobel_Prize_in_Literature }" +"Give me res:The_Actors dbo:starring in res:Lovesick_(Priscilla_Renea_song).", "SELECT DISTINCT ?uri WHERE { res:Lovesick_(1983_film) dbo:starring ?uri . ?uri dbo:birthPlace ?city . ?city dbo:country res:United_Kingdom }" +"What is the dbo:address of res:Baghdad?", "SELECT ?nm WHERE { dbr:Baghdad foaf:nick ?nm }" +"In which dbo:city was the dbo:president of res:Montenegro dbo:birthPlace?", "SELECT DISTINCT ?uri WHERE { ?x dbp:title dbr:President_of_Montenegro ; dbo:birthPlace ?uri . ?uri dbo:type dbr:Capital_city }" +"Which U.S. state has the res:Population_density?", "SELECT ?uri WHERE { ?uri dbo:country res:United_States . ?uri dbo:capital ?capital . ?uri dbp:densityrank ?density . OPTIONAL {?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } } ORDER BY ASC(?density) LIMIT 1" +"What is the longest dbo:river in res:China?", "SELECT DISTINCT ?uri WHERE { ?uri a dbo:River ; dbo:country res:China ; dbp:length ?l } ORDER BY DESC(?l) OFFSET 0 LIMIT 1" +"What is the dbo:areaCode of res:Berlin?", "SELECT DISTINCT ?string WHERE { res:Berlin dbo:areaCode ?string }" +"How many res:Scientists_for_Global_Responsibility dbo:effectiveRadiatedPower from an res:Ivy_League?", "SELECT (COUNT( DISTINCT ?uri) AS ?c) WHERE { ?uri a dbo:Scientist ; dbo:almaMater ?university . ?university dbo:affiliation res:Ivy_League ; a dbo:University }" +"Which dbo:specialist were dbo:birthPlace in res:Australia?", "SELECT DISTINCT ?uri WHERE { { ?uri dbo:occupation res:Surfer ; dbo:birthPlace res:Australia } UNION { ?uri dbo:occupation res:Surfer ; dbo:birthPlace ?place . ?place dbo:country res:Australia } }" +"Give me all res:Curaçao.", "SELECT DISTINCT ?uri WHERE { ?uri a dbo:PoliticalParty ; dbo:country res:Netherlands }" +"How many res:7805_Moons does res:Mars have?", "SELECT DISTINCT ?n WHERE { res:Mars dbp:satellites ?n }" +"What is res:Batman's res:Real-name_system?", "SELECT DISTINCT ?label WHERE { res:Batman http://xmlns.com/foaf/0.1/name ?label FILTER ( str(?label) != "Batman" ) }" +"What is res:Elon_Musk for?", "SELECT DISTINCT ?uri WHERE { res:Elon_Musk dbo:knownFor ?uri }" +"Who is the dbo:author of res:WikiLeaks?", "SELECT ?uri WHERE { res:WikiLeaks onto:author ?uri }" +"Sean Parnell was the dbo:governor of which U.S. state?", "SELECT DISTINCT ?uri WHERE { res:Sean_Parnell dbo:region ?uri }" +"How many years was the res:Ford_Model_48 res:T dbo:manufacturer?", "SELECT ?years WHERE { res:Ford_Model_T dbo:productionEndYear ?end ; dbo:productionStartYear ?start. BIND ( ( year(xsd:date(?end)) - year(xsd:date(?start)) ) AS ?years) }" +"When was res:Carlo_Giuliani,_Boy dbo:discharge?", "SELECT DISTINCT xsd:date(?date) WHERE { res:Death_of_Carlo_Giuliani dbo:deathDate ?date }" +"Give me all dbo:animal that are dbo:quote.", "SELECT DISTINCT ?uri WHERE { ?uri a dbo:Animal ; dbo:conservationStatus "EX" }" +"Who was the dbo:spouse of res:USS_President_Lincoln_(1907)?", "SELECT ?uri ?string WHERE { dbr:Abraham_Lincoln onto:spouse ?uri }" +"How many dbp:awards has res:Bertrand_Russell?", "SELECT (COUNT( ?Awards) AS ?Counter) WHERE { dbr:Bertrand_Russell dbp:awards ?Awards }" +"Is res:Pamela_Anderson a res:Vegan_Virgin_Valentine?", "ASK WHERE { dbr:Pamela_Anderson a yago:WikicatAmericanVegans }" +"Which dbo:area were sent into dbo:course around the dbo:year?", "SELECT DISTINCT ?s WHERE { ?s dct:subject dbc:Missions_to_the_Sun ; rdf:type ?type FILTER ( ?type IN (dbo:Satellite, dbo:ArtificialSatellite) ) }" +"Which res:Germany have more than res:Population?", "SELECT DISTINCT ?uri WHERE { { ?uri a dbo:City } UNION { ?uri a dbo:Town } ?uri dbo:country res:Germany ; dbo:populationTotal ?population FILTER ( ?population 250000 ) }" +"Who is the dbo:child of res:Robert_F._Kennedy dbp:spouse to?", "SELECT DISTINCT ?uri WHERE { res:Robert_F._Kennedy dbo:child ?child . ?child dbo:spouse ?uri }" +"How many dbo:numberOfStudents does the res:Vrije_Universiteit_Amsterdam have?", "SELECT DISTINCT ?num WHERE { dbr:Vrije_Universiteit_Amsterdam dbo:numberOfStudents ?num }" +"What is the dbo:revenue of res:IBM?", "SELECT ?number WHERE { res:IBM onto:revenue ?number }" +"How many res:M_(James_Bond) do dbp:last?", "SELECT (COUNT( DISTINCT ?uri) AS ?c) WHERE { ?uri dct:subject res:Category:James_Bond_films }" +"Who does the dbo:voice of res:Bart_Simpson?", "SELECT DISTINCT ?uri WHERE { res:Bart_Simpson dbp:voiceactor ?uri }" +"Who was res:Tom_Hanks dbp:spouse to?", "SELECT DISTINCT ?uri WHERE { dbr:Tom_Hanks dbo:spouse ?uri }" +"Through which res:Countries_of_the_United_Kingdom does the res:Yenisei_River?", "SELECT DISTINCT ?uri WHERE { res:Yenisei_River dbo:country ?uri }" +"Give me all dbo:management that are dbo:author in res:Germany.", "SELECT DISTINCT ?uri WHERE { ?uri a dbo:Automobile { ?uri dbo:assembly res:Germany } UNION { ?uri dbp:assembly res:Germany } UNION { { ?uri dbo:manufacturer ?x } UNION { ?uri dbp:manufacturer ?x } { ?x dbo:locationCountry res:Germany } UNION { ?x dbo:location res:Germany } } }" +"When did res:Michael_Jackson dbo:deathDate?", "SELECT DISTINCT ?date WHERE { res:Michael_Jackson dbo:deathDate ?date }" +"What is the dbo:head in res:Africa?", "SELECT DISTINCT ?uri WHERE { ?uri a dbo:Volcano ; dbo:locatedInArea ?area . ?area dct:subject dbc:Countries_in_Africa . ?uri dbo:elevation ?elevation } ORDER BY DESC(?elevation) LIMIT 1" +"Which dbo:author dbo:composer the most dbo:volume?", "SELECT DISTINCT ?uri WHERE { ?uri dbo:occupation res:Poet . ?x dbo:author ?uri . ?x rdf:type dbo:Book . } ORDER BY DESC(COUNT( ?x)) OFFSET 0 LIMIT 1" +"Give me all gangsters from the dbo:time.", "SELECT DISTINCT ?uri WHERE { ?uri dbo:occupation dbr:Gangster ; dct:subject dbc:Prohibition-era_gangsters }" +"Give me all res:Spacecraft that dbo:circulation to res:Mars.", "SELECT DISTINCT ?s WHERE { ?s dct:subject dbc:Mars_rovers ; rdf:type ?type FILTER ( ?type IN (dbo:Satellite, dbo:ArtificialSatellite) ) }" +"Show me all res:Czech_Republic.", "SELECT DISTINCT ?uri WHERE { ?uri a dbo:Film ; dbo:country res:Czech_Republic }" +"Give me all taikonauts.", "SELECT DISTINCT ?uri WHERE { { ?uri a dbo:Astronaut ; dbo:nationality res:People's_Republic_of_China } UNION { ?uri a dbo:Astronaut ; dbo:nationality res:China } }" +"Which res:Countries_of_the_United_Kingdom have more than ten res:Volcanoes_National_Park?", "SELECT DISTINCT ?uri WHERE { ?x a dbo:Volcano ; dbo:locatedInArea ?uri . ?uri a dbo:Country } GROUP BY ?uri HAVING ( COUNT( ?x) 10 )" +"Give me all dbo:film with res:Tom_Cruise.", "SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Film { ?uri prop:starring res:Tom_Cruise } UNION { ?uri onto:starring res:Tom_Cruise } OPTIONAL { ?uri rdfs:label ?string FILTER ( lang(?string) = "en" ) } }" +"When did res:Count_Dracula's dbp:producer dbo:deathDate?", "SELECT DISTINCT xsd:date(?date) WHERE { res:Count_Dracula dbo:creator ?x . ?x dbo:deathDate ?date. }" +"Who dbo:author res:English_Wikipedia?", "SELECT ?uri WHERE { res:Wikipedia onto:author ?uri }" +"Give me all res:List_of_German_female_artists.", "SELECT DISTINCT ?uri WHERE { res:Chancellor_of_Germany dbp:incumbent ?uri }" +"Who dbo:family res:Aldi?", "SELECT DISTINCT ?uri WHERE { res:Aldi dbp:founders ?uri }" +"Which dbo:volume were dbo:writer by res:Danielle_Steel?", "SELECT ?uri WHERE { ?uri rdf:type onto:Book ; onto:author res:Danielle_Steel }" +"Who was dbo:influenced by res:Socrates?", "SELECT DISTINCT ?uri WHERE { ?uri dbo:influencedBy res:Socrates }" +"How dbo:capital is res:Chiemsee?", "SELECT DISTINCT ?n WHERE { res:Chiemsee dbo:maximumDepth ?n }" +"Which res:Companies_listed_on_the_New_York_Stock_Exchange_(J) dbo:service in the dbp:industry as well as in res:Medicine?", "SELECT DISTINCT ?uri WHERE { ?uri a dbo:Company ; dbo:industry dbr:Aerospace ; dbo:industry dbr:Medical }" +"Which dbp:authority were dbo:birthPlace on the res:Philippines?", "SELECT DISTINCT ?uri WHERE { ?uri dbo:occupation dbr:Surfer ; dbo:birthPlace res:Philippines }" +"Who were the dbo:parent of res:Queen_Victoria?", "SELECT DISTINCT ?uri WHERE { res:Queen_Victoria dbo:parent ?uri }" +"Are there any dbo:class in the res:United_States?", "ASK WHERE { ?uri dct:subject dbc:Castles_in_the_United_States }" +"Which dbo:language are dbo:spokenIn in res:Estonia?", "SELECT DISTINCT ?uri WHERE { ?uri dbo:spokenIn res:Estonia }" +"Give me a list of all dbo:principal endangered dbo:date.", "SELECT DISTINCT ?uri ?p WHERE { ?uri rdf:type dbo:Bird { ?uri dbo:conservationStatus "CR" } UNION { ?uri dct:subject dbc:Critically_endangered_animals } }" +"Which res:Countries_of_the_United_Kingdom are dbo:related by the res:Rhine?", "SELECT DISTINCT ?uri WHERE { {res:Rhine dbo:country ?uri } UNION {dbr:Rhine dbp:country ?uri} }" +"Who was the dbo:parent of res:Elizabeth_II?", "SELECT DISTINCT * WHERE { res:Elizabeth_II dbo:parent ?uri . ?uri http://xmlns.com/foaf/0.1/gender "male"@en }" +"Give me all res:Sand_casting.", "SELECT DISTINCT ?uri WHERE { ?uri rdf:type owl:Thing ; dct:subject dbc:Chemical_elements }" +"Give me all res:Organization_of_American_States of the last res:20 years.", "SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Person ; dct:subject dbc:Presidents_of_the_United_States ; dbo:activeYearsEndDate ?termEnd FILTER ( ( year(now()) - year(?termEnd) ) = 20 ) }" +"When is the res:Worst-case_scenario going to be in dbo:picture in the res:Netherlands?", "SELECT DISTINCT ?rel WHERE { res:Worst_Case_Scenario_(film) ?p ?o ; dbo:releaseDate ?rel FILTER contains(lcase(str(?o)), "netherlands") }" +"Whom did res:Lance_Bass dbo:spouse?", "SELECT DISTINCT ?uri WHERE { {res:Lance_Bass dbo:spouse ?uri} UNION {?uri dbo:spouse res:Lance_Bass} }" +"Which dbo:subsidiary of TUI Travel dbo:order both res:Glasgow_Airport and res:Dublin_Airport?", "SELECT DISTINCT ?uri WHERE { res:TUI_Travel dbo:subsidiary ?uri . ?uri dbo:targetAirport res:Glasgow_International_Airport ; dbo:targetAirport res:Dublin_Airport }" +"What dbo:language are dbo:spokenIn in res:Pakistan?", "SELECT DISTINCT ?uri WHERE { res:Pakistan dbo:language ?uri }" +"Who is the dbo:child of res:Bill_Clinton dbo:spouse to?", "SELECT DISTINCT ?uri WHERE { dbr:Bill_Clinton dbo:child ?child . ?child dbo:spouse ?uri . ?uri rdfs:label ?string }" +"Who was on the res:Apollo_11?", "SELECT DISTINCT ?uri WHERE { res:Apollo_11 dbp:crewMembers ?uri }" +"What is the dbo:wavelength of res:Indigo?", "SELECT ?n WHERE { dbr:Indigo dbo:wavelength ?n }" +"Give me all res:The_B-Sides.", "SELECT DISTINCT ?string WHERE { ?x dbo:musicalArtist res:Ramones ; dbo:bSide ?string }" +"Who was dbo:alias res:Scarface?", "SELECT ?uri WHERE { ?uri dbo:alias ?alias FILTER contains(lcase(?alias), "scarface") }" +"Which dbo:operator dbp:float into the res:North_Sea?", "SELECT DISTINCT ?uri WHERE { ?uri a dbo:River ; dbo:riverMouth res:North_Sea }" +"Where is res:Fort_Knox dbp:location?", "SELECT DISTINCT ?uri WHERE { res:Fort_Knox dbo:location ?uri. ?uri a dbo:Place. }" +"Which res:Daughters_of_the_Dust of res:United_Kingdom dbp:deathPlace at the same dbo:place they were dbo:birthPlace at?", "SELECT DISTINCT ?uri WHERE { ?uri rdf:type yago:WikicatDaughtersOfBritishEarls ; dbo:birthPlace ?x ; dbo:deathPlace ?y FILTER ( ?x = ?y ) }" +"How many dbo:leader did res:China have?", "SELECT COUNT( DISTINCT ?uri AS ?uri) WHERE { ?uri dbp:title res:Emperor_of_China . }" +"What are the dbo:athletics of the res:Teenage_Mutant_Ninja_Turtles?", "SELECT DISTINCT ?s WHERE { res:Teenage_Mutant_Ninja_Turtles dbp:members ?x . ?x foaf:givenName ?s }" +"Where does res:Piccadilly dbo:routeStart?", "SELECT DISTINCT ?uri WHERE { ?uri dbo:routeStart res:Piccadilly }" +"What is the dbp:name of the dbo:university where res:University_of_Alabama's dbp:spouse dbo:office?", "SELECT DISTINCT ?s WHERE { res:Barack_Obama dbo:spouse ?x . ?x dbo:almaMater ?s }" +"When did res:Paraguay dbo:state its res:Independence?", "SELECT DISTINCT ?date WHERE { res:Paraguay dbo:foundingDate ?date }" +"How dbo:thumbnail is the dbo:thumbnailest active res:National_Basketball_Association player?", "SELECT DISTINCT ?n WHERE { ?x a dbo:BasketballPlayer ; dbo:league res:National_Basketball_Association ; dbo:height ?n FILTER NOT EXISTS { ?x dbo:activeYearsEndYear ?d } } ORDER BY ASC(?n) OFFSET 0 LIMIT 1" +"Where did res:Abraham_Lincoln dbo:deathDate?", "SELECT DISTINCT ?uri WHERE { res:Abraham_Lincoln dbo:deathPlace ?uri }" +"When was res:Jack_Wolfskin dbo:foundingYear?", "SELECT DISTINCT xsd:date(?year) WHERE { res:Jack_Wolfskin dbo:foundingYear ?year }" +"In which dbo:city is the dbo:headquarter of res:Air_China?", "SELECT DISTINCT ?uri WHERE { res:Air_China dbo:headquarter ?uri . ?uri a yago:City108524735 }" +"What is the dbo:foundingYear year of the dbo:manufacturer that dbo:manufacturer res:Pilsner_Urquell?", "SELECT DISTINCT xsd:date(?num) WHERE { res:Pilsner_Urquell dbp:brewery ?uri . ?uri dbo:foundingYear ?num }" +"When did the res:Boston_Tea_Party take dbo:place?", "SELECT DISTINCT ?d WHERE { res:Boston_Tea_Party dbp:date ?d }" +"Which dbo:animal are dbo:principal endangered?", "SELECT DISTINCT ?uri WHERE { ?uri a dbo:Animal ; dbo:conservationStatus "CR" }" +"Which res:Politicians_of_The_Wire were dbo:spouse to a res:Germany?", "SELECT DISTINCT ?uri WHERE { ?uri a dbo:Politician ; dbo:spouse ?spouse { ?spouse dbo:birthPlace res:Germany } UNION { ?spouse dbo:birthPlace ?p . ?p dbo:country res:Germany } }" +"How big is the dbo:ground's dbo:diameter?", "SELECT DISTINCT (( xsd:double(?radius) * 2 ) AS ?diameter) WHERE { res:Earth dbo:meanRadius ?radius }" +"Is the dbp:spouse of President res:Barack_Obama dbo:guest Michelle?", "ASK WHERE { res:Barack_Obama onto:spouse ?spouse . ?spouse rdfs:label ?name FILTER regex(?name, "Michelle") }" +"Which U.S. state has the dbo:abbreviation res:MN?", "SELECT DISTINCT ?uri WHERE { ?uri a yago:WikicatStatesOfTheUnitedStates ; dbp:postalabbreviation "MN"^^rdf:langString }" +"When did res:Muhammad dbo:deathDate?", "SELECT DISTINCT xsd:date(?date) WHERE { res:Muhammad dbo:deathDate ?date }" +"What is the dbp:background of the res:Moon dbo:musicComposer of?", "SELECT DISTINCT ?uri WHERE { res:Moon dbp:atmosphereComposition ?uri }" +"Who is the dbo:governor of res:Texas?", "SELECT DISTINCT ?string WHERE { res:Texas dbp:governor ?string }" +"Which dbo:film did res:Akira_Kurosawa dbo:director?", "SELECT ?uri WHERE { ?uri rdf:type dbo:Film ; dbo:director res:Akira_Kurosawa }" +"What was the dbp:name of the dbo:motto in res:1836 in res:San_Antonio?", "SELECT ?uri WHERE { ?uri a dbo:MilitaryConflict ; dbo:place dbr:San_Antonio ; dbo:date ?date FILTER ( ?date "1835-12-31T00:00:00Z"^^xsd:dateTime ) FILTER ( ?date = "1836-12-31T00:00:00Z"^^xsd:dateTime ) }" +"Give me the dbo:officialLanguage of dbo:background of the res:Charmed.", "SELECT DISTINCT ?uri WHERE { res:Charmed onto:starring ?actors . ?actors foaf:homepage ?uri }" +"How many dbp:calories does a res:Baguette have?", "SELECT DISTINCT ?n WHERE { res:Baguette dbp:calories ?n }" +"Give me all res:Libraries_in_Brighton_and_Hove dbo:established before res:1400.", "SELECT DISTINCT ?uri WHERE { ?uri a dbo:Library ; dbp:established ?year FILTER ( ?year 1400 ) }" +"Give me all res:Frisian_Islands that dbp:rank to the res:Netherlands_Antilles_at_the_2007_Pan_American_Games.", "SELECT DISTINCT ?uri WHERE { ?uri rdf:type yago:WikicatFrisianIslands ; dbo:country res:Netherlands }" +"Which dbo:museum dbo:sport res:The_Scream?", "SELECT DISTINCT ?uri WHERE { res:The_Scream dbo:museum ?uri }" +"When was the res:De_Beers dbo:foundedBy?", "SELECT DISTINCT xsd:date(?date) WHERE { res:De_Beers dbo:foundingYear ?date }" +"Who became dbo:president after res:John_F._Kennedy dbo:deathDate?", "SELECT DISTINCT ?uri WHERE { res:John_F._Kennedy dbp:presidentEnd ?x . ?uri dbp:presidentStart ?x; a dbo:Person. }" +"Who are the dbo:parent of the dbo:spouse of res:Juan_Carlos_I_of_Spain res:I?", "SELECT DISTINCT ?uri WHERE { res:Juan_Carlos_I_of_Spain dbo:spouse ?x . ?x dbo:parent ?uri }" +"Who is the dbo:author of the dbo:service a dbo:anthem of dbo:frozen and fire?", "SELECT ?Novelist WHERE { dbr:A_Song_of_Ice_and_Fire dbp:author ?Novelist }" +"In which dbp:studio did the res:Beatles_VI dbo:recordLabel their first dbo:album?", "SELECT ?studio WHERE { ?album dbo:artist dbr:The_Beatles ; rdf:type dbo:Album ; dbo:releaseDate ?date ; dbp:studio ?studio } ORDER BY ASC(?date) LIMIT 1" +"Which res:Museum_of_Beer_and_Brewing are dbp:stand in res:North_Rhine-Westphalia?", "SELECT ?company WHERE { ?company dct:subject dbc:Companies_based_in_North_Rhine-Westphalia ; rdf:type dbo:Brewery }" +"When did res:Diana,_Princess_of_Wales dbo:deathDate?", "SELECT DISTINCT xsd:date(?d) WHERE { res:Diana,_Princess_of_Wales dbo:deathDate ?d }" +"Who dbo:foundingYear res:Intel?", "SELECT DISTINCT ?uri WHERE { res:Intel dbp:founders ?uri }" +"Who is the youngest dbo:participant in the res:Premier_League?", "SELECT DISTINCT ?uri WHERE { ?uri dbo:team ?team . ?league dbo:league res:Premier_League . ?league dbo:team ?team . ?uri dbo:birthDate ?date } ORDER BY DESC(?date) LIMIT 1" +"Which dbp:instrument does res:Cat_Stevens dbo:starring?", "SELECT DISTINCT ?uri WHERE { res:Cat_Stevens dbo:instrument ?uri }" +"How many dbo:river and dbo:lake are in res:South_Carolina?", "SELECT (COUNT( DISTINCT ?uri) AS ?count) WHERE { { ?uri dbo:location dbr:South_Carolina ; rdf:type dbo:Lake } UNION { ?uri dct:subject dbc:Rivers_and_streams_of_South_Carolina } }" +"Who was dbo:alias res:Rodzilla?", "SELECT DISTINCT ?uri WHERE { ?uri http://xmlns.com/foaf/0.1/nick "Rodzilla"@en }" +"Give me the dbo:principal of all res:Countries_of_the_United_Kingdom in res:Africa.", "SELECT DISTINCT ?uri WHERE { ?country dct:subject dbc:Countries_in_Africa ; dbo:capital ?uri }" +"Which dbo:abstract are of the same dbo:type as the res:Manhattan_Bridge?", "SELECT DISTINCT ?bridge WHERE { dbr:Manhattan_Bridge dbo:type ?type . ?bridge dbo:type ?type ; rdf:type dbo:Bridge }" +"How many res:Companies_listed_on_the_New_York_Stock_Exchange_(J) were dbo:foundingYear by the dbo:founder of res:Facebook?", "SELECT (COUNT( DISTINCT ?x) AS ?c) WHERE { res:Facebook dbo:foundedBy ?uri . ?x dbo:foundedBy ?uri }" +"Show me res:Hiking in the res:Grand_Canyon where there's no dbo:leader of dbo:band.", "SELECT DISTINCT ?uri WHERE { ?uri dbp:trailheads res:Grand_Canyon FILTER NOT EXISTS { ?uri dbp:hazards res:Flash_flood } }" +"Which dbo:volume has the most pages?", "SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Book ; dbo:numberOfPages ?n } ORDER BY DESC(?n) OFFSET 0 LIMIT 1" +"What is the dbo:areaTotal state in the res:United_States?", "SELECT ?uri WHERE { ?uri dct:subject dbc:States_of_the_United_States ; rdf:type dbo:AdministrativeRegion ; dbo:areaTotal ?area } ORDER BY DESC(?area) OFFSET 0 LIMIT 1" +"Give me the res:Websites_blocked_in_Pakistan of res:Companies_listed_on_the_New_York_Stock_Exchange_(J) with more than dbo:numberOfEmployees.", "SELECT distinct ?web WHERE { ?sub dbo:numberOfEmployees ?obj . ?sub foaf:homepage ?web FILTER( xsd:integer(?obj) 500000 ) . }" +"What were the dbo:title of the three dbo:shipBeam by res:Columbus?", "SELECT ?uri WHERE { ?uri rdf:type dbo:Ship ; dct:subject dbc:Christopher_Columbus ; dct:subject dbc:Exploration_ships }" diff --git a/bart/qald-9-test-predictions.csv b/bart/qald-9-test-predictions.csv new file mode 100644 index 0000000000000000000000000000000000000000..1740d3aad79c9b164bcf94485630b489bdb46175 --- /dev/null +++ b/bart/qald-9-test-predictions.csv @@ -0,0 +1,151 @@ +"text","SELECT DISTINCT?uri WHERE {?uri <http://dbpedia.org/ontology/text> ?uri }" +"What is the dbo:timeZone of res:Salt_Lake_City?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Salt_Lake_City> <http://dbpedia.org/ontology/timeZone> }" +"Who dbo:billed res:Caesar_(game)?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Caesar_(game)> <http://dbpedia.org/ontology/billed> ?uri }" +"What is the dbo:elevation in res:Germany?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Germany> <http://dbpedia.org/ontology/elevation> ?uri }" +"Which res:Organization_of_American_States were in dbo:office during the res:Vietnam_War?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Vietnam_War> <http://dbpedia.org/ontology/office> ?uri }" +"Butch Otter is the dbo:governor of which U.S. state?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Butch> Otter <http://dbpedia.org/ontology/governor> ?uri } ORDER BY DESC(?uri) OFFSET 0 LIMIT 1" +"How many dbo:goldMedalist did res:Michael_Phelps dbo:award at the res:2008_Summer_Olympics?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Michael_Phelps> <http://dbpedia.org/ontology/award> ?uri }" +"Which dbp:artist were dbo:birthPlace on the same date as res:Rachel_Stevens?","SELECT DISTINCT?date WHERE { <http://dbpedia.org/resource/Rachel_Stevens> <http://dbpedia.org/ontology/birthPlace> ?date }" +"What is the dbo:profession of res:Frank_Herbert?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Frank_Herbert> <http://dbpedia.org/ontology/profession> ?uri }" +"Are res:Taiko some kind of res:Japan?","ASK WHERE { <http://dbpedia.org/resource/Japan> <http://dbpedia.org/ontology/type> <http://dbpedia.org/resource/Taiko> }" +"How many dbp:seat does the home res:FC_Porto have?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/FC_Porto> <http://dbpedia.org/ontology/numberOfSeat> ?uri }" +"Which res:Frequent-flyer_program has the most dbo:icaoAirlineCode?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Frequent-Flyer_program> <http://dbpedia.org/ontology/airlineCode> }" +"Which res:Europe have a res:Constitutional_monarchy?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Europe> <http://dbpedia.org/ontology/government> ?uri }" +"Which res:Countries_of_the_United_Kingdom have dbo:place with more than two res:Caves_of_Aggtelek_Karst_and_Slovak_Karst?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Countries_of_the_United_Kingdom> <http://dbpedia.org/ontology/country> ?uri }" +"Which dbo:targetAirport are dbo:place in res:California,_Cincinnati res:United_States?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/United_States> <http://dbpedia.org/ontology/targetAirport> ?uri }" +"What are the dbo:mascot of res:San_Francisco?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/San_Francisco> <http://dbpedia.org/ontology/mascot> ?uri }" +"What is res:Name_at_birth?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Name_at_birth> <http://dbpedia.org/ontology/birthPlace> ?uri }" +"Who is the dbo:mayor of res:Berlin?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Berlin> <http://dbpedia.org/ontology/mayor> ?uri }" +"Which res:Countries_of_the_United_Kingdom in the res:Europe?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Countries_of_the_United_Kingdom> <http://dbpedia.org/ontology/country> ?uri }" +"Which res:Software has been dbo:publisher by res:Mean_Hamster_Software?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Mean_Hamster_Software> <http://dbpedia.org/ontology/publisher> ?uri }" +"Which dbo:country was res:Bill_Gates dbo:birthPlace in?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Bill_Gates> <http://dbpedia.org/ontology/birthPlace> ?uri }" +"How many dbo:child did res:Jacques_Cousteau have?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Jacques_Cousteau> <http://dbpedia.org/ontology/child> ?uri }" +"Give me all dbo:occupation from res:Sweden.","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Sweden> <http://dbpedia.org/ontology/occupation> ?uri }" +"Which dbo:leader of the res:United_Kingdom were dbo:spouse to a res:Germany?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/United_Kingdom> <http://dbpedia.org/ontology/spouse> <http://dbpedia.org/resource/Germany> }" +"Give me all res:Argentina.","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Argentina> <http://dbpedia.org/ontology/country> ?uri }" +"How did res:Michael_Jackson dbo:deathDate?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Michael_Jackson> <http://dbpedia.org/ontology/deathDate> }" +"Which U.S. state has been dbp:known latest?","SELECT DISTINCT?uri WHERE {?uri <http://dbpedia.org/ontology/state> ?uri }" +"Which dbo:classes does the res:Millipede dbo:date to?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Millipede> <http://dbpedia.org/ontology/date> ?uri }" +"Give me the homepage of res:Forbes.","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Forbes> <http://dbpedia.org/ontology/headline> ?uri }" +"Who is the dbo:spouse of res:Amanda_Palmer?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Amanda_Palmer> <http://dbpedia.org/ontology/spouse> ?uri }" +"Who dbp:artist res:The_Storm_on_the_Sea_of_Galilee?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/The_Storm_on_the_Sea_of_Galilee> <http://dbpedia.org/ontology/artist> ?uri }" +"What is the dbo:elevation of res:Karakoram?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Karakoram> <http://dbpedia.org/ontology/elevation> ?uri }" +"When did res:Join res:Basque_language?","SELECT DISTINCT?date WHERE { <http://dbpedia.org/resource/Basque_language> <http://dbpedia.org/ontology/date> ?date }" +"Which dbo:background dbo:starring in res:The_Big_Bang_Theory?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/The_Big_Bang_Theory> <http://dbpedia.org/ontology/starring> ?uri }" +"Which res:Computer_scientist dbo:award an res:Oscar?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Oscar> <http://dbpedia.org/ontology/award> ?uri }" +"Who dbp:author res:Harry_Potter?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Harry_Potter> <http://dbpedia.org/ontology/author> ?uri }" +"Give me all dbo:writer that dbo:award the res:Nobel_Prize in res:Literature.","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Nobel_Prize> <http://dbpedia.org/ontology/Literature> <http://dbpedia.org/property/award> ?uri }" +"Give me res:The_Actors dbo:starring in res:Lovesick_(Priscilla_Renea_song).","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Lovesick_(Priscilla_Renea_song)> <http://dbpedia.org/ontology/starring> ?uri }" +"What is the dbo:address of res:Baghdad?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Baghdad> <http://dbpedia.org/ontology/address> ?uri }" +"In which dbo:city was the dbo:president of res:Montenegro dbo:birthPlace?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Montenegro> <http://dbpedia.org/ontology/birthPlace> <http://dbpedia.org/property/leader> ?uri } ORDER BY DESC(?uri) OFFSET 0 LIMIT 1" +"Which U.S. state has the res:Population_density?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Population_density> <http://dbpedia.org/ontology/state> ?uri }" +"What is the longest dbo:river in res:China?","SELECT Dbo:River WHERE { <http://dbpedia.org/resource/China> <http://dbpedia.org/ontology/river> <http://dbpedia.org/property/length> ?length }" +"What is the dbo:areaCode of res:Berlin?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Berlin> <http://dbpedia.org/ontology/area> ?uri }" +"How many res:Scientists_for_Global_Responsibility dbo:effectiveRadiatedPower from an res:Ivy_League?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Ivy_League> <http://dbpedia.org/ontology/effectiveRadiatedPower> ?uri }" +"Which dbo:specialist were dbo:birthPlace in res:Australia?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Australia> <http://dbpedia.org/ontology/birthPlace> ?uri }" +"Give me all res:Curaçao.","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Curaçao> <http://dbpedia.org/ontology/country> ?uri }" +"How many res:7805_Moons does res:Mars have?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Mars> <http://dbpedia.org/ontology/moon> ?uri }" +"What is res:Batman's res:Real-name_system?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Batman> <http://dbpedia.org/ontology/name> ?uri }" +"What is res:Elon_Musk for?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Elon_Musk> <http://dbpedia.org/ontology/author> ?uri }" +"Who is the dbo:author of res:WikiLeaks?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/WikiLeaks> <http://dbpedia.org/ontology/author> ?uri }" +"Sean Parnell was the dbo:governor of which U.S. state?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Sean_Parnell> <http://dbpedia.org/ontology/governor> ?uri }" +"How many years was the res:Ford_Model_48 res:T dbo:manufacturer?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Ford_Model_48> <http://dbpedia.org/ontology/manufacturer> ?uri }" +"When was res:Carlo_Giuliani,_Boy dbo:discharge?","SELECT DISTINCT?date WHERE { <http://dbpedia.org/resource/Carlo_Giuliani> <http://dbpedia.org/ontology/dischargeDate> ?date }" +"Give me all dbo:animal that are dbo:quote.","SELECT DISTINCT?uri WHERE {?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Animal> }" +"Who was the dbo:spouse of res:USS_President_Lincoln_(1907)?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/USS_President_Lincoln_(1907)> <http://dbpedia.org/ontology/spouse> ?uri }" +"How many dbp:awards has res:Bertrand_Russell?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Bertrand_Russell> <http://dbpedia.org/ontology/award> ?uri }" +"Is res:Pamela_Anderson a res:Vegan_Virgin_Valentine?","ASK WHERE { <http://dbpedia.org/resource/Pamela_Anderson> <http://dbpedia.org/ontology/Vegan> ?uri }" +"Which dbo:area were sent into dbo:course around the dbo:year?","SELECT DISTINCT?uri WHERE {?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Area> } ORDER BY DESC( ?uri) OFFSET 0 LIMIT 1" +"Which res:Germany have more than res:Population?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Germany> <http://dbpedia.org/ontology/populationTotal> ?uri }" +"Who is the dbo:child of res:Robert_F._Kennedy dbp:spouse to?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Robert_F> . _Kennedy <http://dbpedia.org/ontology/child> ?uri }" +"How many dbo:numberOfStudents does the res:Vrije_Universiteit_Amsterdam have?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Vrije_Universiteit_Amsterdam> <http://dbpedia.org/ontology/numberOfStudents> ?uri }" +"What is the dbo:revenue of res:IBM?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/IBM> <http://dbpedia.org/ontology/revenue> ?uri }" +"How many res:M_(James_Bond) do dbp:last?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/M_(James_Bond)> <http://dbpedia.org/ontology/last> ?uri }" +"Who does the dbo:voice of res:Bart_Simpson?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Bart_Simpson> <http://dbpedia.org/ontology/voice> ?uri }" +"Who was res:Tom_Hanks dbp:spouse to?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Tom_Hanks> <http://dbpedia.org/property/spouse> ?uri }" +"Through which res:Countries_of_the_United_Kingdom does the res:Yenisei_River?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Yenisei_River> <http://dbpedia.org/ontology/country> ?uri }" +"Give me all dbo:management that are dbo:author in res:Germany.","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Germany> <http://dbpedia.org/ontology/author> ?uri }" +"When did res:Michael_Jackson dbo:deathDate?","SELECT DISTINCT?date WHERE { <http://dbpedia.org/resource/Michael_Jackson> <http://dbpedia.org/ontology/deathDate> }" +"What is the dbo:head in res:Africa?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Africa> <http://dbpedia.org/ontology/head> ?uri }" +"Which dbo:author dbo:composer the most dbo:volume?","SELECT DISTINCT?uri WHERE {?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Book> ; <http://dbpedia.org/property/author> ?uri } ORDER BY DESC(?uri) OFFSET 0 LIMIT 1" +"Give me all gangsters from the dbo:time.","SELECT DISTINCT?uri WHERE {?uri <http://dbpedia.org/ontology/gangster> ?uri }" +"Give me all res:Spacecraft that dbo:circulation to res:Mars.","SELECT DISTINCT?uri WHERE {?uri <http://dbpedia.org/ontology/Spacecraft> <http://dbpedia.org/resource/Mars> }" +"Show me all res:Czech_Republic.","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Czech_Republic> <http://dbpedia.org/ontology/country> ?uri }" +"Give me all taikonauts.","SELECT DISTINCT?uri WHERE {?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Astronaut> }" +"Which res:Countries_of_the_United_Kingdom have more than ten res:Volcanoes_National_Park?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Volcano_National_Park> <http://dbpedia.org/ontology/country> ?uri }" +"Give me all dbo:film with res:Tom_Cruise.","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Tom_Cruise> <http://dbpedia.org/ontology/starring> ?uri }" +"When did res:Count_Dracula's dbp:producer dbo:deathDate?","SELECT DISTINCT?date WHERE { <http://dbpedia.org/resource/Count_Dracula> <http://dbpedia.org/ontology/deathDate> }" +"Who dbo:author res:English_Wikipedia?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/English_Wikipedia> <http://dbpedia.org/ontology/author> ?uri }" +"Give me all res:List_of_German_female_artists.","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/List_of_German_female_artists> <http://dbpedia.org/ontology/artist> ?uri }" +"Who dbo:family res:Aldi?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Aldi> <http://dbpedia.org/ontology/family> ?uri }" +"Which dbo:volume were dbo:writer by res:Danielle_Steel?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Danielle_Steel> <http://dbpedia.org/ontology/author> ?uri }" +"Who was dbo:influenced by res:Socrates?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Socrates> <http://dbpedia.org/ontology/influenced> ?uri }" +"How dbo:capital is res:Chiemsee?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Chiemsee> <http://dbpedia.org/ontology/capital> ?uri }" +"Which res:Companies_listed_on_the_New_York_Stock_Exchange_(J) dbo:service in the dbp:industry as well as in res:Medicine?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/New_York_Stock_Exchange> <http://dbpedia.org/ontology/company> ?uri }" +"Which dbp:authority were dbo:birthPlace on the res:Philippines?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Philippines> <http://dbpedia.org/ontology/authority> ?uri }" +"Who were the dbo:parent of res:Queen_Victoria?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Queen_Victoria> <http://dbpedia.org/ontology/parent> ?uri }" +"Are there any dbo:class in the res:United_States?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/United_States> <http://dbpedia.org/ontology/class> ?uri }" +"Which dbo:language are dbo:spokenIn in res:Estonia?","SELECT Dbo:Language WHERE { <http://dbpedia.org/resource/Estonia> <http://dbpedia.org/ontology/spokenIn> }" +"Give me a list of all dbo:principal endangered dbo:date.","SELECT DISTINCT?uri WHERE {?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Principal> ?uri } ORDER BY DESC(?uri) OFFSET 0 LIMIT 1" +"Which res:Countries_of_the_United_Kingdom are dbo:related by the res:Rhine?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Rhine> <http://dbpedia.org/ontology/country> ?uri }" +"Who was the dbo:parent of res:Elizabeth_II?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Elizabeth_II> <http://dbpedia.org/ontology/parent> ?uri }" +"Give me all res:Sand_casting.","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Sand_casting> <http://dbpedia.org/ontology/casting> ?uri }" +"Give me all res:Organization_of_American_States of the last res:20 years.","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Organization_of_American_States> <http://dbpedia.org/ontology/year> ?uri }" +"When is the res:Worst-case_scenario going to be in dbo:picture in the res:Netherlands?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Netherlands> <http://dbpedia.org/ontology/location> ?uri }" +"Whom did res:Lance_Bass dbo:spouse?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Lance_Bass> <http://dbpedia.org/ontology/spouse> }" +"Which dbo:subsidiary of TUI Travel dbo:order both res:Glasgow_Airport and res:Dublin_Airport?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Glasgow_Airport> <http://dbpedia.org/ontology/subsidiary> ?uri }" +"What dbo:language are dbo:spokenIn in res:Pakistan?","SELECT Dbo:Language WHERE { <http://dbpedia.org/resource/Pakistan> <http://dbpedia.org/ontology/spokenIn> }" +"Who is the dbo:child of res:Bill_Clinton dbo:spouse to?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Bill_Clinton> <http://dbpedia.org/ontology/spouse> <http://dbpedia.org/resource/Dbo:child> ?uri }" +"Who was on the res:Apollo_11?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Apollo_11> <http://dbpedia.org/ontology/mission> ?uri }" +"What is the dbo:wavelength of res:Indigo?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Indigo> <http://dbpedia.org/ontology/wavelength> ?uri }" +"Give me all res:The_B-Sides.","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/The_B-Sides> <http://dbpedia.org/ontology/team> ?uri }" +"Who was dbo:alias res:Scarface?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Scarface> <http://dbpedia.org/ontology/alias> ?uri }" +"Which dbo:operator dbp:float into the res:North_Sea?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/North_Sea> <http://dbpedia.org/ontology/operator> ?uri }" +"Where is res:Fort_Knox dbp:location?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Fort_Knox> <http://dbpedia.org/property/location> <http://dbpedia.org/ontology/location> ?uri }" +"Which res:Daughters_of_the_Dust of res:United_Kingdom dbp:deathPlace at the same dbo:place they were dbo:birthPlace at?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/United_Kingdom> <http://dbpedia.org/property/deathPlace> <http://dbpedia.org/ontology/birthPlace> ?uri }" +"How many dbo:leader did res:China have?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/China> <http://dbpedia.org/ontology/leader> ?uri }" +"What are the dbo:athletics of the res:Teenage_Mutant_Ninja_Turtles?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Teenage_Mutant_Ninja_Turtles> <http://dbpedia.org/ontology/athletics> ?uri }" +"Where does res:Piccadilly dbo:routeStart?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Piccadilly> <http://dbpedia.org/ontology/routeStart> ?uri }" +"What is the dbp:name of the dbo:university where res:University_of_Alabama's dbp:spouse dbo:office?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/University_of_Alabama> <http://dbpedia.org/ontology/spouse> ?uri }" +"When did res:Paraguay dbo:state its res:Independence?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Paraguay> <http://dbpedia.org/ontology/state> <http://dbpedia.org/resource/Independence> }" +"How dbo:thumbnail is the dbo:thumbnailest active res:National_Basketball_Association player?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/National_Basketball_Association> <http://dbpedia.org/ontology/activePlayer> ?uri }" +"Where did res:Abraham_Lincoln dbo:deathDate?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Abraham_Lincoln> <http://dbpedia.org/ontology/deathDate> }" +"When was res:Jack_Wolfskin dbo:foundingYear?","SELECT DISTINCT?date WHERE { <http://dbpedia.org/resource/Jack_Wolfskin> <http://dbpedia.org/ontology/foundingYear> }" +"In which dbo:city is the dbo:headquarter of res:Air_China?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Air_China> <http://dbpedia.org/ontology/headquarter> ?uri }" +"What is the dbo:foundingYear year of the dbo:manufacturer that dbo:manufacturer res:Pilsner_Urquell?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Pilsner_Urquell> <http://dbpedia.org/ontology/foundedYear> ?uri }" +"When did the res:Boston_Tea_Party take dbo:place?","SELECT DISTINCT?date WHERE { <http://dbpedia.org/resource/Boston_Tea_Party> <http://dbpedia.org/ontology/place> ?date }" +"Which dbo:animal are dbo:principal endangered?","SELECT DISTINCT?uri WHERE {?uri <http://dbpedia.org/ontology/animal> <http://dbpedia.org/property/endangered> ?uri } ORDER BY DESC(?uri) OFFSET 0 LIMIT 1" +"Which res:Politicians_of_The_Wire were dbo:spouse to a res:Germany?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Germany> <http://dbpedia.org/ontology/spouse> ?uri }" +"How big is the dbo:ground's dbo:diameter?","SELECT DISTINCT?height WHERE {?height <http://dbpedia.org/ontology/dbo:height> }" +"Is the dbp:spouse of President res:Barack_Obama dbo:guest Michelle?","ASK WHERE { <http://dbpedia.org/resource/Barack_Obama> <http://dbpedia.org/ontology/spouse> <http://dbpedia.org/resource/Michelle_Obama> }" +"Which U.S. state has the dbo:abbreviation res:MN?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/MN> <http://dbpedia.org/ontology/state> ?uri }" +"When did res:Muhammad dbo:deathDate?","SELECT DISTINCT?date WHERE { <http://dbpedia.org/resource/Muhammad> <http://dbpedia.org/ontology/deathDate> <http://dbpedia.org/property/date> ?date }" +"What is the dbp:background of the res:Moon dbo:musicComposer of?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Moon> <http://dbpedia.org/ontology/musicComposer> <http://dbpedia.org/property/background> ?uri } ORDER BY DESC(?uri) OFFSET 0 LIMIT 1" +"Who is the dbo:governor of res:Texas?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Texas> <http://dbpedia.org/ontology/governor> ?uri }" +"Which dbo:film did res:Akira_Kurosawa dbo:director?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Akira_Kurosawa> <http://dbpedia.org/ontology/director> }" +"What was the dbp:name of the dbo:motto in res:1836 in res:San_Antonio?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/San_Antonio> <http://dbpedia.org/ontology/name> ?uri }" +"Give me the dbo:officialLanguage of dbo:background of the res:Charmed.","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Charmed> <http://dbpedia.org/ontology/officialLanguage> ?uri }" +"How many dbp:calories does a res:Baguette have?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Baguette> <http://dbpedia.org/ontology/numberOfCalories> ?uri }" +"Give me all res:Libraries_in_Brighton_and_Hove dbo:established before res:1400.","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Brighton_and_Hove> <http://dbpedia.org/ontology/established> ?uri }" +"Give me all res:Frisian_Islands that dbp:rank to the res:Netherlands_Antilles_at_the_2007_Pan_American_Games.","SELECT DISTINCT?uri WHERE {?uri <http://dbpedia.org/ontology/country> <http://dbpedia.org/resource/Netherlands_Antilles_at_the_2007_Pan_American_Games> }" +"Which dbo:museum dbo:sport res:The_Scream?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/The_Scream> <http://dbpedia.org/ontology/museum> }" +"When was the res:De_Beers dbo:foundedBy?","SELECT DISTINCT?date WHERE { <http://dbpedia.org/resource/De_Beers> <http://dbpedia.org/ontology/foundedBy> }" +"Who became dbo:president after res:John_F._Kennedy dbo:deathDate?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/John_F> . _Kennedy <http://dbpedia.org/ontology/deathDate> }" +"Who are the dbo:parent of the dbo:spouse of res:Juan_Carlos_I_of_Spain res:I?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Juan_Carlos_I_of_Spain> <http://dbpedia.org/ontology/spouse> ?uri }" +"Who is the dbo:author of the dbo:service a dbo:anthem of dbo:frozen and fire?","" +"In which dbp:studio did the res:Beatles_VI dbo:recordLabel their first dbo:album?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Beatles_VI> <http://dbpedia.org/ontology/recordLabel> ?uri }" +"Which res:Museum_of_Beer_and_Brewing are dbp:stand in res:North_Rhine-Westphalia?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Museum_of_Beer_and_Brewing> <http://dbpedia.org/ontology/location> ?uri }" +"When did res:Diana,_Princess_of_Wales dbo:deathDate?","SELECT DISTINCT?date WHERE { <http://dbpedia.org/resource/Diana,_Princess_of_Wales> <http://dbpedia.org/ontology/deathDate> }" +"Who dbo:foundingYear res:Intel?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Intel> <http://dbpedia.org/ontology/foundingYear> ?uri }" +"Who is the youngest dbo:participant in the res:Premier_League?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Premier_League> <http://dbpedia.org/ontology/participant> ?uri }" +"Which dbp:instrument does res:Cat_Stevens dbo:starring?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Cat_Stevens> <http://dbpedia.org/ontology/starring> ?uri }" +"How many dbo:river and dbo:lake are in res:South_Carolina?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/South_Carolina> <http://dbpedia.org/ontology/river> }" +"Who was dbo:alias res:Rodzilla?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Rodzilla> <http://dbpedia.org/ontology/alias> ?uri }" +"Give me the dbo:principal of all res:Countries_of_the_United_Kingdom in res:Africa.","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Africa> <http://dbpedia.org/ontology/country> ?uri }" +"Which dbo:abstract are of the same dbo:type as the res:Manhattan_Bridge?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Manhattan_Bridge> <http://dbpedia.org/ontology/type> ?uri }" +"How many res:Companies_listed_on_the_New_York_Stock_Exchange_(J) were dbo:foundingYear by the dbo:founder of res:Facebook?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Facebook> <http://dbpedia.org/ontology/founder> ?uri }" +"Show me res:Hiking in the res:Grand_Canyon where there's no dbo:leader of dbo:band.","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Grand_Canyon> <http://dbpedia.org/ontology/band> <http://dbpedia.org/resource/Dbo:leader> ?uri }" +"Which dbo:volume has the most pages?","SELECT DISTINCT?uri WHERE {?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Book> ; <http://dbpedia.org/property/numberOfPages> ?uri }" +"What is the dbo:areaTotal state in the res:United_States?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/United_States> <http://dbpedia.org/ontology/area> ?uri }" +"Give me the res:Websites_blocked_in_Pakistan of res:Companies_listed_on_the_New_York_Stock_Exchange_(J) with more than dbo:numberOfEmployees.","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Websites_blocked_in_Pakistan> <http://dbpedia.org/ontology/numberOfEmployees> ?uri }" +"What were the dbo:title of the three dbo:shipBeam by res:Columbus?","SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Columbus> <http://dbpedia.org/ontology/title> ?uri }" diff --git a/bart/qald-9-train-linked-tokenized.csv b/bart/qald-9-train-linked-tokenized.csv new file mode 100644 index 0000000000000000000000000000000000000000..fb6d2e8908cdb7529301a54c1f1a8ce745b8e5e8 --- /dev/null +++ b/bart/qald-9-train-linked-tokenized.csv @@ -0,0 +1,409 @@ +text,summary +"List all boardgames by res:Generic_Mapping_Tools.", "SELECT ?uri WHERE { ?uri dbo:publisher res:GMT_Games }" +"Who developed res:Skype?", "SELECT DISTINCT ?uri WHERE { res:Skype dbo:developer ?uri. }" +"Which people were born in res:Heraklion?", "SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Person ; onto:birthPlace res:Heraklion. }" +"In which U.S. state is res:Area_51 located?", "SELECT DISTINCT ?uri WHERE { res:Area_51 dbo:location ?uri . ?uri dbo:country res:United_States. }" +"Who is the mayor of res:New_York_City?", "SELECT DISTINCT ?uri WHERE { res:New_York_City dbo:leaderName ?uri }" +"Which res:Countries_of_the_United_Kingdom have places with more than two res:Caves_of_Aggtelek_Karst_and_Slovak_Karst?", "SELECT DISTINCT ?uri WHERE { ?cave rdf:type dbo:Cave ; dbo:location ?uri . ?uri rdf:type dbo:Country } GROUP BY ?uri HAVING ( COUNT( ?cave) 2 )" +"Where did res:Abraham_Lincoln die?", "SELECT DISTINCT ?uri WHERE { res:Abraham_Lincoln dbo:deathPlace ?uri. }" +"Which airports does res:Air_China serve?", "SELECT DISTINCT ?uri WHERE { res:Air_China dbo:targetAirport ?uri }" +"Give me all actors starring in movies directed by and starring res:William_Shatner.", "SELECT DISTINCT ?uri WHERE { ?x dbo:director res:William_Shatner ; dbo:starring res:William_Shatner { ?x dbo:starring ?uri } UNION { ?x dbp:starring ?uri } }" +"What are the official languages of the res:Philippines?", "SELECT DISTINCT ?uri WHERE { res:Philippines dbo:officialLanguage ?uri }" +"Give me all res:Denmark.", "SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Film ; dbo:country res:Denmark }" +"Which movies starring res:Brad_Pitt were directed by res:Guy_Ritchie?", "SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Film ; dbo:starring res:Brad_Pitt ; dbo:director res:Guy_Ritchie }" +"Give me the grandchildren of res:Bruce_Lee.", "SELECT DISTINCT ?uri WHERE { res:Bruce_Lee dbo:child ?child . ?child dbp:children ?uri }" +"Which other weapons did the designer of the res:Uzi develop?", "SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Weapon ; dbp:designer ?x . res:Uzi dbp:designer ?x FILTER ( ?uri != res:Uzi ) }" +"Who is the owner of res:Universal_Studios?", "SELECT DISTINCT ?uri WHERE { res:Universal_Studios dbo:owner ?uri }" +"Which state of the res:Usa_District,_Ōita has the res:Population_density?", "SELECT DISTINCT ?uri WHERE { ?uri rdf:type yago:WikicatStatesOfTheUnitedStates ; dbp:densityrank ?rank } ORDER BY ASC(?rank) LIMIT 1" +"Which monarchs were married to a res:Germany?", "SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Monarch ; dbo:spouse ?spouse { ?spouse dbo:birthPlace res:Germany } UNION { ?spouse dbo:birthPlace ?p . ?p dbo:country res:Germany } }" +"Which organizations were founded in res:1950?", "SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Organisation { ?uri dbo:formationYear ?date } UNION { ?uri dbo:foundingYear ?date } UNION { ?uri dbp:foundation ?date } UNION { ?uri dbp:formation ?date } FILTER regex(?date, "^1950") }" +"Who created the res:Captain_Comic?", "SELECT DISTINCT ?uri WHERE { res:Captain_America dbo:creator ?uri }" +"Give me the res:Apollo_14.", "SELECT DISTINCT ?uri WHERE { ?uri dbo:mission res:Apollo_14 }" +"Who wrote the book The pillars of the Earth?", "SELECT DISTINCT ?uri WHERE { res:The_Pillars_of_the_Earth dbo:author ?uri }" +"Which state of the res:United_States has the highest density?", "SELECT ?uri WHERE { ?uri dbp:densityrank ?density } ORDER BY ASC(?density) LIMIT 1" +"Which spaceflights were launched from res:Baikonur_Cosmodrome_Site_110?", "SELECT DISTINCT ?uri WHERE { ?uri dbp:launchPad res:Baikonur_Cosmodrome }" +"Give me a list of all res:Trumpet that were res:List_of_American_big_band_bandleaders.", "SELECT DISTINCT ?uri WHERE { ?uri dbo:occupation res:Bandleader ; dbo:instrument res:Trumpet }" +"Which U.S. states are in the same timezone as res:Utah?", "SELECT DISTINCT ?uri WHERE { res:Utah dbp:timezone ?x . ?uri rdf:type yago:WikicatStatesOfTheUnitedStates ; dbp:timezone ?x FILTER ( ?uri != res:Utah ) }" +"Which U.S. states possess gold minerals?", "SELECT DISTINCT ?uri WHERE { ?uri rdf:type yago:WikicatStatesOfTheUnitedStates ; dbp:mineral ?mineral FILTER regex(?mineral, "gold", "i") }" +"Who is the daughter of res:Ingrid_Bergman married to?", "SELECT DISTINCT ?uri WHERE { res:Ingrid_Bergman dbo:child ?child . ?child dbp:spouse ?uri }" +"How deep is res:Lake_Placid?", "SELECT DISTINCT ?n WHERE { res:Lake_Placid_(Texas) dbo:maximumDepth ?n }" +"Show me all res:Museums_in_Aalborg in res:London.", "SELECT DISTINCT ?uri WHERE { ?uri a dbo:Museum ; dbo:location res:London }" +"Which res:Caves_of_Aggtelek_Karst_and_Slovak_Karst have more than 3 entrances?", "SELECT DISTINCT ?uri WHERE { ?uri a dbo:Cave ; dbp:entranceCount ?entrance FILTER ( ?entrance 3 ) }" +"Who is the tallest player of the res:Atlanta_Falcons?", "SELECT DISTINCT ?uri WHERE { ?uri dbo:team res:Atlanta_Falcons ; dbo:height ?h } ORDER BY DESC(?h) OFFSET 0 LIMIT 1" +"What are the res:Action_role-playing_games according to res:IGN?", "SELECT DISTINCT ?uri WHERE { ?uri http://purl.org/dc/terms/subject res:Category:Action_role-playing_video_games ; dbp:ign ?score } ORDER BY DESC(?score) LIMIT 10" +"Give me all writers that won the res:Nobel_Prize in res:Literature.", "SELECT DISTINCT ?uri WHERE { ?uri a dbo:Writer ; dbo:award res:Nobel_Prize_in_Literature }" +"Show me all res:National_Basketball_Players_Association that are higher than 2 meters.", "SELECT DISTINCT ?uri WHERE { ?uri a dbo:BasketballPlayer ; dbo:height ?n FILTER ( ?n 2.0 ) }" +"When was the res:Statue_of_Liberty built?", "SELECT DISTINCT ?date WHERE { res:Statue_of_Liberty dbp:beginningDate ?date }" +"Which states border res:Illinois?", "SELECT DISTINCT ?uri WHERE { res:Illinois dbp:borderingstates ?uri }" +"Who developed res:Minecraft?", "SELECT DISTINCT ?uri WHERE { res:Minecraft dbo:developer ?uri }" +"Where did res:Hillel_Slovak die?", "SELECT DISTINCT ?uri WHERE { res:Hillel_Slovak dbo:deathPlace ?uri }" +"What movies does res:Jesse_Eisenberg play in?", "SELECT DISTINCT ?uri WHERE { ?uri a dbo:Film ; dbo:starring res:Jesse_Eisenberg }" +"Give all res:Swimmers_(film) that were born in res:Moscow.", "SELECT DISTINCT ?uri WHERE { ?uri a dbo:Swimmer ; dbo:birthPlace res:Moscow }" +"Give me all cosmonauts.", "SELECT DISTINCT ?uri WHERE { ?uri a dbo:Astronaut { ?uri dbo:nationality res:Russia } UNION { ?uri dbo:nationality res:Soviet_Union } }" +"Give me all res:Non–profit_organizations_based_in_California.", "SELECT DISTINCT ?uri WHERE { ?uri dbo:type res:Nonprofit_organization { ?uri dbo:location res:Switzerland } UNION { ?uri dbo:location ?x . ?x dbo:country res:Switzerland } }" +"Which presidents were born in res:1945?", "SELECT DISTINCT ?uri WHERE { ?uri a dbo:President ; dbo:birthDate ?date FILTER regex(?date, "^1945") }" +"What kind of music did res:Lou_Reed play?", "SELECT DISTINCT ?uri WHERE { res:Lou_Reed dbo:genre ?uri }" +"Where do the res:Boston_Red_Sox play?", "SELECT DISTINCT ?uri WHERE { res:Boston_Red_Sox dbp:ballpark ?uri }" +"Show a list of soccer clubs that play in the res:Bundesliga.", "SELECT DISTINCT ?uri WHERE { ?uri a dbo:SoccerClub ; dbo:league res:Bundesliga }" +"Which res:Billings_Volcanos_(basketball) in res:Japan erupted since res:2000?", "SELECT DISTINCT ?uri WHERE { ?uri a dbo:Volcano ; dbo:locatedInArea res:Japan ; dbo:eruptionYear ?date FILTER ( year(?date) = 2000 ) }" +"Which bridges cross the res:Seine?", "SELECT DISTINCT ?uri WHERE { ?uri a dbo:Bridge ; dbo:crosses res:Seine }" +"What is the official color of the res:University_of_Oxford?", "SELECT DISTINCT ?string WHERE { res:University_of_Oxford dbo:officialSchoolColour ?string }" +"How many films did res:Hal_Roach produce?", "SELECT (COUNT( DISTINCT ?uri) AS ?c) WHERE { ?uri dbo:producer res:Hal_Roach }" +"Give me all res:Denmark.", "SELECT DISTINCT ?uri WHERE { ?uri a dbo:Film ; dbo:country res:Denmark }" +"What is the most frequent cause of death?", "SELECT DISTINCT ?x WHERE { ?uri dbo:deathCause ?x . } ORDER BY DESC(COUNT( DISTINCT ?uri)) OFFSET 0 LIMIT 1" +"Who are the four youngest res:NBA_Most_Valuable_Player_Award res:National_Basketball_Players_Association?", "SELECT DISTINCT ?uri WHERE { ?uri a dbo:BasketballPlayer ; dbo:birthDate ?date ; dbp:highlights ?h FILTER regex(?h, "MVP") } ORDER BY DESC(?date) OFFSET 0 LIMIT 4" +"Give me all res:Companies_listed_on_the_New_York_Stock_Exchange_(J) in res:Munich.", "SELECT DISTINCT ?uri WHERE { ?uri a dbo:Company { ?uri dbo:location res:Munich } UNION { ?uri dbo:headquarter res:Munich } UNION { ?uri dbo:locationCity res:Munich } }" +"Give me the capitals of all res:Countries_of_the_United_Kingdom that the res:Himalayas run through.", "SELECT DISTINCT ?uri WHERE { res:Himalayas dbo:country ?country . ?country dbo:capital ?uri }" +"How many movies did res:Park_Chan-wook?", "SELECT COUNT( DISTINCT ?uri AS ?uri) WHERE { ?uri dbo:director res:Park_Chan-wook . }" +"Which rivers flow into a res:Germany?", "SELECT DISTINCT ?uri WHERE { ?uri a dbo:River . ?x dbo:inflow ?uri ; a dbo:Lake ; dbo:country res:Germany }" +"How many airlines are there?", "SELECT (COUNT( DISTINCT ?uri) AS ?c) WHERE { ?uri a dbo:Airline }" +"Give me all islands that belong to res:Japan.", "SELECT DISTINCT ?uri WHERE { ?uri a dbo:Island ; dbo:country res:Japan }" +"How many inhabitants does res:Maribor have?", "SELECT DISTINCT ?num WHERE { res:Maribor dbo:populationTotal ?num }" +"Give me all res:Apollo_14.", "SELECT DISTINCT ?uri WHERE { ?uri dbo:mission res:Apollo_14 }" +"Which res:Companies_listed_on_the_New_York_Stock_Exchange_(J) have more than 1 million employees?", "SELECT DISTINCT ?uri WHERE { ?uri a dbo:Company { ?uri dbo:numberOfEmployees ?n } UNION { ?uri dbp:numEmployees ?n } FILTER ( ?n 1000000 ) }" +"In which films directed by res:Garry_Marshall starring?", "SELECT DISTINCT ?uri WHERE { ?uri a dbo:Film ; dbo:starring res:Julia_Roberts ; dbo:director res:Garry_Marshall }" +"Give me all soccer clubs in the res:Premier_League.", "SELECT DISTINCT ?uri WHERE { ?uri a dbo:SoccerClub ; dbo:league res:Premier_League }" +"What is the highest place of the res:Urals_Mussorgsky_State_Conservatoire?", "SELECT DISTINCT ?uri WHERE { res:Ural_Mountains dbp:highest ?uri }" +"Who is the governor of res:Wyoming?", "SELECT DISTINCT ?uri WHERE { res:Wyoming dbp:governor ?uri }" +"Where did the architect of the res:Eiffel_Tower?", "SELECT DISTINCT ?uri WHERE { res:Eiffel_Tower dbo:architect ?x . ?x dbp:almaMater ?uri }" +"Give me all world heritage sites designated within the past two years.", "SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:WorldHeritageSite . { ?uri dbp:year '2013'^^xsd:integer . } UNION { ?uri dbp:year '2014'^^xsd:integer . } }" +"Give me all actors who were born in res:Paris after res:1950.", "SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Actor . ?uri dbo:birthPlace res:Paris . ?uri dbo:birthDate ?date . FILTER ( ?date = xsd:dateTime('1950-12-31T00:00:00Z')) }" +"Which movies star both res:Liz:_The_Elizabeth_Taylor_Story and res:Richard_Burton?", "SELECT DISTINCT ?uri WHERE { ?uri dbo:starring res:Elizabeth_Taylor ; dbo:starring res:Richard_Burton }" +"Give me all res:Australia.", "SELECT DISTINCT ?uri WHERE { ?uri dbo:type res:Nonprofit_organization { ?uri dbo:locationCountry res:Australia } UNION { ?uri dbo:location ?x . ?x dbo:country res:Australia } }" +"Which pope succeeded res:John_Paul res:Ii?", "SELECT DISTINCT ?uri WHERE { res:Pope_John_Paul_II dbp:successor ?uri }" +"Give me all res:European_Free_Trade_Association_Surveillance_Authority astronauts.", "SELECT DISTINCT ?uri WHERE { ?uri a dbo:Astronaut ; dbp:type res:European_Space_Agency }" +"Who was president of res:Pakistan in res:1978?", "SELECT DISTINCT ?uri WHERE { ?uri dbp:title res:President_of_Pakistan ; dbp:years 1978 }" +"Who is the owner of res:Rolls-Royce?", "SELECT DISTINCT ?uri WHERE { res:Rolls-Royce_Motors dbo:owner ?uri }" +"How many res:Museums_in_Aalborg does res:Paris have?", "SELECT DISTINCT ?uri WHERE { ?uri a dbo:Museum ; dbo:location res:Paris }" +"Where was res:John_F._Kennedy_International_Airport assassinated?", "SELECT DISTINCT ?uri WHERE { res:John_F._Kennedy dbo:deathPlace ?uri }" +"Give me all federal chancellors of res:Germany.", "SELECT DISTINCT ?uri WHERE { ?uri a dbo:Person { ?uri dbo:office "Chancellor of Germany" } UNION { ?uri dbp:office res:Chancellor_of_Germany } }" +"Show me everyone who was born on res:Halloween.", "SELECT DISTINCT ?uri WHERE { ?uri a dbo:Person { ?uri dbo:birthDate ?date } UNION { ?uri dbp:birthDate ?date } res:Halloween dbp:date ?date }" +"Which beer originated in res:Ireland?", "SELECT DISTINCT ?uri WHERE { ?uri dbp:type res:Beer ; dbo:origin res:Beer_in_Ireland }" +"To which res:Countries_of_the_United_Kingdom does the res:Himalayan system extend?", "SELECT DISTINCT ?uri WHERE { res:Himalayas dbo:country ?uri }" +"Which actors were born in res:Germany?", "SELECT DISTINCT ?uri WHERE { ?uri a dbo:Actor { ?uri dbo:birthPlace res:Germany } UNION { ?uri dbo:birthPlace ?place . ?place dbo:country res:Germany } }" +"How much res:Carby does res:Peanut_butter have?", "SELECT DISTINCT ?carbs WHERE { res:Peanut_butter dbp:carbs ?carbs }" +"Who produced the most films?", "SELECT DISTINCT ?uri WHERE { ?film rdf:type dbo:Film . ?film dbo:producer ?uri . } ORDER BY DESC(COUNT( ?film)) OFFSET 0 LIMIT 1" +"How many employees does res:Google have?", "SELECT DISTINCT ?num WHERE { res:Google dbo:numberOfEmployees ?num }" +"Give me all actors who were born in res:Berlin.", "SELECT DISTINCT ?uri WHERE { ?uri a dbo:Actor ; dbo:birthPlace res:Berlin }" +"Who created res:Goofy?", "SELECT DISTINCT ?uri WHERE { res:Goofy dbo:creator ?uri }" +"Which music albums contain the res:The_Last_Song_(film)?", "SELECT DISTINCT ?uri WHERE { ?single dbo:album ?uri ; rdfs:label "Last Christmas"@en }" +"When was res:Alberta admitted as province?", "SELECT DISTINCT ?date WHERE { res:Alberta dbp:admittancedate ?date }" +"How many missions does the res:Soyuz_programme have?", "SELECT (COUNT( DISTINCT ?uri) AS ?c) WHERE { ?uri dbp:programme res:Soyuz_programme }" +"Give me all the res:Tv_test_pattern shows with res:Neil_Patrick_Harris.", "SELECT DISTINCT ?uri WHERE { ?uri a dbo:TelevisionShow ; dbo:starring res:Neil_Patrick_Harris }" +"When were the res:Hells_Angels founded?", "SELECT DISTINCT ?date WHERE { res:Hells_Angels dbp:founded ?date }" +"What is the net income of res:Apple_Inc.?", "SELECT DISTINCT ?ni WHERE { res:Apple_Inc. dbo:netIncome ?ni }" +"Give me all res:Sweden.", "SELECT DISTINCT ?uri WHERE { ?uri a dbo:Holiday ; dbo:country res:Sweden }" +"In which city was the res:Juliana_Maria_of_Brunswick-Wolfenbüttel buried?", "SELECT DISTINCT ?uri WHERE { res:Juliana_of_the_Netherlands dbp:burialPlace ?uri . ?uri a dbo:Settlement }" +"List all the musicals with music by res:Leonard_Bernstein.", "SELECT DISTINCT ?uri WHERE { ?uri a dbo:Musical ; dbo:musicBy res:Leonard_Bernstein }" +"Give me all res:Companies_listed_on_the_New_York_Stock_Exchange_(J) in the advertising industry.", "SELECT (COUNT( DISTINCT ?uri) AS ?c) WHERE { ?uri a dbo:Company { ?uri dbo:industry res:Advertising } UNION { ?uri dbo:industry ?industry FILTER regex(?industry, "advertising", "i") } }" +"What is the res:Metropolitan_area in res:Washington state?", "SELECT DISTINCT ?uri WHERE { res:Washington_(state) dbp:largestmetro ?uri }" +"Who killed res:John_Lennon?", "SELECT DISTINCT ?uri WHERE { ?uri a dbo:Person ; dbp:conviction res:Death_of_John_Lennon }" +"Which writers studied in res:Istanbul?", "SELECT DISTINCT ?uri WHERE { ?uri a dbo:Writer { ?uri dbo:almaMater ?x } UNION { ?uri dbo:education ?x } { ?x dbo:city res:Istanbul } UNION { ?x dbp:city res:Istanbul } }" +"Give me all res:Australia.", "SELECT DISTINCT ?uri WHERE { ?uri a dbo:Band ; dbo:genre res:Metalcore { ?uri dbo:hometown res:Australia } UNION { ?uri dbo:hometown ?h . ?h dbo:country res:Australia } }" +"Which res:Countries_of_the_United_Kingdom adopted the res:Euro?", "SELECT DISTINCT ?uri WHERE { ?uri a dbo:Country { ?uri dbo:currency res:Euro } UNION { ?uri dbp:currencyCode "EUR"@en } }" +"Give me all types of eating res:Disorders_of_consciousness.", "SELECT DISTINCT ?uri WHERE { ?uri a yago:WikicatEatingDisorders }" +"Was res:Marc_Chagall a jew?", "ASK WHERE { res:Marc_Chagall dbp:ethnicity "Jewish"@en }" +"What was res:Brazil's res:RANK in the res:FIFA res:WBSC_World_Rankings?", "SELECT DISTINCT ?n WHERE { res:Brazil_national_football_team dbp:fifaMin ?n }" +"How many films did res:Leonardo_DiCaprio in?", "SELECT (COUNT( DISTINCT ?uri) AS ?c) WHERE { ?uri a dbo:Film ; dbo:starring res:Leonardo_DiCaprio }" +"Was res:Margaret_Thatcher a res:Chemist?", "ASK WHERE { res:Margaret_Thatcher dbo:profession res:Chemist }" +"Which U.S. states are in the same time zone as res:Utah?", "SELECT DISTINCT ?uri WHERE { res:Utah dbp:timezone ?x . ?uri a yago:WikicatStatesOfTheUnitedStates ; dbp:timezone ?x FILTER ( ?uri != res:Utah ) }" +"Give me all books written by res:Danielle_Steel.", "SELECT DISTINCT ?uri WHERE { ?uri a dbo:Book ; dbo:author res:Danielle_Steel }" +"Which country has the most official languages?", "SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Country . ?uri dbp:officialLanguages ?language . } ORDER BY DESC(COUNT( ?language)) OFFSET 0 LIMIT 1" +"What is the total amount of men and women serving in the res:FDNY_Racing?", "SELECT DISTINCT ?num WHERE { res:New_York_City_Fire_Department dbp:employees ?num }" +"Which actor played res:Chewbacca?", "SELECT DISTINCT ?uri WHERE { res:Chewbacca dbo:portrayer ?uri }" +"Give me all res:Libraries_in_Brighton_and_Hove established earlier than res:1400.", "SELECT DISTINCT ?uri WHERE { ?uri a dbo:Library ; dbp:established ?year FILTER ( ?year 1400 ) }" +"Which programming languages were influenced by res:Perl?", "SELECT DISTINCT ?uri WHERE { ?uri a dbo:ProgrammingLanguage { ?uri dbo:influencedBy res:Perl } UNION { res:Perl dbo:influenced ?uri } }" +"In which U.S. state is res:Denali located?", "SELECT DISTINCT ?uri WHERE { res:Mount_McKinley dbo:wikiPageRedirects ?x . ?x dbo:locatedInArea ?uri. ?uri rdf:type yago:WikicatStatesOfTheUnitedStates }" +"What airlines are part of the res:SkyTeam?", "SELECT DISTINCT ?uri WHERE { ?uri a dbo:Airline { ?uri dbo:alliance res:SkyTeam } UNION { ?uri dbo:Alliance res:SkyTeam } }" +"Which ships were called after res:Benjamin_Franklin?", "SELECT DISTINCT ?uri WHERE { ?uri dbp:shipNamesake res:Benjamin_Franklin }" +"Give me all res:Chicago_Politicians.", "SELECT DISTINCT ?uri WHERE { ?uri a dbo:Politician ; dbo:religion res:Methodism }" +"What other books have been written by the author of res:The_Fault_in_Our_Stars?", "SELECT ?books WHERE { ?books dbo:author res:John_Green_(author) }" +"What is the highest mountain?", "SELECT DISTINCT ?uri WHERE { ?uri a dbo:Mountain ; dbo:elevation ?elevation } ORDER BY DESC(?elevation) OFFSET 0 LIMIT 1" +"Which poet wrote the most books?", "SELECT DISTINCT ?uri WHERE { ?uri dbo:occupation res:Poet . ?x dbo:author ?uri . ?x rdf:type dbo:Book . } ORDER BY DESC(COUNT( ?x)) OFFSET 0 LIMIT 1" +"Which programming languages influenced Javascript?", "SELECT DISTINCT ?uri WHERE { ?uri a dbo:ProgrammingLanguage ; dbo:influenced res:JavaScript }" +"Which musician wrote the most books?", "SELECT DISTINCT ?uri WHERE { ?uri dbo:occupation res:Musician . ?x dbo:author ?uri . ?x rdf:type dbo:Book . } ORDER BY DESC(COUNT( ?x)) OFFSET 0 LIMIT 1" +"Which films starring res:Clint_Eastwood did he direct himself?", "SELECT DISTINCT ?uri WHERE { ?uri dbo:director res:Clint_Eastwood ; dbo:starring res:Clint_Eastwood }" +"Which res:Software_Publishing_Corporation has been developed by organizations founded in res:California?", "SELECT DISTINCT ?uri WHERE { ?uri a dbo:Software . ?company a dbo:Company . ?uri dbo:developer ?company . ?company dbo:foundationPlace res:California }" +"Which instruments does res:Cat_Stevens play?", "SELECT DISTINCT ?uri WHERE { res:Cat_Stevens dbo:instrument ?uri }" +"How many airlines are members of the res:Star_Alliance?", "SELECT (COUNT( DISTINCT ?uri) AS ?c) WHERE { ?uri a dbo:Airline ; dbo:alliance res:Star_Alliance }" +"Give me all actors called res:Baldwin.", "SELECT DISTINCT ?uri WHERE { ?uri foaf:surname 'Baldwin'@en . { ?uri dbo:occupation res:Actor . } UNION { ?uri rdf:type dbo:Actor . } }" +"Who wrote res:The_Hunger_Games?", "SELECT DISTINCT ?uri WHERE { res:The_Hunger_Games dbp:author ?uri }" +"For which label did res:Elvis_(1973_album) record his first album?", "SELECT DISTINCT ?uri WHERE { ?x rdf:type dbo:Album ; dbo:artist res:Elvis_Presley ; dbo:releaseDate ?y ; dbo:recordLabel ?uri } ORDER BY ASC(?y) OFFSET 0 LIMIT 1" +"Is res:Christian_Bale starring in res:Batman_Begins?", "ASK WHERE { res:Batman_Begins dbo:starring res:Christian_Bale }" +"Where is the residence of the prime minister of res:Spain?", "SELECT DISTINCT ?uri WHERE { res:Prime_Minister_of_Spain dbp:residence ?uri }" +"Which actor was casted in the most movies?", "SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Actor . ?f rdf:type dbo:Film . ?f dbo:starring ?uri . } ORDER BY DESC(COUNT( DISTINCT(?f))) OFFSET 0 LIMIT 1" +"Which res:Countries_of_the_United_Kingdom have more than two official languages?", "SELECT DISTINCT ?uri WHERE { ?uri a dbo:Country ; dbo:officialLanguage ?language } GROUP BY ?uri HAVING ( COUNT( ?language) 2 )" +"Which res:Countries_of_the_United_Kingdom have more than ten res:Caves_of_Aggtelek_Karst_and_Slovak_Karst?", "SELECT DISTINCT ?uri WHERE { ?uri a dbo:Country . ?cave a dbo:Cave { ?cave dbo:location ?uri } UNION { ?cave dbo:location ?loc . ?loc dbo:country ?uri } } GROUP BY ?uri HAVING ( COUNT( ?cave) 10 )" +"Show me all songs from res:Bruce_Springsteen released between res:1980 and res:1990.", "SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Song . ?uri dbo:artist res:Bruce_Springsteen . ?uri dbo:releaseDate ?date . FILTER (?date = '1980-01-01'^^xsd:date && ?date = '1990-12-31'^^xsd:date) }" +"Which television shows were created by res:John_Cleese?", "SELECT DISTINCT ?uri WHERE { ?uri a dbo:TelevisionShow ; dbo:creator res:John_Cleese }" +"When did res:Join res:Basque_language?", "SELECT DISTINCT ?date WHERE { res:Latvia dbp:accessioneudate ?date }" +"Which res:American_professional_soccer_players_abroad were born on res:Malta?", "SELECT DISTINCT ?uri WHERE { ?uri a dbo:SoccerPlayer ; dbo:birthPlace res:Malta }" +"How many res:Politicians_of_The_Wire graduated from res:Columbia_University?", "SELECT (COUNT( DISTINCT ?uri) AS ?c) WHERE { ?uri dbo:profession res:Politician ; dbo:almaMater res:Columbia_University }" +"Give me the birthdays of all actors of the res:Charmed.", "SELECT DISTINCT ?date WHERE { res:Charmed dbo:starring ?actor . ?actor dbo:birthDate ?date }" +"Which res:Complex_organizations are located in res:Belgium?", "SELECT (COUNT( DISTINCT ?uri) AS ?c) WHERE { ?uri a dbo:Organisation { ?uri dbo:industry res:Telecommunication } UNION { ?uri dbp:industry ?industry FILTER regex(?industry, "Telecommunications") } { ?uri dbo:location res:Belgium } UNION { ?uri dbp:locationCountry "Belgium"@en } }" +"Give me a list of all lakes in res:Denmark.", "SELECT DISTINCT ?uri WHERE { { ?uri a dbo:Lake ; dbo:country res:Denmark } UNION { ?uri a yago:LakesOfDenmark } }" +"How many children does res:Eddie_Murphy have?", "SELECT DISTINCT ?n WHERE { res:Eddie_Murphy dbp:children ?n }" +"Show me all res:English_Gothic_architecture.", "SELECT ?uri WHERE { ?uri a dbo:Building ; dbo:architecturalStyle res:English_Gothic_architecture ; dbo:location res:Kent }" +"Who is the manager of res:Real_Madrid_C.F.?", "SELECT DISTINCT ?uri WHERE { res:Real_Madrid_C.F. dbo:manager ?uri }" +"In which res:Countries_of_the_United_Kingdom can you pay using the West African res:CFA franc?", "SELECT DISTINCT ?uri WHERE { ?uri dbo:currency res:West_African_CFA_franc }" +"Which holidays are celebrated around the world?", "SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Holiday }" +"What is the longest river?", "SELECT DISTINCT ?uri WHERE { ?uri a dbo:River { ?uri dbo:length ?l } UNION { ?uri dbp:length ?l } } ORDER BY DESC(?l) OFFSET 0 LIMIT 1" +"Which organizations were founded in res:1930?", "SELECT DISTINCT ?uri WHERE { ?uri a dbo:Organisation { ?uri dbo:formationYear ?date } UNION { ?uri dbo:foundingYear ?date } FILTER regex(?date, "^1930") }" +"What is the birth name of res:Angela_Merkel?", "SELECT DISTINCT ?string WHERE { res:Angela_Merkel dbp:birthName ?string }" +"Who has res:Tom_Cruise been married to?", "SELECT DISTINCT ?uri WHERE { ?uri dbo:spouse res:Tom_Cruise }" +"Which weapons did res:Heckler_&_Koch develop?", "SELECT DISTINCT ?uri WHERE { ?uri a dbo:Weapon ; dbp:designer res:Heckler_&_Koch }" +"What is the smallest city by area in res:Germany?", "SELECT ?city WHERE { ?m skos:broader dbc:Cities_in_Germany . ?city dct:subject ?m ; dbo:areaTotal ?area } ORDER BY ?area LIMIT 1" +"What is the ruling party in res:Lisbon?", "SELECT DISTINCT ?uri WHERE { res:Lisbon dbp:leaderParty ?uri }" +"How heavy is res:Jupiter's res:Lightest_Supersymmetric_Particle?", "SELECT DISTINCT ?n WHERE { ?uri dbp:satelliteOf res:Jupiter ; dbo:mass ?n } ORDER BY ASC(?n) OFFSET 0 LIMIT 1" +"How many employees does res:IBM have?", "SELECT DISTINCT ?number WHERE { res:IBM dbo:numberOfEmployees ?number }" +"List all episodes of the first season of the HBO television series The res:The_Sopranos!", "SELECT DISTINCT ?uri WHERE { ?uri dbo:series res:The_Sopranos ; dbo:seasonNumber 1 }" +"What does res:Icrossing_Inc stand for?", "SELECT DISTINCT ?uri WHERE { ?uri dbo:abbreviation "ICRO" }" +"Does the new Battlestar Galactica series have more episodes than the old one?", "ASK WHERE { res:Battlestar_Galactica_%281978_TV_series%29 dbo:numberOfEpisodes ?x . res:Battlestar_Galactica_%282004_TV_series%29 dbo:numberOfEpisodes ?y FILTER ( ?y ?x ) }" +"Give me all films produced by res:Hal_Roach.", "SELECT DISTINCT ?uri WHERE { ?uri a dbo:Film ; dbo:producer res:Hal_Roach }" +"Who played res:Agent_Smith in Matrix?", "SELECT DISTINCT ?uri WHERE { res:Agent_Smith dbo:portrayer ?uri }" +"Which res:Greece?", "SELECT DISTINCT ?uri WHERE { ?uri a dbo:PoliticalParty ; dbo:country res:Greece ; dbo:ideology res:Pro-Europeanism }" +"Give me a list of all res:Geraldo_(bandleader) that play trumpet.", "SELECT DISTINCT ?uri WHERE { ?uri dbo:occupation res:Bandleader ; dbo:instrument res:Trumpet }" +"What is the second highest mountain on res:Earth?", "SELECT DISTINCT ?uri WHERE { ?uri a dbo:Mountain ; dbo:elevation ?elevation } ORDER BY DESC(?elevation) OFFSET 1 LIMIT 1" +"Is res:Largest_octopus also its capital?", "ASK WHERE { res:Egypt dbo:largestCity ?large ; dbo:capital ?capital FILTER ( ?large = ?capital ) }" +"Which rockets were launched from res:Baikonur_Cosmodrome_Site_109?", "SELECT DISTINCT ?uri WHERE { ?uri a dbo:Rocket ; dbo:launchSite res:Baikonur_Cosmodrome }" +"How many programming languages are there?", "SELECT (COUNT( DISTINCT ?uri) AS ?c) WHERE { ?uri a dbo:ProgrammingLanguage }" +"Which res:The_Chess_Players_(film) died in the same place they were born in?", "SELECT DISTINCT ?uri WHERE { ?uri a dbo:ChessPlayer ; dbo:birthPlace ?x ; dbo:deathPlace ?y FILTER ( ?x = ?y ) }" +"Who is the owner of res:Facebook?", "SELECT DISTINCT ?uri WHERE { res:Facebook dbo:foundedBy ?uri }" +"Give me all movies with res:Tom_Cruise.", "SELECT DISTINCT ?uri WHERE { ?uri a dbo:Film ; dbo:starring res:Tom_Cruise }" +"In which res:United_States state is res:Fort_Knox located?", "SELECT DISTINCT ?uri WHERE { res:Fort_Knox dbo:location ?uri . ?uri dbo:country res:United_States }" +"Give me all cities in res:New_Jersey with more than res:100000_(disambiguation).", "SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:City ; dbo:isPartOf res:New_Jersey ; dbo:populationTotal ?inhabitants FILTER ( ?inhabitants 100000 ) }" +"Which mountains are higher than the res:Nanga_Parbat?", "SELECT DISTINCT ?uri WHERE { res:Nanga_Parbat dbo:elevation ?elevation . ?uri a dbo:Mountain { ?uri dbo:elevation ?otherelevation } UNION { ?uri dbp:elevationM ?otherelevation } FILTER ( ?otherelevation ?elevation ) }" +"Give me all res:The_B-Sides.", "SELECT DISTINCT ?string WHERE { ?x dbo:musicalArtist res:Ramones ; dbo:bSide ?string }" +"What are the res:Traditional_Specialities_Guaranteed of the res:UNC res:Health_care?", "SELECT DISTINCT ?uri WHERE { res:UNC_Health_Care dbp:speciality ?uri }" +"When was res:Olof_Palme shot?", "SELECT DISTINCT ?date WHERE { res:Olof_Palme dbo:deathDate ?date }" +"List the seven kings of res:Rome.", "SELECT DISTINCT ?uri WHERE { ?uri dbp:title res:King_of_Rome }" +"Give me all people that were born in res:Vienna and died in res:Berlin.", "SELECT DISTINCT ?uri WHERE { ?uri dbo:birthPlace res:Vienna ; dbo:deathPlace res:Berlin }" +"Is res:Darth_Vader?", "ASK WHERE { res:Darth_Vader dbo:child res:Luke_Skywalker }" +"Show me all the breweries in Australia.", "SELECT DISTINCT ?uri WHERE { ?uri a dbo:Brewery { ?uri dbo:location res:Australia } UNION { ?uri dbo:location ?x . ?x dbo:country res:Australia } }" +"Give me all films produced by res:Steven_Spielberg with a budget of at least res:Boeing_80 million.", "SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Film . ?uri dbo:director res:Steven_Spielberg . ?uri dbo:budget ?b . FILTER( xsd:double(?b) = 8.0E7 ) }" +"Give me all soccer clubs in res:Spain.", "SELECT DISTINCT ?uri WHERE { ?uri a dbo:SoccerClub { ?uri dbo:ground res:Spain } UNION { ?uri dbp:ground ?ground FILTER regex(?ground, "Spain") } }" +"Who produced films starring Natalie Portman?", "SELECT DISTINCT ?uri WHERE { ?film a dbo:Film ; dbo:starring res:Natalie_Portman ; dbo:producer ?uri }" +"Give me all breeds of the res:Germany.", "SELECT DISTINCT ?uri WHERE { ?uri dbp:breed res:German_Shepherd }" +"Who is the heaviest player of the res:Chicago_Bulls?", "SELECT DISTINCT ?uri WHERE { ?uri a dbo:Person ; dbo:weight ?num { ?uri dbp:team res:Chicago_Bulls } UNION { ?uri dbp:draftTeam res:Chicago_Bulls } UNION { ?uri dbo:draftTeam res:Chicago_Bulls } } ORDER BY DESC(?num) OFFSET 0 LIMIT 1" +"Which languages are spoken in res:Estonia?", "SELECT DISTINCT ?uri WHERE { ?uri dbo:spokenIn res:Estonia }" +"What is the largest country in the world?", "SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Country ; dbo:areaTotal ?n } ORDER BY DESC(?n) OFFSET 0 LIMIT 1" +"What is the largest city in america?", "SELECT ?lcity WHERE { dbr:United_States dbo:largestCity ?lcity }" +"Who was the pope that founded the res:Vatican_Television_Center?", "SELECT ?uri WHERE { ?uri rdf:type dbo:Pope . res:Vatican_Television_Center dbo:foundedBy ?uri }" +"Who discovered res:Ceres_(dwarf_planet)?", "SELECT DISTINCT ?uri WHERE { res:Ceres_(dwarf_planet) dbo:discoverer ?uri }" +"Who is the king of the res:Netherlands?", "SELECT DISTINCT ?uri WHERE { res:Netherlands dbo:leader ?uri . ?uri rdf:type dbo:Royalty }" +"Is res:Cola a beverage?", "ASK WHERE { res:Cola rdf:type dbo:Beverage }" +"What is the alma mater of the chancellor of res:Angela_Merkel?", "SELECT ?Almamater WHERE { dbr:Angela_Merkel dbo:almaMater ?Almamater }" +"Who wrote the res:La_Terre?", "SELECT DISTINCT ?uri WHERE { res:The_Pillars_of_the_Earth dbo:author ?uri }" +"Which airports does res:Yeti_Airlines serve?", "SELECT DISTINCT ?uri WHERE { res:Yeti_Airlines dbo:targetAirport ?uri }" +"Where is the birthplace of res:Goethe_Prize?", "SELECT ?Goethe WHERE { dbr:Johann_Wolfgang_von_Goethe dbo:birthPlace ?Goethe }" +"Was the res:Cuba earlier than res:Bay_of_Pigs_Invasion?", "ASK WHERE { res:Cuban_Missile_Crisis dbo:date ?x . res:Bay_of_Pigs_Invasion dbo:date ?y FILTER ( ?x ?y ) }" +"Which ingredients do res:I need for res:Carrot_cake?", "SELECT DISTINCT ?uri WHERE { res:Carrot_cake dbo:ingredient ?uri }" +"Who created res:Wikipedia?", "SELECT DISTINCT ?uri WHERE { res:Wikipedia dbo:author ?uri }" +"What is the highest mountain in res:Frankenstein,_Saxony?", "SELECT ?m WHERE { ?m dbo:mountainRange dbr:Ore_Mountains ; dbo:elevation ?height } ORDER BY DESC(?height) LIMIT 1" +"Who is the res:Current_prime_minister_of_Canada of finance in res:Germany?", "SELECT ?leader WHERE { res:Federal_Ministry_of_Finance_(Germany) dbo:leader ?leader }" +"In which country is res:Mecca located?", "SELECT DISTINCT ?uri WHERE { res:Mecca dbo:country ?uri }" +"Who played res:Gus_Fring in res:Breaking_Bad?", "SELECT DISTINCT ?uri WHERE { res:Gus_Fring dbo:portrayer ?uri }" +"In which country does the res:Nile start?", "SELECT DISTINCT ?uri WHERE { res:Nile dbo:sourceCountry ?uri }" +"In which state res:Pennsylvania_State_University is located?", "SELECT ?s WHERE { dbr:Pennsylvania_State_University dbo:state ?s }" +"What is the biggest stadium in res:Spain?", "SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Stadium ; dbo:location res:Spain ; dbo:seatingCapacity ?n } ORDER BY DESC(?n) OFFSET 0 LIMIT 1" +"Who is the coach of res:Ankara's res:Greece_national_ice_hockey_team?", "SELECT DISTINCT ?uri WHERE { ?x dbo:city res:Ankara ; dbo:league res:Turkish_Ice_Hockey_First_League ; dbo:coach ?uri }" +"How large is the area of res:United_Kingdom?", "SELECT ?area WHERE { dbr:United_Kingdom dbo:areaTotal ?area }" +"Who created res:Batman?", "SELECT DISTINCT ?uri WHERE { res:Batman dbo:creator ?uri }" +"Was res:Sigmund_Freud?", "ASK WHERE { dbr:Sigmund_Freud dbo:spouse ?uri }" +"Who are the developers of res:DBpedia?", "SELECT DISTINCT ?uri WHERE { res:DBpedia dbo:developer ?uri }" +"Give me all movies directed by res:Francis_Ford_Coppola.", "SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Film ; dbo:director res:Francis_Ford_Coppola }" +"Are tree frogs a type of res:Amphibian?", "ASK WHERE { res:Hylidae dbo:class res:Amphibian }" +"What is the location of the res:Palace_of_Westminster?", "SELECT ?uri WHERE { res:Palace_of_Westminster dbo:location ?uri }" +"how much is the elevation of res:Düsseldorf_Airport ?", "SELECT ?ele WHERE { dbr:Düsseldorf_Airport dbo:elevation ?ele } LIMIT 1" +"How much is the population of mexico city ?", "SELECT ?Mexico_City WHERE { dbr:Mexico_City dbo:populationTotal ?Mexico_City }" +"when was the founding date of french fifth republic?", "SELECT ?ff WHERE { dbr:French_Fifth_Republic dbo:foundingDate ?ff }" +"Who was the first res:List_of_English_monarchs?", "SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Royalty ; rdf:type yago:WikicatEnglishMonarchs ; dbo:activeYearsStartYear ?date } ORDER BY ASC(?date) OFFSET 0 LIMIT 1" +"Who is the editor of res:Forbes?", "SELECT DISTINCT ?uri WHERE { res:Forbes dbo:editor ?uri }" +"Which awards did res:Douglas_Hofstadter win?", "SELECT DISTINCT ?uri WHERE { res:Douglas_Hofstadter dbo:award ?uri }" +"Who is the youngest res:Andrew_Gilding?", "SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:DartsPlayer ; dbo:birthDate ?date } ORDER BY DESC(?date) OFFSET 0 LIMIT 1" +"Is horse racing a sport?", "ASK WHERE { dbr:Horse_racing rdf:type dbo:Sport }" +"Which river does the res:Brooklyn_Bridge cross?", "SELECT DISTINCT ?uri WHERE { res:Brooklyn_Bridge dbo:crosses ?uri }" +"How many people live in res:Poland?", "SELECT DISTINCT ?uri WHERE { res:Poland dbo:populationTotal ?uri }" +"When was the last episode of the res:Tv_test_pattern res:Thomas_&_Friends_(series_18) aired?", "SELECT ?date WHERE { dbr:Friends dbo:completionDate ?date }" +"Is the wife of president res:Barack_Obama called Michelle?", "ASK WHERE { res:Barack_Obama dbo:spouse ?spouse . ?spouse rdfs:label ?name FILTER regex(?name, "Michelle") }" +"Who is 8th president of res:United_States?", "SELECT ?name WHERE { dbr:8th_President_of_the_United_States dbo:wikiPageRedirects ?link . ?link dbp:name ?name }" +"how much is the total population of european union?", "SELECT ?europop WHERE { dbr:European_Union dbo:populationTotal ?europop }" +"Give me all launch pads operated by res:NASA.", "SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:LaunchPad ; dbo:operator res:NASA }" +"Who developed the res:World_of_Warcraft?", "SELECT DISTINCT ?uri WHERE { res:World_of_Warcraft dbo:developer ?uri }" +"What is the birth name of res:Adele?", "SELECT ?bn WHERE { dbr:Adele dbo:birthName ?bn }" +"What is the population of res:Cairo?", "SELECT ?pop WHERE { dbr:Cairo dbo:populationTotal ?pop }" +"Is res:Frank_Herbert still alive?", "ASK WHERE { OPTIONAL { res:Frank_Herbert dbo:deathDate ?date } FILTER ( ! bound(?date) ) }" +"What is the last work of res:Dan_Brown?", "SELECT ?book WHERE { { ?book dbo:author dbr:Dan_Brown . ?book dbp:releaseDate ?date } UNION { ?book dbo:author dbr:Dan_Brown . ?book dbo:publicationDate ?date} } ORDER BY DESC(xsd:date(?date)) LIMIT 1" +"Where is res:Sungkyunkwan_University?", "SELECT DISTINCT ?country WHERE { dbr:Sungkyunkwan_University dbo:city ?city ; dbo:country ?country }" +"Who is the author of the interpretation of dreams?", "SELECT ?Author WHERE { dbr:The_Interpretation_of_Dreams dbo:author ?Author }" +"When was the death of res:William_Shakespeare?", "SELECT ?x WHERE { dbr:William_Shakespeare dbo:deathDate ?x } LIMIT 1" +"Who developed res:Slack?", "SELECT DISTINCT ?uri WHERE { ?uri dbo:product res:Slack_(software) }" +"Where is the origin of res:Carolina_Reaper?", "REFIX dbr: res: SELECT ?uri WHERE { dbr:Carolina_Reaper dbo:origin ?uri}" +"In which year was res:Rachel_Stevens born?", "SELECT DISTINCT ?uri WHERE { res:Rachel_Stevens dbo:birthYear ?uri }" +"How often did res:Jane_Fonda marry?", "SELECT (COUNT( DISTINCT ?uri) AS ?c) WHERE { res:Jane_Fonda dbo:spouse ?uri }" +"Was the wife of president res:Abraham_Lincoln called Mary?", "ASK WHERE { res:Abraham_Lincoln dbo:spouse ?spouse . ?spouse rdfs:label ?name FILTER regex(?name, "Mary") }" +"Which cities does the res:Weser flow through?", "SELECT DISTINCT ?uri WHERE { res:Weser dbo:city ?uri }" +"In which programming language is res:GIMP written?", "SELECT DISTINCT ?uri WHERE { res:GIMP dbo:programmingLanguage ?uri }" +"Which university did res:Angela_Merkel attend?", "SELECT DISTINCT ?university WHERE { res:Angela_Merkel dbo:almaMater ?university }" +"List all the musicals with music by res:Elton_John.", "SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Musical ; dbo:musicBy res:Elton_John }" +"How many res:Aldi are there?", "SELECT DISTINCT ?number WHERE { res:Aldi dbo:numberOfLocations ?number }" +"What is the longest river in the world?", "SELECT ?uri WHERE { ?uri rdf:type dbo:BodyOfWater ; dbo:length ?length } ORDER BY DESC(?length) LIMIT 1" +"When was res:John_Adams born?", "SELECT DISTINCT ?date WHERE { res:John_Adams dbo:birthDate ?date }" +"Which res:Companies_listed_on_the_New_York_Stock_Exchange_(J) produce hovercrafts?", "SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Company ; dbo:product res:Hovercraft }" +"Who was the wife of U.S. president res:Abraham_Lincoln?", "SELECT DISTINCT ?uri WHERE { res:Abraham_Lincoln dbo:spouse ?uri }" +"Which species does an elephant belong?", "SELECT ?species WHERE { dbr:Elephant dbp:species ?species }" +"How many people live in the capital of res:Australia?", "SELECT DISTINCT ?num WHERE { res:Australia dbo:capital ?x . ?x dbo:populationTotal ?num }" +"In which ancient empire could you pay with res:Cocoa_bean?", "SELECT DISTINCT ?uri WHERE { ?uri dbo:currency res:Cocoa_bean }" +"How many res:Theories_of_cloaking did res:Albert_Einstein come up with?", "SELECT (COUNT( ?uri) AS ?count) WHERE { dbr:Albert_Einstein dbo:knownFor ?uri }" +"Who composed the res:Soundtrack_for_a_Revolution for res:Cameron's res:Titanic_(1953_film)?", "SELECT DISTINCT ?uri WHERE { res:Titanic_(1997_film) dbo:musicComposer ?uri }" +"Give me the runtime of res:Toy_Story.", "SELECT DISTINCT ?runtime WHERE { res:Toy_Story dbo:runtime ?runtime }" +"With how many res:Low_Countries has borders?", "SELECT ?border WHERE { dbr:Geography_of_Iran dbp:borders ?border } LIMIT 8" +"Which res:Novak_Electronics were founded in res:Beijing?", "SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Company ; dbo:industry res:Electronics ; dbo:foundationPlace res:Beijing }" +"Who was the successor of John res:F. Kennedy?", "SELECT DISTINCT ?uri WHERE { res:John_F._Kennedy dbo:successor ?uri }" +"Who is the mayor of res:Paris?", "SELECT DISTINCT ?uri WHERE { res:Paris dbo:mayor ?uri }" +"Did res:Arnold_Schwarzenegger attend a university?", "ASK WHERE { res:Arnold_Schwarzenegger dbo:almaMater ?x . ?x rdf:type dbo:University }" +"Is res:James_Bond married?", "ASK WHERE { res:James_Bond dbo:spouse ?uri }" +"Does the res:Isar flow into a lake?", "ASK WHERE { ?x dbo:inflow res:Isar ; rdf:type dbo:Lake }" +"Which res:India has the most employees?", "SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Company ; dbo:location res:India ; dbo:numberOfEmployees ?n } ORDER BY DESC(?n) OFFSET 0 LIMIT 1" +"Who was res:John_F._Kennedy's vice president?", "SELECT DISTINCT ?uri WHERE { res:John_F._Kennedy dbo:vicePresident ?uri }" +"Which country does the creator of res:Miffy come from?", "SELECT DISTINCT ?uri WHERE { res:Miffy dbo:creator ?x . ?x dbo:nationality ?uri }" +"In what city is the res:Rosmalen_Grass_Court_Championships?", "SELECT DISTINCT ?uri WHERE { res:Heineken dbo:manufacturer ?x . ?x dbo:locationCity ?uri }" +"Is res:Barack_Obama a democrat?", "ASK WHERE { res:Barack_Obama dbo:party res:Democratic_Party_(United_States) }" +"List the children of res:Margaret_Thatcher.", "SELECT DISTINCT ?uri WHERE { res:Margaret_Thatcher dbo:child ?uri }" +"From which region is the res:Melon_de_Bourgogne?", "SELECT DISTINCT ?uri WHERE { res:Melon_de_Bourgogne dbo:wineRegion ?uri }" +"how big is the total area of res:North_Rhine-Westphalia?", "SELECT ?tarea WHERE { dbr:North_Rhine-Westphalia dbo:areaTotal ?tarea }" +"Which city has the most inhabitants?", "SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:City ; dbo:populationTotal ?pop } ORDER BY DESC(?pop) OFFSET 0 LIMIT 1" +"What is res:Donald_Trump's res:The_Main_Monkey_Business?", "SELECT ?owner WHERE { ?owner dbo:owner dbr:Donald_Trump }" +"When will start the final match of the football world cup 2018?", "SELECT ?Date WHERE { dbr:2018_FIFA_World_Cup dbp:date ?Date } ORDER BY DESC(?Date) LIMIT 1" +"Which films did res:Stanley_Kubrick?", "SELECT DISTINCT ?uri WHERE { ?uri dbo:director res:Stanley_Kubrick }" +"how much is the res:Population?", "SELECT ?pIraq WHERE { dbr:Iraq dbo:populationTotal ?pIraq }" +"How many inhabitants does the largest city in res:Canada have?", "SELECT DISTINCT ?num WHERE { res:Canada dbo:largestCity ?city . ?city dbo:populationTotal ?num }" +"Who is the mayor of the capital of res:France?", "SELECT DISTINCT ?uri WHERE { res:French_Polynesia dbo:capital ?x . ?x dbo:mayor ?uri }" +"Give me all actors starring in movies directed by res:William_Shatner.", "SELECT DISTINCT ?uri WHERE { ?x dbo:director res:William_Shatner ; dbo:starring ?uri }" +"How tall is res:Claudia_Schiffer?", "SELECT DISTINCT ?height WHERE { res:Claudia_Schiffer dbo:height ?height }" +"how much is the res:RANK of res:Germany?", "SELECT ?rank WHERE { dbr:Germany dbp:populationDensityRank ?rank }" +"What is the highest mountain in res:Italy?", "SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Mountain ; dbo:locatedInArea res:Italy ; dbo:elevation ?num } ORDER BY DESC(?num) OFFSET 0 LIMIT 1" +"List all games by res:Generic_Mapping_Tools.", "SELECT DISTINCT ?uri WHERE { ?uri dbo:publisher res:GMT_Games }" +"What is the official language of res:Suriname?", "SELECT DISTINCT ?uri WHERE { res:Suriname dbo:officialLanguage ?uri }" +"In which city did res:Nikos_Kazantzakis die?", "SELECT DISTINCT ?uri WHERE { res:Nikos_Kazantzakis dbo:deathPlace ?uri . ?uri rdf:type dbo:Town }" +"What is in a res:Chocolate_chip_cookie?", "SELECT DISTINCT ?uri WHERE { res:Chocolate_chip_cookie dbo:ingredient ?uri }" +"In which country is the res:Limerick_Lake?", "SELECT DISTINCT ?uri WHERE { res:Limerick_Lake dbo:country ?uri }" +"Give me all video games published by res:Mean_Hamster_Software.", "SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:VideoGame ; dbo:publisher res:Mean_Hamster_Software }" +"Give me all members of res:The_Prodigy.", "SELECT DISTINCT ?uri WHERE { res:The_Prodigy dbo:bandMember ?uri }" +"In which time zone is res:Rome?", "SELECT DISTINCT ?uri WHERE { res:Rome dbo:timeZone ?uri }" +"How high is the lighthouse in Colombo?", "SELECT DISTINCT ?num WHERE { res:Colombo_Lighthouse dbo:height ?num }" +"Who are the writers of the res:Pink_Floyd_–_The_Wall?", "SELECT ?writers WHERE { dbr:The_Wall dbp:writer ?writers }" +"Who is the mayor of res:Rotterdam?", "SELECT DISTINCT ?uri WHERE { res:Rotterdam dbo:leaderName ?uri }" +"What is the largest city in res:Australia?", "SELECT DISTINCT ?uri WHERE { res:Australia dbo:largestCity ?uri }" +"Who was married to res:Jacques_Chirac?", "SELECT DISTINCT ?uri WHERE { res:Jacques_Chirac dbo:spouse ?uri }" +"What form of government is found in res:South_Africa?", "SELECT ?uri WHERE { dbr:South_Africa dbo:governmentType ?uri }" +"How high is the res:Yokohama_Marine_Tower?", "SELECT DISTINCT ?num WHERE { res:Yokohama_Marine_Tower dbo:height ?num }" +"Which holidays are celebrated around the world? res:Testa", "SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Holiday }" +"Who is the tallest basketball player?", "SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:BasketballPlayer ; dbo:height ?num } ORDER BY DESC(?num) OFFSET 0 LIMIT 1" +"How many languages are spoken in res:Turkmenistan?", "SELECT (COUNT( DISTINCT ?x) AS ?c) WHERE { res:Turkmenistan dbo:language ?x }" +"Did res:Che_Guevara have children?", "ASK WHERE { res:Che_Guevara dbo:child ?uri }" +"Did res:Aki_Kaurismäki ever win the res:Grand_Prix_(Cannes_Film_Festival)?", "ASK WHERE { res:Aki_Kaurismäki dbo:award res:Grand_Prix_(Cannes_Film_Festival) }" +"To which party does the mayor of res:Paris belong?", "SELECT DISTINCT ?uri WHERE { res:Paris dbo:mayor ?x . ?x dbo:party ?uri }" +"Who is the res:Race_Driver:_Create_&_Race with the most races?", "SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:FormulaOneRacer ; dbo:races ?x } ORDER BY DESC(?x) OFFSET 0 LIMIT 1" +"What country is res:Sitecore from?", "SELECT DISTINCT ?uri WHERE { res:Sitecore dbo:foundationPlace ?uri }" +"Give me the birth place of res:Frank_Sinatra.", "SELECT DISTINCT ?place WHERE { res:Frank_Sinatra dbo:birthPlace ?place }" +"Is res:Christian_Bale starring in res:Velvet_Goldmine?", "ASK WHERE { res:Velvet_Goldmine dbo:starring res:Christian_Bale }" +"Who is the son of res:Cher?", "SELECT DISTINCT ?uri WHERE { ?uri dbo:parent res:Cher ; dbo:parent res:Sonny_Bono }" +"How many ethnic groups live in res:Slovenia?", "SELECT (COUNT( DISTINCT ?uri) AS ?c) WHERE { res:Slovenia dbo:ethnicGroup ?uri }" +"What is the capital of res:Cameroon?", "SELECT DISTINCT ?uri WHERE { res:Cameroon dbo:capital ?uri }" +"Was res:Natalie_Portman born in the res:United_States?", "ASK WHERE { res:Natalie_Portman dbo:birthPlace ?city . ?city dbo:country res:United_States }" +"How many pages does res:War_and_Peace have?", "SELECT DISTINCT ?n WHERE { res:War_and_Peace dbo:numberOfPages ?n }" +"Who is the oldest child of res:Meryl_Streep?", "SELECT DISTINCT ?uri WHERE { res:Meryl_Streep dbo:child ?uri . ?uri dbo:birthDate ?d } ORDER BY ASC(?d) OFFSET 0 LIMIT 1" +"Which television shows were created by res:Walt_Disney?", "SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:TelevisionShow ; dbo:creator res:Walt_Disney }" +"What does IYCM stand for?", "SELECT DISTINCT ?uri WHERE { ?uri dbo:abbreviation "IYCM" }" +"Which types of grapes grow in res:Oregon?", "SELECT DISTINCT ?uri WHERE { res:Oregon_wine dbo:growingGrape ?uri }" +"Was U.S. president res:Andrew_Jackson involved in a war?", "ASK WHERE { res:Andrew_Jackson dbo:battle ?battle }" +"When was the res:Titanic_(1953_film) completed?", "SELECT DISTINCT ?date WHERE { res:RMS_Titanic dbo:completionDate ?date }" +"Did res:Nikola_Tesla win a res:Nobel_Prize_in_Physics in physics?", "ASK WHERE { res:Nikola_Tesla dbo:award res:Nobel_Prize_in_Physics }" +"How many states are in res:Mexico?", "SELECT (COUNT( ?uri) AS ?count) WHERE { ?uri dbo:type dbr:States_of_Mexico }" +"Which scientist is known for the res:Manhattan_Project and the res:Nobel_Peace_Prize?", "SELECT DISTINCT ?uri WHERE { ?uri dbo:knownFor res:Manhattan_Project ; rdf:type dbo:Scientist ; dbo:knownFor res:Nobel_Peace_Prize }" +"How much did the res:The_Lego_Movie cost?", "SELECT DISTINCT ?n WHERE { res:The_Lego_Movie dbo:budget ?n }" +"Who composed the music for res:Harold_and_Maude?", "SELECT DISTINCT ?uri WHERE { res:Harold_and_Maude dbo:musicComposer ?uri }" +"List all episodes of the first season of the res:HBO res:The_Sopranos_(episode).", "SELECT DISTINCT ?uri WHERE { ?uri dbo:series res:The_Sopranos ; dbo:seasonNumber 1 }" +"Which city has the least inhabitants?", "SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:City ; dbo:populationTotal ?pop } ORDER BY ASC(?pop) OFFSET 0 LIMIT 1" +"Where is res:Syngman_Rhee buried?", "SELECT DISTINCT ?uri WHERE { res:Syngman_Rhee dbo:restingPlace ?uri }" +"Does res:Neymar play for res:Jorge_Meré?", "ASK WHERE { res:Neymar dbo:team res:Real_Madrid_C.F. }" +"Who wrote the book res:The_Pillars_of_the_Earth?", "SELECT DISTINCT ?uri WHERE { res:The_Pillars_of_the_Earth dbo:author ?uri }" +"Do res:Prince_Harry and res:Prince_William,_Duke_of_Cambridge have the same parents?", "ASK WHERE { res:Prince_William,_Duke_of_Cambridge dbo:parent ?x . res:Prince_Harry dbo:parent ?x }" +"Who was the doctoral supervisor of res:Albert_Einstein?", "SELECT DISTINCT ?uri WHERE { res:Albert_Einstein dbo:doctoralAdvisor ?uri }" +"Does res:Breaking_Bad have more episodes than res:Game_of_Thrones?", "ASK WHERE { res:Breaking_Bad dbo:numberOfEpisodes ?x . res:Game_of_Thrones dbo:numberOfEpisodes ?y FILTER ( ?y ?x ) }" +"Who was res:Vincent_van_Gogh inspired by?", "SELECT DISTINCT ?uri WHERE { ?uri dbo:influenced res:Vincent_van_Gogh }" +"Which building after the res:Burj_Khalifa has the most floors?", "SELECT DISTINCT ?uri WHERE { res:Burj_Khalifa dbo:floorCount ?burj . ?uri rdf:type dbo:Building ; dbo:floorCount ?proj FILTER ( ?proj ?burj ) } ORDER BY DESC(?proj) LIMIT 1" +"What was the final result of the res:The_War_of_the_Roses_(film)?", "SELECT DISTINCT ?result WHERE { ?uri dbo:isPartOfMilitaryConflict dbr:Wars_of_the_Roses ; dbo:result ?result ; dbo:date ?date } ORDER BY DESC(?date) OFFSET 0 LIMIT 1" +"How much did res:Pulp_Fiction cost?", "SELECT DISTINCT ?n WHERE { res:Pulp_Fiction dbo:budget ?n }" +"Is proinsulin a protein?", "ASK WHERE { res:Proinsulin rdf:type dbo:Protein }" +"Do res:Urdu_Wikipedia have a common root?", "ASK WHERE { dbr:Urdu dbo:languageFamily ?uri . dbr:Persian_language dbo:languageFamily ?uri }" +"Who is starring in res:Spain produced by res:Benicio_del_Toro?", "SELECT DISTINCT ?uri WHERE { ?film rdf:type dbo:Film ; dbo:country res:Spain ; dbo:producer res:Benicio_del_Toro ; dbo:starring ?uri . ?uri rdf:type dbo:Person }" +"Is Lake Baikal bigger than the Great Bear Lake?", "ASK WHERE { res:Lake_Baikal dbo:areaTotal ?a1 . res:Great_Bear_Lake dbo:areaTotal ?a2 FILTER ( ?a1 ?a2 ) }" +"Show me all books in res:Asimov_(disambiguation)'s res:Foundation_series.", "SELECT DISTINCT ?uri WHERE { ?uri dbo:series res:Foundation_series }" +"Where was res:Johann_Sebastian_Bach born?", "SELECT DISTINCT ?uri WHERE { res:Johann_Sebastian_Bach dbo:birthPlace ?uri }" +"Which city has the oldest running metro?", "SELECT ?loc WHERE { ?uri dbo:type dbr:Rapid_transit ; dbo:openingYear ?date ; dbo:location ?loc . ?loc rdf:type dbo:City } ORDER BY ASC(?date) LIMIT 1" +"Who designed the res:Brooklyn_Bridge?", "SELECT DISTINCT ?uri WHERE { res:Brooklyn_Bridge dbo:architect ?uri }" +"How many people live in res:Eurasia?", "SELECT DISTINCT ?population WHERE { res:Eurasia dbo:populationTotal ?population }" +"Who is the host of the res:BBC res:BBC_Wildlife_Specials?", "SELECT DISTINCT ?uri WHERE { res:BBC_Wildlife_Specials dbo:presenter ?uri }" +"What is the total population of res:Melbourne,_Florida?", "SELECT ?uri WHERE { res:Melbourne,_Florida dbo:populationTotal ?uri }" +"What country is res:Mount_Everest in?", "SELECT DISTINCT ?uri WHERE { res:Mount_Everest dbo:locatedInArea ?uri . ?uri rdf:type dbo:Country }" +"To which artistic movement did the painter of res:The_Three_Dancers belong?", "SELECT DISTINCT ?uri WHERE { res:The_Three_Dancers dbo:author ?person . ?person dbo:movement ?uri }" +"When did res:Operation_Overlord?", "SELECT DISTINCT ?d WHERE { res:Operation_Overlord dbo:date ?d }" +"What is the bridge with the longest span?", "SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Bridge ; dbo:mainspan ?s } ORDER BY DESC(?s) OFFSET 0 LIMIT 1" +"Is there a video game called res:Battle_Chess?", "ASK WHERE { ?uri rdf:type dbo:VideoGame ; rdfs:label "Battle Chess"@en }" +"Who was buried in the res:Great_Pyramid_of_Giza?", "SELECT ?uri WHERE { ?uri dbo:restingPlace dbr:Great_Pyramid_of_Giza }" +"Does the res:Ford_Motor_Company have a manufacturing plant in res:Malaysia?", "ASK WHERE { ?uri dbo:assembly dbr:Malaysia ; dbo:manufacturer dbr:Ford_Motor_Company }" +"Did res:Socrates influence res:Aristotle?", "ASK WHERE { res:Aristotle dbo:influencedBy res:Socrates }" +"How many children did res:Benjamin_Franklin have?", "SELECT (COUNT( DISTINCT ?uri) AS ?c) WHERE { res:Benjamin_Franklin dbo:child ?uri }" +"How tall is res:Michael_Jordan?", "SELECT DISTINCT ?num WHERE { res:Michael_Jordan dbo:height ?num }" +"In which res:United_Kingdom city are the headquarters of the res:Secret_Intelligence_Service?", "SELECT DISTINCT ?uri WHERE { res:Secret_Intelligence_Service dbo:headquarter ?uri . ?uri dbo:country res:United_Kingdom }" +"Who created res:Family_Guy?", "SELECT DISTINCT ?uri WHERE { res:Family_Guy dbo:creator ?uri }" +"In which city does the res:Chile_Route_68?", "SELECT DISTINCT ?uri WHERE { res:Chile_Route_68 dbo:routeEnd ?uri }" +"Give me the grandchildren of res:Elvis_Presley.", "SELECT DISTINCT ?uri WHERE { res:Elvis_Presley dbo:child ?child . ?child dbo:child ?uri }" +"When did the res:Ming_dynasty?", "SELECT DISTINCT ?date WHERE { res:Ming_dynasty dbo:dissolutionDate ?date }" +"In which military conflicts did res:T._E._Lawrence participate?", "SELECT DISTINCT ?uri WHERE { res:T._E._Lawrence dbo:battle ?uri }" +"What is the timezone in res:San_Pedro_de_Atacama?", "SELECT DISTINCT ?uri WHERE { res:San_Pedro_de_Atacama dbo:timeZone ?uri }" +"Give me all books by res:William_Goldman with more than res:300 pages.", "SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Book ; dbo:author res:William_Goldman ; dbo:numberOfPages ?x FILTER ( ?x 300 ) }" +"What did res:Bruce_Carver die from?", "SELECT DISTINCT ?uri WHERE { res:Bruce_Carver dbo:deathCause ?uri }" +"Which subsidiary of res:Lufthansa serves both res:Dortmund_Airport and res:Berlin_Tegel_Airport?", "SELECT DISTINCT ?uri WHERE { res:Lufthansa dbo:subsidiary ?uri . ?uri dbo:targetAirport res:Dortmund_Airport ; dbo:targetAirport res:Berlin_Tegel_Airport }" +"Does res:Abraham_Lincoln's res:This_Place_Is_Death have a res:Website?", "ASK WHERE { res:Abraham_Lincoln dbo:deathPlace ?p . ?p dbo:website ?w }" +"Did res:Elvis_Presley have children?", "ASK WHERE { res:Elvis_Presley dbo:child ?uri }" +"Is res:Michelle_Obama the wife of res:Barack_Obama?", "ASK WHERE { res:Barack_Obama dbo:spouse res:Michelle_Obama }" +"In which city does res:Sylvester_Stallone live?", "SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:City . res:Sylvester_Stallone dbo:residence ?uri }" +"Which books by res:Jack_Kerouac were published by res:Viking_Press?", "SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Book ; dbo:publisher res:Viking_Press ; dbo:author res:Jack_Kerouac }" +"Who wrote the res:Hotel_California?", "SELECT DISTINCT ?uri WHERE { res:Hotel_California dbo:writer ?uri }" +"What is the capital of res:Canada?", "SELECT DISTINCT ?uri WHERE { res:Canada dbo:capital ?uri }" +"Who is the mayor of res:Tel_Aviv?", "SELECT DISTINCT ?uri WHERE { res:Tel_Aviv dbo:leaderName ?uri }" +"What form of government does res:Russia have?", "SELECT DISTINCT ?uri WHERE { res:Russia dbo:governmentType ?uri }" +"Show me the book that res:Muhammad_Ali wrote.", "SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Book ; dbo:author res:Muhammad_Ali }" +"Who was the first to climb res:Mount_Everest?", "SELECT DISTINCT ?uri WHERE { res:Mount_Everest dbo:firstAscentPerson ?uri }" +"How many languages are spoken in res:Colombia?", "SELECT (COUNT( DISTINCT ?uri) AS ?c) WHERE { ?uri rdf:type dbo:Language . res:Colombia dbo:language ?uri }" +"What is the currency of the res:Czech_Republic?", "SELECT DISTINCT ?uri WHERE { res:Czech_Republic dbo:currency ?uri }" +"Where in res:France is res:Sparkling_wines produced?", "SELECT DISTINCT ?uri WHERE { ?uri dbo:wineProduced res:Sparkling_wine ; dbo:location res:France }" +"When did res:Boris_Becker end his active career?", "SELECT DISTINCT ?d WHERE { res:Boris_Becker dbo:activeYearsEndDate ?d }" +"Which movies starring res:Mickey_Rourke were directed by res:Guy_Ritchie?", "SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Film ; dbo:starring res:Mickey_Rourke ; dbo:director res:Guy_Ritchie }" +"In which films did res:Julia_Roberts as well as res:Richard_Gere play?", "SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Film ; dbo:starring res:Julia_Roberts ; dbo:starring res:Richard_Gere }" +"Show me res:Hemingway_House's res:Autobiography.", "SELECT DISTINCT ?uri WHERE { ?uri dbo:author res:Ernest_Hemingway ; dbo:literaryGenre res:Autobiography }" +"How tall is res:Amazon_Eve?", "SELECT DISTINCT ?height WHERE { res:Amazon_Eve dbo:height ?height }" +"What are the five boroughs of res:New_York?", "SELECT DISTINCT ?uri WHERE { ?uri dbo:governmentType res:Borough_(New_York_City) }" +"Give me all res:Canada.", "SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:RecordLabel ; dbo:genre res:Grunge ; dbo:country res:Canada }" +"In which country does the res:Ganges start?", "SELECT DISTINCT ?uri WHERE { res:Ganges dbo:sourceCountry ?uri }" +"Who is the founder of res:Penguin_Books?", "SELECT DISTINCT ?uri WHERE { res:Penguin_Books dbo:founder ?uri }" +"Who wrote the res:Game_of_Thrones theme?", "SELECT DISTINCT ?uri WHERE { res:Game_of_Thrones dbo:composer ?uri }" +"Who is the president of res:Eritrea?", "SELECT DISTINCT ?uri WHERE { res:Eritrea dbo:leader ?uri ; dbo:leaderTitle "President"@en }" +"In which city did res:John_F._Kennedy die?", "SELECT DISTINCT ?uri WHERE { res:John_F._Kennedy dbo:deathPlace ?uri . ?uri rdf:type dbo:City }" +"What is the highest mountain in res:Australia?", "SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Mountain ; dbo:locatedInArea res:Australia ; dbo:elevation ?elevation } ORDER BY DESC(?elevation) LIMIT 1" +"Who writes the res:Farmers_Creek_Township,_Jackson_County,_Iowa' res:Project_Almanac?", "SELECT ?uri WHERE { res:Farmers'_Almanac dbp:editor ?uri }" +"Give me the currency of res:China.", "SELECT DISTINCT ?uri WHERE { res:China dbo:currency ?uri }" +"Give me all res:Sweden.", "SELECT DISTINCT ?uri WHERE { ?uri dbo:field res:Oceanography ; dbo:birthPlace res:Sweden }" +"In which city are the res:Headquarters_of_the_United_Nations?", "SELECT DISTINCT ?uri WHERE { res:Headquarters_of_the_United_Nations dbo:location ?uri . ?uri rdf:type dbo:City }" +"Is res:Rita_Wilson the wife of res:Tom_Hanks?", "ASK WHERE { res:Tom_Hanks dbo:spouse res:Rita_Wilson }" +"In which res:Countries_of_the_United_Kingdom do people speak res:Japan?", "SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Country ; dbo:language res:Japanese_language }" +"Which of res:Tim_Burton's films had the highest budget?", "SELECT DISTINCT ?uri WHERE { ?uri dbo:director res:Tim_Burton ; dbo:budget ?b } ORDER BY ?b OFFSET 0 LIMIT 1" +"Which museum in res:New_York_City has the most visitors?", "SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Museum ; dbo:location res:New_York_City ; dbo:numberOfVisitors ?num } ORDER BY DESC(?num) OFFSET 0 LIMIT 1" +"What was the first res:Queen_(Queen_album)?", "SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Album ; dbo:artist res:Queen_(band) ; dbo:releaseDate ?d } ORDER BY ASC(?d) OFFSET 0 LIMIT 1" +"What was the first name of the res:Queens_of_the_Stone_Age?", "SELECT DISTINCT ?name WHERE { res:Queens_of_the_Stone_Age dbo:alias ?name }" +"What was the last movie with res:Alec_Guinness?", "SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Film ; dbo:starring res:Alec_Guinness ; dbo:releaseDate ?date } ORDER BY DESC(?date) LIMIT 1" +"Give me all actors starring in res:Last_Action_Hero.", "SELECT DISTINCT ?uri WHERE { res:Last_Action_Hero dbo:starring ?uri }" +"Who discovered res:Pluto?", "SELECT ?uri WHERE { dbr:Pluto dbo:discoverer ?uri }" diff --git a/bart/sparql.ipynb b/bart/sparql.ipynb index fdf76308f92b7cf74b56bf897d98f347d262c9ce..8dec5ed4f4613328affadfbbc913b71d97e60a93 100644 --- a/bart/sparql.ipynb +++ b/bart/sparql.ipynb @@ -89,8 +89,8 @@ }, "outputs": [], "source": [ - "model = BartForConditionalGeneration.from_pretrained(\"facebook/bart-base\")\n", - "tokenizer = BartTokenizer.from_pretrained(\"facebook/bart-base\")" + "model = BartForConditionalGeneration.from_pretrained(\"facebook/bart-large\")\n", + "tokenizer = BartTokenizer.from_pretrained(\"facebook/bart-large\")" ] }, { @@ -169,7 +169,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "a2bb5df92a0c4dedb14492747399bb1b", + "model_id": "f6c3167cbd1748d9a5e0cf68aff28cee", "version_major": 2, "version_minor": 0 }, @@ -183,7 +183,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "7e8912ba1dd840128d2a1bb7b094ee73", + "model_id": "8a35d595992347b08ff5d35fe9d433f1", "version_major": 2, "version_minor": 0 }, @@ -196,7 +196,7 @@ } ], "source": [ - "train_dataset = get_dataset(\"qald-10-train-tokenized.csv\")\n", + "train_dataset = get_dataset(\"qald-9-train-linked-tokenized.csv\")\n", "test_dataset = get_dataset(\"test.csv\")" ] }, @@ -250,23 +250,23 @@ "c:\\Users\\Albin\\AppData\\Local\\Programs\\Python\\Python39\\lib\\site-packages\\transformers\\optimization.py:306: FutureWarning: This implementation of AdamW is deprecated and will be removed in a future version. Use the PyTorch implementation torch.optim.AdamW instead, or set `no_deprecation_warning=True` to disable this warning\n", " warnings.warn(\n", "***** Running training *****\n", - " Num examples = 409\n", + " Num examples = 396\n", " Num Epochs = 1\n", " Instantaneous batch size per device = 1\n", " Total train batch size (w. parallel, distributed & accumulation) = 1\n", " Gradient Accumulation steps = 1\n", - " Total optimization steps = 409\n" + " Total optimization steps = 396\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "7ffdaf8e5e7143c7bab72cfde1ef42f0", + "model_id": "e03f50e416854300a42b0fcb52ff499e", "version_major": 2, "version_minor": 0 }, "text/plain": [ - " 0%| | 0/409 [00:00<?, ?it/s]" + " 0%| | 0/396 [00:00<?, ?it/s]" ] }, "metadata": {}, @@ -287,13 +287,13 @@ "name": "stdout", "output_type": "stream", "text": [ - "{'train_runtime': 58.619, 'train_samples_per_second': 6.977, 'train_steps_per_second': 6.977, 'train_loss': 1.5085987939811278, 'epoch': 1.0}\n" + "{'train_runtime': 142.7742, 'train_samples_per_second': 2.774, 'train_steps_per_second': 2.774, 'train_loss': 1.3083391285905934, 'epoch': 1.0}\n" ] }, { "data": { "text/plain": [ - "TrainOutput(global_step=409, training_loss=1.5085987939811278, metrics={'train_runtime': 58.619, 'train_samples_per_second': 6.977, 'train_steps_per_second': 6.977, 'train_loss': 1.5085987939811278, 'epoch': 1.0})" + "TrainOutput(global_step=396, training_loss=1.3083391285905934, metrics={'train_runtime': 142.7742, 'train_samples_per_second': 2.774, 'train_steps_per_second': 2.774, 'train_loss': 1.3083391285905934, 'epoch': 1.0})" ] }, "execution_count": 6, @@ -330,7 +330,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "c2aaa440f31942389c704b9867657ae5", + "model_id": "a58c238a939d438e9bab6642502df7a5", "version_major": 2, "version_minor": 0 }, @@ -362,9 +362,9 @@ "output_type": "stream", "text": [ "(1, 256, 50265)\n", - "<s> \"31??idQ?://wwwnt.org/entity/ httpP? http106Qhttp://wwwnt.org/prop/ http?ISTINCT?uri. {?:Q LakeC httpP w?://wwwnt.org/propal/Q//?uri.\"</s> w http????.?................................................................ w w w w w w...... w w w w.... w.................................................................................. w w.............\n", - "(1, 256, 768)\n", - " United information information information need research information research research research an Unitedoror doesnororororororororororororororororororororororororororororororororor doesn doesn doesn doesn doesn doesn doesn doesn doesn doesn doesn doesn doesn doesn doesn doesn doesn doesn doesn doesn doesn doesn doesn doesn doesn doesn doesn doesn doesn doesn doesn doesn doesn doesn doesn doesn doesn doesn doesn doesn doesn doesn doesn doesn doesn doesn doesn doesn doesn doesn doesn doesn doesn doesn doesn doesn doesn doesn doesn doesn doesn doesn doesn doesn doesn doesn doesnor doesnororororororororororororororororororororororor doesn doesn doesnor doesn doesn doesn doesn doesn doesn doesn doesn doesn doesn doesn doesn doesn doesn doesn doesn doesn doesn doesn doesn doesn doesn doesn doesn doesn doesn doesn doesn doesn doesn doesn doesn doesn doesn doesn doesn doesn doesn doesn doesn doesn doesn doesn doesn doesn doesn doesn doesn doesn doesn doesn doesn doesn doesn doesn doesn pay pay doesn doesn doesn doesn pay United pay pay pay pay pay pay United United Unitedororor pay payorororororororor pay payorororororor doesnor payor doesn doesn doesn doesn doesn doesn doesn doesn doesn doesn doesn doesn doesn doesn\n" + "<s><s>AT: D:Salt?://sp:com/Salt_ ORDERVI (p:timetime://dbp.org/time res } DISTINCT?uri WHERE {?:Salt LakeLake_City d?://dbp.org/location?_timeZone } }uri }\"?:?:( ( ((((((((((((((((((((((((((((((((((((stringstringstring(stringstringstringstringstringstringstring____(___(((___(((((((((__((((__((((____(((((((((((((((((((((((((((((((((((((_____(________________________________________________________\n", + "(1, 256, 1024)\n", + " says major major major major major major \" \" \" major News major major major News major major major major major major major News major major major major News major News News News major major major major major major major major News major major major major major major major major says News major says says major major News News News major News News News News News News News News News major News News News News major News News News News News major News major major major major major News major major major major major major major major major major major major] says says says says says says says major major major major major major major major News News News News News News News News major News major says says says major major major major major says major says major major major News News News News News major News News News News News News News News News News News News News News News News News News News major major major major major major major major says says says says says says major News News News News major major major major major major major major major major major major major major major major major major major major major major major major major major major major major says major major major major major major major major major major major major major News News major News News News major News major major News major major a major major says major major says says says says says says says says\n" ] } ], @@ -403,7 +403,7 @@ { "data": { "text/plain": [ - "['</s><s> \"SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://ww.wikidsata.com/entity/Q624. }\"</s>']" + "['</s><s> \"SELECT DISTINCT?uri WHERE { res:Barack_Obama dbo:leader?uri }\"</s>']" ] }, "execution_count": 10, @@ -426,12 +426,13 @@ "name": "stderr", "output_type": "stream", "text": [ - "100%|██████████| 150/150 [01:19<00:00, 1.88it/s]\n" + "100%|██████████| 150/150 [01:43<00:00, 1.44it/s]\n" ] } ], "source": [ "import json\n", + "import csv\n", "from tqdm import tqdm\n", "\n", "pred = {}\n", @@ -447,1200 +448,472 @@ }, { "cell_type": "code", - "execution_count": 34, + "execution_count": 16, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://http://wwd:org/entity/Q624. }\n", - "\"After whom is the Riemannian geometry named?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://wwd:org/entity/Q624> . }\"\n", + "SELECT DISTINCT?uri WHERE {?uri dbo:text?uri }\n", + "\"text\",\"SELECT DISTINCT?uri WHERE {?uri <http://dbpedia.org/ontology/text> ?uri }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P31 http://ww.wikidsata.com/entity/Q624.?uri }\n", - "\"Which animal participated in a military operation with the Australian Defence Force?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31> <http://www.wikidsata.com/entity/Q624> . ?uri }\"\n", + "SELECT DISTINCT?uri WHERE { res:Salt_Lake_City dbo:timeZone }\n", + "\"What is the dbo:timeZone of res:Salt_Lake_City?\",\"SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Salt_Lake_City> <http://dbpedia.org/ontology/timeZone> }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P31 http://ww.wikidsata.com/entity/Q624.?uri wdt:P106?uri }\n", - "\"among the characters in the witcher, who has two unmarried partners, Yennefer of Vengerberg and Triss Merigold?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31> <http://www.wikidsata.com/entity/Q624> . ?uri <http://www.wikidata.org/prop/direct/P106> ?uri }\"\n", + "SELECT DISTINCT?uri WHERE { res:Caesar_(game) dbo:billed?uri }\n", + "\"Who dbo:billed res:Caesar_(game)?\",\"SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Caesar_(game)> <http://dbpedia.org/ontology/billed> ?uri }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P31 http://ww.wikidsata.com/entity/Q6408. }\n", - "\"among the founders of tencent company, who has been member of national people’s congress?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31> <http://www.wikidsata.com/entity/Q6408> . }\"\n", + "SELECT DISTINCT?uri WHERE { res:Germany dbo:elevation?uri }\n", + "\"What is the dbo:elevation in res:Germany?\",\"SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Germany> <http://dbpedia.org/ontology/elevation> ?uri }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106?uri. }\n", - "\"among the other representative work of the author of hunter x hunter, which one is talking about middle school student?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE { res:Vietnam_War dbo:office?uri }\n", + "\"Which res:Organization_of_American_States were in dbo:office during the res:Vietnam_War?\",\"SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Vietnam_War> <http://dbpedia.org/ontology/office> ?uri }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://wwd:Q624. }\n", - "\"On which stock exchanges are Siemens AG shares traded?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://wwd:Q624.> }\"\n", + "SELECT DISTINCT?uri WHERE { res:Butch Otter dbo:governor?uri } ORDER BY DESC(?uri) OFFSET 0 LIMIT 1\n", + "\"Butch Otter is the dbo:governor of which U.S. state?\",\"SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Butch> Otter <http://dbpedia.org/ontology/governor> ?uri } ORDER BY DESC(?uri) OFFSET 0 LIMIT 1\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P31 http://ww.wikidsata.com/entity/Q624. }\n", - "\"Apart from the book series the witcher, name all of the author’s notable work.\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31> <http://www.wikidsata.com/entity/Q624> . }\"\n", + "SELECT DISTINCT?uri WHERE { res:Michael_Phelps dbo:award?uri }\n", + "\"How many dbo:goldMedalist did res:Michael_Phelps dbo:award at the res:2008_Summer_Olympics?\",\"SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Michael_Phelps> <http://dbpedia.org/ontology/award> ?uri }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106?uri. }\n", - "\"are brooke raboutou and colin duffy from same state of the usa?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> ?uri . }\"\n", + "SELECT DISTINCT?date WHERE { res:Rachel_Stevens dbo:birthPlace?date }\n", + "\"Which dbp:artist were dbo:birthPlace on the same date as res:Rachel_Stevens?\",\"SELECT DISTINCT?date WHERE { <http://dbpedia.org/resource/Rachel_Stevens> <http://dbpedia.org/ontology/birthPlace> ?date }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P31 http://ww.wikidsata.com/entity/Q624. }\n", - "\"What is the boiling point of water?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31> <http://www.wikidsata.com/entity/Q624> . }\"\n", + "SELECT DISTINCT?uri WHERE { res:Frank_Herbert dbo:profession?uri }\n", + "\"What is the dbo:profession of res:Frank_Herbert?\",\"SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Frank_Herbert> <http://dbpedia.org/ontology/profession> ?uri }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://ww.wikidsata.com/entity/Q624.?uri }\n", - "\"At which school was Yayoi Kusama educated at?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://www.wikidsata.com/entity/Q624> . ?uri }\"\n", + "ASK WHERE { res:Japan dbo:type res:Taiko }\n", + "\"Are res:Taiko some kind of res:Japan?\",\"ASK WHERE { <http://dbpedia.org/resource/Japan> <http://dbpedia.org/ontology/type> <http://dbpedia.org/resource/Taiko> }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://ww.wikidsata.com/entity/Q624. }\n", - "\"Which High School did Allen Ginsberg attend?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://www.wikidsata.com/entity/Q624> . }\"\n", + "SELECT DISTINCT?uri WHERE { res:FC_Porto dbo:numberOfSeat?uri }\n", + "\"How many dbp:seat does the home res:FC_Porto have?\",\"SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/FC_Porto> <http://dbpedia.org/ontology/numberOfSeat> ?uri }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P31 http://ww.wikidsata.com/entity/Q624. }\n", - "\"On which island is the Indonesian capital located?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31> <http://www.wikidsata.com/entity/Q624> . }\"\n", + "SELECT DISTINCT?uri WHERE { res:Frequent-Flyer_program dbo:airlineCode }\n", + "\"Which res:Frequent-flyer_program has the most dbo:icaoAirlineCode?\",\"SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Frequent-Flyer_program> <http://dbpedia.org/ontology/airlineCode> }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://ww.wikidsata.com/entity/Q624. }\n", - "\"can i play don't starve on play station 4?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://www.wikidsata.com/entity/Q624> . }\"\n", + "SELECT DISTINCT?uri WHERE { res:Europe dbo:government?uri }\n", + "\"Which res:Europe have a res:Constitutional_monarchy?\",\"SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Europe> <http://dbpedia.org/ontology/government> ?uri }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://http://bit.ly/P279?uri. }\n", - "\"How many General Secretaries of the CPSU were there before Leonid Brezhnev?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://bit> . ly/P279 ?uri. }\"\n", + "SELECT DISTINCT?uri WHERE { res:Countries_of_the_United_Kingdom dbo:country?uri }\n", + "\"Which res:Countries_of_the_United_Kingdom have dbo:place with more than two res:Caves_of_Aggtelek_Karst_and_Slovak_Karst?\",\"SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Countries_of_the_United_Kingdom> <http://dbpedia.org/ontology/country> ?uri }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://http://wwd:org/entity/Q624. }\n", - "\"How many different presidents of Russia have there been that took the position after 1990?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://wwd:org/entity/Q624> . }\"\n", + "SELECT DISTINCT?uri WHERE { res:United_States dbo:targetAirport?uri }\n", + "\"Which dbo:targetAirport are dbo:place in res:California,_Cincinnati res:United_States?\",\"SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/United_States> <http://dbpedia.org/ontology/targetAirport> ?uri }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P31 http://ww.wikidsata.com/entity/Q624.?uri }\n", - "\"Did adam ondra win a medal in the 2020 summer olympics?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31> <http://www.wikidsata.com/entity/Q624> . ?uri }\"\n", + "SELECT DISTINCT?uri WHERE { res:San_Francisco dbo:mascot?uri }\n", + "\"What are the dbo:mascot of res:San_Francisco?\",\"SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/San_Francisco> <http://dbpedia.org/ontology/mascot> ?uri }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://ww.wikidsata.com/entity/Q624. }\n", - "\"Did the Chicago Bulls win at least two seasons of the NBA championship?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://www.wikidsata.com/entity/Q624> . }\"\n", + "SELECT DISTINCT?uri WHERE { res:Name_at_birth dbo:birthPlace?uri }\n", + "\"What is res:Name_at_birth?\",\"SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Name_at_birth> <http://dbpedia.org/ontology/birthPlace> ?uri }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://http://wwd:org/entity/Q624.?uri }\n", - "\"Did Haruki Murakami receive the Nobel Prize in Literature?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://wwd:org/entity/Q624> . ?uri }\"\n", + "SELECT DISTINCT?uri WHERE { res:Berlin dbo:mayor?uri }\n", + "\"Who is the dbo:mayor of res:Berlin?\",\"SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Berlin> <http://dbpedia.org/ontology/mayor> ?uri }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://twitter.com/entity/Q624.?uri }\n", - "\"Did Kobe Bryant leave the Lakers when LeBron James joined that team?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://twitter.com/entity/Q624> . ?uri }\"\n", + "SELECT DISTINCT?uri WHERE { res:Countries_of_the_United_Kingdom dbo:country?uri }\n", + "\"Which res:Countries_of_the_United_Kingdom in the res:Europe?\",\"SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Countries_of_the_United_Kingdom> <http://dbpedia.org/ontology/country> ?uri }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://twitter.com/P279?uri. } ORDER BY DESC(?uri) LIMIT 1\n", - "\"Did Rawson Marshall Thurber, the director of Red Notice also direct Titanic?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://twitter.com/P279> ?uri. } ORDER BY DESC(?uri) LIMIT 1\"\n", + "SELECT DISTINCT?uri WHERE { res:Mean_Hamster_Software dbo:publisher?uri }\n", + "\"Which res:Software has been dbo:publisher by res:Mean_Hamster_Software?\",\"SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Mean_Hamster_Software> <http://dbpedia.org/ontology/publisher> ?uri }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://http://wwd:org/entity/Q624. }\n", - "\"Did Venice at any point belong to the Austrian Empire?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://wwd:org/entity/Q624> . }\"\n", + "SELECT DISTINCT?uri WHERE { res:Bill_Gates dbo:birthPlace?uri }\n", + "\"Which dbo:country was res:Bill_Gates dbo:birthPlace in?\",\"SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Bill_Gates> <http://dbpedia.org/ontology/birthPlace> ?uri }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri wdt:P106?uri. }\n", - "\"Were at least two of the founders of tencent educated at the same university?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE { res:Jacques_Cousteau dbo:child?uri }\n", + "\"How many dbo:child did res:Jacques_Cousteau have?\",\"SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Jacques_Cousteau> <http://dbpedia.org/ontology/child> ?uri }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P31 http://ww.wikidsata.com/entity/Q624. }\n", - "\"Do all of batman’s partner speak english as native language?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31> <http://www.wikidsata.com/entity/Q624> . }\"\n", + "SELECT DISTINCT?uri WHERE { res:Sweden dbo:occupation?uri }\n", + "\"Give me all dbo:occupation from res:Sweden.\",\"SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Sweden> <http://dbpedia.org/ontology/occupation> ?uri }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P31 http://empireprop/P106?uri. } ORDER BY DESC(?uri) LIMIT 1\n", - "\"How many spouses do head of states have on average?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31> <http://empireprop/P106> ?uri. } ORDER BY DESC(?uri) LIMIT 1\"\n", + "SELECT DISTINCT?uri WHERE { res:United_Kingdom dbo:spouse res:Germany }\n", + "\"Which dbo:leader of the res:United_Kingdom were dbo:spouse to a res:Germany?\",\"SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/United_Kingdom> <http://dbpedia.org/ontology/spouse> <http://dbpedia.org/resource/Germany> }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://http://wwd:org/entity/Q624. }\n", - "\"Was there at least one Formula 1 event on the AVUS?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://wwd:org/entity/Q624> . }\"\n", + "SELECT DISTINCT?uri WHERE { res:Argentina dbo:country?uri }\n", + "\"Give me all res:Argentina.\",\"SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Argentina> <http://dbpedia.org/ontology/country> ?uri }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://ww.wikidsata.com/entity/Q624.?uri }\n", - "\"Find all Turkish verbs ending with “uş” with their lemma.\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://www.wikidsata.com/entity/Q624> . ?uri }\"\n", + "SELECT DISTINCT?uri WHERE { res:Michael_Jackson dbo:deathDate }\n", + "\"How did res:Michael_Jackson dbo:deathDate?\",\"SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Michael_Jackson> <http://dbpedia.org/ontology/deathDate> }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P31 http://wwd:org/entity/Q624. }\n", - "\"From which country are the beagles originally from?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31> <http://wwd:org/entity/Q624> . }\"\n", + "SELECT DISTINCT?uri WHERE {?uri dbo:state?uri }\n", + "\"Which U.S. state has been dbp:known latest?\",\"SELECT DISTINCT?uri WHERE {?uri <http://dbpedia.org/ontology/state> ?uri }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106?uri }\n", - "\"From which country came the 2nd most winners of the Emmy Award ?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> ?uri }\"\n", + "SELECT DISTINCT?uri WHERE { res:Millipede dbo:date?uri }\n", + "\"Which dbo:classes does the res:Millipede dbo:date to?\",\"SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Millipede> <http://dbpedia.org/ontology/date> ?uri }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri wdt:P106?uri. }\n", - "\"Does the music style of Helloween belong to rock music?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE { res:Forbes dbo:headline?uri }\n", + "\"Give me the homepage of res:Forbes.\",\"SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Forbes> <http://dbpedia.org/ontology/headline> ?uri }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri wdt:P106?uri. }\n", - "\"Does the postal code 32423 belong to Minden?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE { res:Amanda_Palmer dbo:spouse?uri }\n", + "\"Who is the dbo:spouse of res:Amanda_Palmer?\",\"SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Amanda_Palmer> <http://dbpedia.org/ontology/spouse> ?uri }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P31 http://wwd:org/entity/Q624. }\n", - "\"has adam ondra been a winner of IFSC climbing world cup?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31> <http://wwd:org/entity/Q624> . }\"\n", + "SELECT DISTINCT?uri WHERE { res:The_Storm_on_the_Sea_of_Galilee dbo:artist?uri }\n", + "\"Who dbp:artist res:The_Storm_on_the_Sea_of_Galilee?\",\"SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/The_Storm_on_the_Sea_of_Galilee> <http://dbpedia.org/ontology/artist> ?uri }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106?uri. }\n", - "\"has life expectancy in iran grown in any year after 1999?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE { res:Karakoram dbo:elevation?uri }\n", + "\"What is the dbo:elevation of res:Karakoram?\",\"SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Karakoram> <http://dbpedia.org/ontology/elevation> ?uri }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://ww.wikidsata.com/entity/Q624. }\n", - "\"has population of Isfahan increased at any point after 2006?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://www.wikidsata.com/entity/Q624> . }\"\n", + "SELECT DISTINCT?date WHERE { res:Basque_language dbo:date?date }\n", + "\"When did res:Join res:Basque_language?\",\"SELECT DISTINCT?date WHERE { <http://dbpedia.org/resource/Basque_language> <http://dbpedia.org/ontology/date> ?date }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://wwd:org/entity/Q624. }\n", - "\"Did Joe Cocker play at the Woodstock festival?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://wwd:org/entity/Q624> . }\"\n", + "SELECT DISTINCT?uri WHERE { res:The_Big_Bang_Theory dbo:starring?uri }\n", + "\"Which dbo:background dbo:starring in res:The_Big_Bang_Theory?\",\"SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/The_Big_Bang_Theory> <http://dbpedia.org/ontology/starring> ?uri }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P31 http://wwd:org/entity/Q624. }\n", - "\"Did Udo Bölts participate in the Tour de France?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31> <http://wwd:org/entity/Q624> . }\"\n", + "SELECT DISTINCT?uri WHERE { res:Oscar dbo:award?uri }\n", + "\"Which res:Computer_scientist dbo:award an res:Oscar?\",\"SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Oscar> <http://dbpedia.org/ontology/award> ?uri }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://ww.wikidsata.com/entity/Q624. }\n", - "\"How many of Reinhold Messner's brothers still live?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://www.wikidsata.com/entity/Q624> . }\"\n", + "SELECT DISTINCT?uri WHERE { res:Harry_Potter dbo:author?uri }\n", + "\"Who dbp:author res:Harry_Potter?\",\"SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Harry_Potter> <http://dbpedia.org/ontology/author> ?uri }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://ww.wikidsata.com/entity/Q624. }\n", - "\"In which manner did Hemingway die?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://www.wikidsata.com/entity/Q624> . }\"\n", + "SELECT DISTINCT?uri WHERE { res:Nobel_Prize dbo:Literature dbp:award?uri }\n", + "\"Give me all dbo:writer that dbo:award the res:Nobel_Prize in res:Literature.\",\"SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Nobel_Prize> <http://dbpedia.org/ontology/Literature> <http://dbpedia.org/property/award> ?uri }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://http://wwd:org/entity/Q624. }\n", - "\"In which industry does the House of Medici own a business?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://wwd:org/entity/Q624> . }\"\n", + "SELECT DISTINCT?uri WHERE { res:Lovesick_(Priscilla_Renea_song) dbo:starring?uri }\n", + "\"Give me res:The_Actors dbo:starring in res:Lovesick_(Priscilla_Renea_song).\",\"SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Lovesick_(Priscilla_Renea_song)> <http://dbpedia.org/ontology/starring> ?uri }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://http://wwd:org/entity/Q624. }\n", - "\"How do people from Turkey call the official name of the united states of america?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://wwd:org/entity/Q624> . }\"\n", + "SELECT DISTINCT?uri WHERE { res:Baghdad dbo:address?uri }\n", + "\"What is the dbo:address of res:Baghdad?\",\"SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Baghdad> <http://dbpedia.org/ontology/address> ?uri }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106?uri }\n", - "\"How high is the Cologne Cathedral ?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> ?uri }\"\n", + "SELECT DISTINCT?uri WHERE { res:Montenegro dbo:birthPlace dbp:leader?uri } ORDER BY DESC(?uri) OFFSET 0 LIMIT 1\n", + "\"In which dbo:city was the dbo:president of res:Montenegro dbo:birthPlace?\",\"SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Montenegro> <http://dbpedia.org/ontology/birthPlace> <http://dbpedia.org/property/leader> ?uri } ORDER BY DESC(?uri) OFFSET 0 LIMIT 1\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://http://wwd:org/entity/Q624. }\n", - "\"How is the Harz called in Mandarin Chinese?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://wwd:org/entity/Q624> . }\"\n", + "SELECT DISTINCT?uri WHERE { res:Population_density dbo:state?uri }\n", + "\"Which U.S. state has the res:Population_density?\",\"SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Population_density> <http://dbpedia.org/ontology/state> ?uri }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106?uri. }\n", - "\"How many international airports are located within the city of Hamburg ?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> ?uri . }\"\n", + "SELECT Dbo:River WHERE { res:China dbo:river dbp:length?length }\n", + "\"What is the longest dbo:river in res:China?\",\"SELECT Dbo:River WHERE { <http://dbpedia.org/resource/China> <http://dbpedia.org/ontology/river> <http://dbpedia.org/property/length> ?length }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106?uri. }\n", - "\"On how many albums does Madonna perform?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE { res:Berlin dbo:area?uri }\n", + "\"What is the dbo:areaCode of res:Berlin?\",\"SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Berlin> <http://dbpedia.org/ontology/area> ?uri }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://ww.wikidsata.com/entity/Q624. }\n", - "\"On how many albums does Mariah Carey perform?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://www.wikidsata.com/entity/Q624> . }\"\n", + "SELECT DISTINCT?uri WHERE { res:Ivy_League dbo:effectiveRadiatedPower?uri }\n", + "\"How many res:Scientists_for_Global_Responsibility dbo:effectiveRadiatedPower from an res:Ivy_League?\",\"SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Ivy_League> <http://dbpedia.org/ontology/effectiveRadiatedPower> ?uri }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://ww.wikidsata.com/entity/Q624. }\n", - "\"How many studio albums has Lana Del Rey have?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://www.wikidsata.com/entity/Q624> . }\"\n", + "SELECT DISTINCT?uri WHERE { res:Australia dbo:birthPlace?uri }\n", + "\"Which dbo:specialist were dbo:birthPlace in res:Australia?\",\"SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Australia> <http://dbpedia.org/ontology/birthPlace> ?uri }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P31 http://ww.wikidsata.com/entity/Q624. }\n", - "\"How many ancient civilizations are there?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31> <http://www.wikidsata.com/entity/Q624> . }\"\n", + "SELECT DISTINCT?uri WHERE { res:Curaçao dbo:country?uri }\n", + "\"Give me all res:Curaçao.\",\"SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Curaçao> <http://dbpedia.org/ontology/country> ?uri }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://ww.wikidsata.com/entity/Q624. }\n", - "\"In how many years did Kobe Bryant receive an NBA All-Defensive Team award?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://www.wikidsata.com/entity/Q624> . }\"\n", + "SELECT DISTINCT?uri WHERE { res:Mars dbo:moon?uri }\n", + "\"How many res:7805_Moons does res:Mars have?\",\"SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Mars> <http://dbpedia.org/ontology/moon> ?uri }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://ww.wikidsata.com/entity/Q624. }\n", - "\"How many All-NBA Team awards have Shaquille O'Neal and Kobe Bryant received in the same year?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://www.wikidsata.com/entity/Q624> . }\"\n", + "SELECT DISTINCT?uri WHERE { res:Batman dbo:name?uri }\n", + "\"What is res:Batman's res:Real-name_system?\",\"SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Batman> <http://dbpedia.org/ontology/name> ?uri }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://ww.wikidsata.com/entity/Q624. }\n", - "\"How many literary works did Richard Bachman write?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://www.wikidsata.com/entity/Q624> . }\"\n", + "SELECT DISTINCT?uri WHERE { res:Elon_Musk dbo:author?uri }\n", + "\"What is res:Elon_Musk for?\",\"SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Elon_Musk> <http://dbpedia.org/ontology/author> ?uri }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://ww.wikidsata.com/entity/Q624. }\n", - "\"How many notable works does Sarah J. Maas have?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://www.wikidsata.com/entity/Q624> . }\"\n", + "SELECT DISTINCT?uri WHERE { res:WikiLeaks dbo:author?uri }\n", + "\"Who is the dbo:author of res:WikiLeaks?\",\"SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/WikiLeaks> <http://dbpedia.org/ontology/author> ?uri }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://http://wwd:org/entity/Q624. }\n", - "\"Did Bryan Evenson work for at least one university where he was educated at?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://wwd:org/entity/Q624> . }\"\n", + "SELECT DISTINCT?uri WHERE { res:Sean_Parnell dbo:governor?uri }\n", + "\"Sean Parnell was the dbo:governor of which U.S. state?\",\"SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Sean_Parnell> <http://dbpedia.org/ontology/governor> ?uri }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://wwd:org/entity/Q624. }\n", - "\"How many children (including apopted ones) does Jeff Bezos have with his ex-wife?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://wwd:org/entity/Q624> . }\"\n", + "SELECT DISTINCT?uri WHERE { res:Ford_Model_48 dbo:manufacturer?uri }\n", + "\"How many years was the res:Ford_Model_48 res:T dbo:manufacturer?\",\"SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Ford_Model_48> <http://dbpedia.org/ontology/manufacturer> ?uri }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://ww.wikidsata.com/entity/Q624. }\n", - "\"How many children had Paul McCartney together with his ex-wife Linda McCartney?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://www.wikidsata.com/entity/Q624> . }\"\n", + "SELECT DISTINCT?date WHERE { res:Carlo_Giuliani dbo:dischargeDate?date }\n", + "\"When was res:Carlo_Giuliani,_Boy dbo:discharge?\",\"SELECT DISTINCT?date WHERE { <http://dbpedia.org/resource/Carlo_Giuliani> <http://dbpedia.org/ontology/dischargeDate> ?date }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P31 http://ww.wikidsata.com/entity/Q624. }\n", - "\"How many Chinese zodiac animals are there in total?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31> <http://www.wikidsata.com/entity/Q624> . }\"\n", + "SELECT DISTINCT?uri WHERE {?uri rdf:type dbo:Animal }\n", + "\"Give me all dbo:animal that are dbo:quote.\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Animal> }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://wwd:org/entity/Q624. }\n", - "\"How many cities are part of the Pearl River Delta?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://wwd:org/entity/Q624> . }\"\n", + "SELECT DISTINCT?uri WHERE { res:USS_President_Lincoln_(1907) dbo:spouse?uri }\n", + "\"Who was the dbo:spouse of res:USS_President_Lincoln_(1907)?\",\"SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/USS_President_Lincoln_(1907)> <http://dbpedia.org/ontology/spouse> ?uri }\"\n", "\n", - "SELECT (COUNT( DISTINCT?uri) WHERE { http://www.wikidata.org/prop/direct/P106?uri. }\n", - "\"How many city-states are currently in the world?\",\"SELECT (COUNT( DISTINCT?uri) WHERE { <http://www.wikidata.org/prop/direct/P106> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE { res:Bertrand_Russell dbo:award?uri }\n", + "\"How many dbp:awards has res:Bertrand_Russell?\",\"SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Bertrand_Russell> <http://dbpedia.org/ontology/award> ?uri }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P31 http://ww.wikidsata.com/entity/Q624. }\n", - "\"How many businesses did Steve Jobs found?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31> <http://www.wikidsata.com/entity/Q624> . }\"\n", + "ASK WHERE { res:Pamela_Anderson dbo:Vegan?uri }\n", + "\"Is res:Pamela_Anderson a res:Vegan_Virgin_Valentine?\",\"ASK WHERE { <http://dbpedia.org/resource/Pamela_Anderson> <http://dbpedia.org/ontology/Vegan> ?uri }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106?uri }\n", - "\"How many countries have a democracy index higher than 7 and drive on the left side ?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> ?uri }\"\n", + "SELECT DISTINCT?uri WHERE {?uri rdf:type dbo:Area } ORDER BY DESC(?uri) OFFSET 0 LIMIT 1\n", + "\"Which dbo:area were sent into dbo:course around the dbo:year?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Area> } ORDER BY DESC( ?uri) OFFSET 0 LIMIT 1\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://http://bit.ly/P279?uri. }\n", - "\"How many countries have never been members of the UN?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://bit> . ly/P279 ?uri. }\"\n", + "SELECT DISTINCT?uri WHERE { res:Germany dbo:populationTotal?uri }\n", + "\"Which res:Germany have more than res:Population?\",\"SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Germany> <http://dbpedia.org/ontology/populationTotal> ?uri }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106?uri }\n", - "\"How many countries are on the continent of South America ?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> ?uri }\"\n", + "SELECT DISTINCT?uri WHERE { res:Robert_F._Kennedy dbo:child?uri }\n", + "\"Who is the dbo:child of res:Robert_F._Kennedy dbp:spouse to?\",\"SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Robert_F> . _Kennedy <http://dbpedia.org/ontology/child> ?uri }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri wdt:P170?uri. }\n", - "\"How many countries have mountains whose peaks are higher than 2000m above sea level?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P170> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE { res:Vrije_Universiteit_Amsterdam dbo:numberOfStudents?uri }\n", + "\"How many dbo:numberOfStudents does the res:Vrije_Universiteit_Amsterdam have?\",\"SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Vrije_Universiteit_Amsterdam> <http://dbpedia.org/ontology/numberOfStudents> ?uri }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://http://wwd:org/entity/Q624. }\n", - "\"How many fictional dragons are present in Game of Thrones?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://wwd:org/entity/Q624> . }\"\n", + "SELECT DISTINCT?uri WHERE { res:IBM dbo:revenue?uri }\n", + "\"What is the dbo:revenue of res:IBM?\",\"SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/IBM> <http://dbpedia.org/ontology/revenue> ?uri }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P31 http://wwd:org/entity/Q624. }\n", - "\"how many emmy awards has the tv series game of thrones won?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31> <http://wwd:org/entity/Q624> . }\"\n", + "SELECT DISTINCT?uri WHERE { res:M_(James_Bond) dbo:last?uri }\n", + "\"How many res:M_(James_Bond) do dbp:last?\",\"SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/M_(James_Bond)> <http://dbpedia.org/ontology/last> ?uri }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106?uri. }\n", - "\"How many films are derived from the original Ghost in the Shell Manga?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE { res:Bart_Simpson dbo:voice?uri }\n", + "\"Who does the dbo:voice of res:Bart_Simpson?\",\"SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Bart_Simpson> <http://dbpedia.org/ontology/voice> ?uri }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://ww.wikidsata.com/entity/Q624. }\n", - "\"How many French kings didn't die of natural causes?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://www.wikidsata.com/entity/Q624> . }\"\n", + "SELECT DISTINCT?uri WHERE { res:Tom_Hanks dbp:spouse?uri }\n", + "\"Who was res:Tom_Hanks dbp:spouse to?\",\"SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Tom_Hanks> <http://dbpedia.org/property/spouse> ?uri }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106?uri. }\n", - "\"How many given names has Queen Elizabeth II ?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE { res:Yenisei_River dbo:country?uri }\n", + "\"Through which res:Countries_of_the_United_Kingdom does the res:Yenisei_River?\",\"SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Yenisei_River> <http://dbpedia.org/ontology/country> ?uri }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://ww.wikidsata.com/entity/Q624. }\n", - "\"How many different female mayors did Hamburg have?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://www.wikidsata.com/entity/Q624> . }\"\n", + "SELECT DISTINCT?uri WHERE { res:Germany dbo:author?uri }\n", + "\"Give me all dbo:management that are dbo:author in res:Germany.\",\"SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Germany> <http://dbpedia.org/ontology/author> ?uri }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106?uri. }\n", - "\"how many head of the state does iran have?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> ?uri . }\"\n", + "SELECT DISTINCT?date WHERE { res:Michael_Jackson dbo:deathDate }\n", + "\"When did res:Michael_Jackson dbo:deathDate?\",\"SELECT DISTINCT?date WHERE { <http://dbpedia.org/resource/Michael_Jackson> <http://dbpedia.org/ontology/deathDate> }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106?uri. }\n", - "\"How many scholary articles have ImageNet as a subject?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE { res:Africa dbo:head?uri }\n", + "\"What is the dbo:head in res:Africa?\",\"SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Africa> <http://dbpedia.org/ontology/head> ?uri }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P31 http://ww.wikidsata.com/entity/Q624. }\n", - "\"How many inhabitants does the birthplace of Cristiano Ronaldo have?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31> <http://www.wikidsata.com/entity/Q624> . }\"\n", + "SELECT DISTINCT?uri WHERE {?uri rdf:type dbo:Book ; dbp:author?uri } ORDER BY DESC(?uri) OFFSET 0 LIMIT 1\n", + "\"Which dbo:author dbo:composer the most dbo:volume?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Book> ; <http://dbpedia.org/property/author> ?uri } ORDER BY DESC(?uri) OFFSET 0 LIMIT 1\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://http://wwd:org/entity/Q624. }\n", - "\"How many Japanese writers received the Nobel Prize?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://wwd:org/entity/Q624> . }\"\n", + "SELECT DISTINCT?uri WHERE {?uri dbo:gangster?uri }\n", + "\"Give me all gangsters from the dbo:time.\",\"SELECT DISTINCT?uri WHERE {?uri <http://dbpedia.org/ontology/gangster> ?uri }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P31 http://ww.wikidsata.com/entity/Q624. }\n", - "\"How many languages are widely used in India?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31> <http://www.wikidsata.com/entity/Q624> . }\"\n", + "SELECT DISTINCT?uri WHERE {?uri dbo:Spacecraft res:Mars }\n", + "\"Give me all res:Spacecraft that dbo:circulation to res:Mars.\",\"SELECT DISTINCT?uri WHERE {?uri <http://dbpedia.org/ontology/Spacecraft> <http://dbpedia.org/resource/Mars> }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://ww.wikidsata.com/entity/Q624. }\n", - "\"How many different colors can water take?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://www.wikidsata.com/entity/Q624> . }\"\n", + "SELECT DISTINCT?uri WHERE { res:Czech_Republic dbo:country?uri }\n", + "\"Show me all res:Czech_Republic.\",\"SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Czech_Republic> <http://dbpedia.org/ontology/country> ?uri }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://wwd:org/entity/Q624. }\n", - "\"How many locations has Georges Braque worked at (work location)?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://wwd:org/entity/Q624> . }\"\n", + "SELECT DISTINCT?uri WHERE {?uri rdf:type dbo:Astronaut }\n", + "\"Give me all taikonauts.\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Astronaut> }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P31 http://ww.wikidsata.com/entity/Q36. }\n", - "\"How many months does winter consist of in Germany?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31> <http://www.wikidsata.com/entity/Q36> . }\"\n", + "SELECT DISTINCT?uri WHERE { res:Volcano_National_Park dbo:country?uri }\n", + "\"Which res:Countries_of_the_United_Kingdom have more than ten res:Volcanoes_National_Park?\",\"SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Volcano_National_Park> <http://dbpedia.org/ontology/country> ?uri }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://http://wwd:org/entity/Q624. }\n", - "\"How many movies does the Scream franchise have?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://wwd:org/entity/Q624> . }\"\n", + "SELECT DISTINCT?uri WHERE { res:Tom_Cruise dbo:starring?uri }\n", + "\"Give me all dbo:film with res:Tom_Cruise.\",\"SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Tom_Cruise> <http://dbpedia.org/ontology/starring> ?uri }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P31 http://ww.wikidsata.com/entity/Q624. }\n", - "\"How many movies has James Cameron directed prior to the year 2010?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31> <http://www.wikidsata.com/entity/Q624> . }\"\n", + "SELECT DISTINCT?date WHERE { res:Count_Dracula dbo:deathDate }\n", + "\"When did res:Count_Dracula's dbp:producer dbo:deathDate?\",\"SELECT DISTINCT?date WHERE { <http://dbpedia.org/resource/Count_Dracula> <http://dbpedia.org/ontology/deathDate> }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106?uri }\n", - "\"How many movies were directed by Akira Kurosawa ?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> ?uri }\"\n", + "SELECT DISTINCT?uri WHERE { res:English_Wikipedia dbo:author?uri }\n", + "\"Who dbo:author res:English_Wikipedia?\",\"SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/English_Wikipedia> <http://dbpedia.org/ontology/author> ?uri }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://ww.wikidsata.com/entity/Q624. }\n", - "\"How many musical scales are there?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://www.wikidsata.com/entity/Q624> . }\"\n", + "SELECT DISTINCT?uri WHERE { res:List_of_German_female_artists dbo:artist?uri }\n", + "\"Give me all res:List_of_German_female_artists.\",\"SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/List_of_German_female_artists> <http://dbpedia.org/ontology/artist> ?uri }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P31 http://wwd:org/entity/Q624. }\n", - "\"How many public holidays does the state Bavaria have in a year?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31> <http://wwd:org/entity/Q624> . }\"\n", + "SELECT DISTINCT?uri WHERE { res:Aldi dbo:family?uri }\n", + "\"Who dbo:family res:Aldi?\",\"SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Aldi> <http://dbpedia.org/ontology/family> ?uri }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://http://wwd:org/entity/Q624. }\n", - "\"How many literary works besides The Picture of Dorian Gray did its author write?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://wwd:org/entity/Q624> . }\"\n", + "SELECT DISTINCT?uri WHERE { res:Danielle_Steel dbo:author?uri }\n", + "\"Which dbo:volume were dbo:writer by res:Danielle_Steel?\",\"SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Danielle_Steel> <http://dbpedia.org/ontology/author> ?uri }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://ww.wikidsata.com/entity/Q624. }\n", - "\"How many literary works did Mark Twain write in his lifetime?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://www.wikidsata.com/entity/Q624> . }\"\n", + "SELECT DISTINCT?uri WHERE { res:Socrates dbo:influenced?uri }\n", + "\"Who was dbo:influenced by res:Socrates?\",\"SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Socrates> <http://dbpedia.org/ontology/influenced> ?uri }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P31 http://ww.wikidsata.com/entity/Q624. }\n", - "\"How many occupations did Mark Twain have?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31> <http://www.wikidsata.com/entity/Q624> . }\"\n", + "SELECT DISTINCT?uri WHERE { res:Chiemsee dbo:capital?uri }\n", + "\"How dbo:capital is res:Chiemsee?\",\"SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Chiemsee> <http://dbpedia.org/ontology/capital> ?uri }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://ww.wikidsata.com/entity/Q624. }\n", - "\"how many of spiderman perfomers are citizens of the united kingdom?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://www.wikidsata.com/entity/Q624> . }\"\n", + "SELECT DISTINCT?uri WHERE { res:New_York_Stock_Exchange dbo:company?uri }\n", + "\"Which res:Companies_listed_on_the_New_York_Stock_Exchange_(J) dbo:service in the dbp:industry as well as in res:Medicine?\",\"SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/New_York_Stock_Exchange> <http://dbpedia.org/ontology/company> ?uri }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://http://wwd:org/entity/Q6408. }\n", - "\"how many official languages does the united states of america have?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://wwd:org/entity/Q6408> . }\"\n", + "SELECT DISTINCT?uri WHERE { res:Philippines dbo:authority?uri }\n", + "\"Which dbp:authority were dbo:birthPlace on the res:Philippines?\",\"SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Philippines> <http://dbpedia.org/ontology/authority> ?uri }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106?uri. }\n", - "\"How many official languages has Pakistan ?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE { res:Queen_Victoria dbo:parent?uri }\n", + "\"Who were the dbo:parent of res:Queen_Victoria?\",\"SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Queen_Victoria> <http://dbpedia.org/ontology/parent> ?uri }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://wwd:org/entity/Q624. }\n", - "\"How many Oscars did all the movies directed by Hayao Miyazaki combined win?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://wwd:org/entity/Q624> . }\"\n", + "SELECT DISTINCT?uri WHERE { res:United_States dbo:class?uri }\n", + "\"Are there any dbo:class in the res:United_States?\",\"SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/United_States> <http://dbpedia.org/ontology/class> ?uri }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P31 http://ww.wikidsata.com/entity/Q624. }\n", - "\"How many paintings of Pablo Picasso were ever in a museum?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31> <http://www.wikidsata.com/entity/Q624> . }\"\n", + "SELECT Dbo:Language WHERE { res:Estonia dbo:spokenIn }\n", + "\"Which dbo:language are dbo:spokenIn in res:Estonia?\",\"SELECT Dbo:Language WHERE { <http://dbpedia.org/resource/Estonia> <http://dbpedia.org/ontology/spokenIn> }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P31 http://wwd:org/entity/Q624. }\n", - "\"How many people can play \"Mensch ärgere dich nicht\" at most?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31> <http://wwd:org/entity/Q624> . }\"\n", + "SELECT DISTINCT?uri WHERE {?uri rdf:type dbo:Principal?uri } ORDER BY DESC(?uri) OFFSET 0 LIMIT 1\n", + "\"Give me a list of all dbo:principal endangered dbo:date.\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Principal> ?uri } ORDER BY DESC(?uri) OFFSET 0 LIMIT 1\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://ww.wikidsata.com/entity/Q624. }\n", - "\"How many people did Oscar Pistorius kill?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://www.wikidsata.com/entity/Q624> . }\"\n", + "SELECT DISTINCT?uri WHERE { res:Rhine dbo:country?uri }\n", + "\"Which res:Countries_of_the_United_Kingdom are dbo:related by the res:Rhine?\",\"SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Rhine> <http://dbpedia.org/ontology/country> ?uri }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106?uri. }\n", - "\"How many people died due to the Great Leap Forward according to the highest estimate?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE { res:Elizabeth_II dbo:parent?uri }\n", + "\"Who was the dbo:parent of res:Elizabeth_II?\",\"SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Elizabeth_II> <http://dbpedia.org/ontology/parent> ?uri }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://http://wwd:org/entity/Q624. }\n", - "\"How many people have won the Nobel Prize in Literature since its inception?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://wwd:org/entity/Q624> . }\"\n", + "SELECT DISTINCT?uri WHERE { res:Sand_casting dbo:casting?uri }\n", + "\"Give me all res:Sand_casting.\",\"SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Sand_casting> <http://dbpedia.org/ontology/casting> ?uri }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P31 http://empireprop/P106?uri. }\n", - "\"How many people live in cities in the vicinity of the Nile ?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31> <http://empireprop/P106> ?uri. }\"\n", + "SELECT DISTINCT?uri WHERE { res:Organization_of_American_States dbo:year?uri }\n", + "\"Give me all res:Organization_of_American_States of the last res:20 years.\",\"SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Organization_of_American_States> <http://dbpedia.org/ontology/year> ?uri }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://ww.wikidsata.com/entity/Q624. }\n", - "\"How many pitch classes are part of the chromatic scale?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://www.wikidsata.com/entity/Q624> . }\"\n", + "SELECT DISTINCT?uri WHERE { res:Netherlands dbo:location?uri }\n", + "\"When is the res:Worst-case_scenario going to be in dbo:picture in the res:Netherlands?\",\"SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Netherlands> <http://dbpedia.org/ontology/location> ?uri }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P31 http://ww.wikidsata.com/entity/Q624. }\n", - "\"how many plays has William Shakespeare written in the 16th century.\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31> <http://www.wikidsata.com/entity/Q624> . }\"\n", + "SELECT DISTINCT?uri WHERE { res:Lance_Bass dbo:spouse }\n", + "\"Whom did res:Lance_Bass dbo:spouse?\",\"SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Lance_Bass> <http://dbpedia.org/ontology/spouse> }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://ww.wikidsata.com/entity/Q624. }\n", - "\"How many poems did Allen Ginsberg published?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://www.wikidsata.com/entity/Q624> . }\"\n", + "SELECT DISTINCT?uri WHERE { res:Glasgow_Airport dbo:subsidiary?uri }\n", + "\"Which dbo:subsidiary of TUI Travel dbo:order both res:Glasgow_Airport and res:Dublin_Airport?\",\"SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Glasgow_Airport> <http://dbpedia.org/ontology/subsidiary> ?uri }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106?uri }\n", - "\"How many political parties have ever had seats in the German Bundestag ?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> ?uri }\"\n", + "SELECT Dbo:Language WHERE { res:Pakistan dbo:spokenIn }\n", + "\"What dbo:language are dbo:spokenIn in res:Pakistan?\",\"SELECT Dbo:Language WHERE { <http://dbpedia.org/resource/Pakistan> <http://dbpedia.org/ontology/spokenIn> }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://ww.wikidsata.com/entity/Q624. }\n", - "\"How many positions did Kobe Bryant play in his team?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://www.wikidsata.com/entity/Q624> . }\"\n", + "SELECT DISTINCT?uri WHERE { res:Bill_Clinton dbo:spouse res:Dbo:child?uri }\n", + "\"Who is the dbo:child of res:Bill_Clinton dbo:spouse to?\",\"SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Bill_Clinton> <http://dbpedia.org/ontology/spouse> <http://dbpedia.org/resource/Dbo:child> ?uri }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106?uri }\n", - "\"How many prizes are there established by Alfred Nobel ?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> ?uri }\"\n", + "SELECT DISTINCT?uri WHERE { res:Apollo_11 dbo:mission?uri }\n", + "\"Who was on the res:Apollo_11?\",\"SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Apollo_11> <http://dbpedia.org/ontology/mission> ?uri }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://http://bit.ly/P279?uri. } ORDER BY DESC(?uri) LIMIT 1\n", - "\"Did SpaceX ever operate a space mission that was a failed launch?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://bit> . ly/P279 ?uri. } ORDER BY DESC(?uri) LIMIT 1\"\n", + "SELECT DISTINCT?uri WHERE { res:Indigo dbo:wavelength?uri }\n", + "\"What is the dbo:wavelength of res:Indigo?\",\"SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Indigo> <http://dbpedia.org/ontology/wavelength> ?uri }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106?uri. }\n", - "\"How many people nominated for the nobel prize in chemistry didn't ever win it?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE { res:The_B-Sides dbo:team?uri }\n", + "\"Give me all res:The_B-Sides.\",\"SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/The_B-Sides> <http://dbpedia.org/ontology/team> ?uri }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P31 http://twitter.com/entity/Q624.?uri }\n", - "\"How many seasons does Pose have?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31> <http://twitter.com/entity/Q624> . ?uri }\"\n", + "SELECT DISTINCT?uri WHERE { res:Scarface dbo:alias?uri }\n", + "\"Who was dbo:alias res:Scarface?\",\"SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Scarface> <http://dbpedia.org/ontology/alias> ?uri }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106?uri }\n", - "\"How many seats are there in the current German Bundestag ?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> ?uri }\"\n", + "SELECT DISTINCT?uri WHERE { res:North_Sea dbo:operator?uri }\n", + "\"Which dbo:operator dbp:float into the res:North_Sea?\",\"SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/North_Sea> <http://dbpedia.org/ontology/operator> ?uri }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106?uri }\n", - "\"How many siblings had the author of “Little Women” ?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> ?uri }\"\n", + "SELECT DISTINCT?uri WHERE { res:Fort_Knox dbp:location dbo:location?uri }\n", + "\"Where is res:Fort_Knox dbp:location?\",\"SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Fort_Knox> <http://dbpedia.org/property/location> <http://dbpedia.org/ontology/location> ?uri }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 ?uri. }\n", - "\"How many ski resorts were there ever in France?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> ?uri. }\"\n", + "SELECT DISTINCT?uri WHERE { res:United_Kingdom dbp:deathPlace dbo:birthPlace?uri }\n", + "\"Which res:Daughters_of_the_Dust of res:United_Kingdom dbp:deathPlace at the same dbo:place they were dbo:birthPlace at?\",\"SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/United_Kingdom> <http://dbpedia.org/property/deathPlace> <http://dbpedia.org/ontology/birthPlace> ?uri }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106?uri. }\n", - "\"How many songs were composed by Jay Chou but not released in his own albums?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE { res:China dbo:leader?uri }\n", + "\"How many dbo:leader did res:China have?\",\"SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/China> <http://dbpedia.org/ontology/leader> ?uri }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://ww.wikidsata.com/entity/Q6408. }\n", - "\"How many works that are based on Spider-Man has Venom been a part of?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://www.wikidsata.com/entity/Q6408> . }\"\n", + "SELECT DISTINCT?uri WHERE { res:Teenage_Mutant_Ninja_Turtles dbo:athletics?uri }\n", + "\"What are the dbo:athletics of the res:Teenage_Mutant_Ninja_Turtles?\",\"SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Teenage_Mutant_Ninja_Turtles> <http://dbpedia.org/ontology/athletics> ?uri }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://ww.wikidsata.com/entity/Q624. }\n", - "\"How many spouses had Rama V (one of the former Kings of Siam)?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://www.wikidsata.com/entity/Q624> . }\"\n", + "SELECT DISTINCT?uri WHERE { res:Piccadilly dbo:routeStart?uri }\n", + "\"Where does res:Piccadilly dbo:routeStart?\",\"SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Piccadilly> <http://dbpedia.org/ontology/routeStart> ?uri }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri wdt:P106?uri. }\n", - "\"Does Switzerland have a place north of the Point (8.57 47.8)?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE { res:University_of_Alabama dbo:spouse?uri }\n", + "\"What is the dbp:name of the dbo:university where res:University_of_Alabama's dbp:spouse dbo:office?\",\"SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/University_of_Alabama> <http://dbpedia.org/ontology/spouse> ?uri }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://wwd:org/entity/Q624. }\n", - "\"how many times has Giorgio Moroder won golden globe award?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://wwd:org/entity/Q624> . }\"\n", + "SELECT DISTINCT?uri WHERE { res:Paraguay dbo:state res:Independence }\n", + "\"When did res:Paraguay dbo:state its res:Independence?\",\"SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Paraguay> <http://dbpedia.org/ontology/state> <http://dbpedia.org/resource/Independence> }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P31 http://ww.wikidsata.com/entity/Q624. }\n", - "\"How many Olympic Games has Kobe Bryant taken part in?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31> <http://www.wikidsata.com/entity/Q624> . }\"\n", + "SELECT DISTINCT?uri WHERE { res:National_Basketball_Association dbo:activePlayer?uri }\n", + "\"How dbo:thumbnail is the dbo:thumbnailest active res:National_Basketball_Association player?\",\"SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/National_Basketball_Association> <http://dbpedia.org/ontology/activePlayer> ?uri }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P31 http://ww.wikidsata.com/entity/Q624. }\n", - "\"How many times was Oskar Lafontaine elected Member of the Landtag of Saarland?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31> <http://www.wikidsata.com/entity/Q624> . }\"\n", + "SELECT DISTINCT?uri WHERE { res:Abraham_Lincoln dbo:deathDate }\n", + "\"Where did res:Abraham_Lincoln dbo:deathDate?\",\"SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Abraham_Lincoln> <http://dbpedia.org/ontology/deathDate> }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://ww.wikidsata.com/entity/Q624. }\n", - "\"How many wars did the Empire of Japan participate in?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://www.wikidsata.com/entity/Q624> . }\"\n", + "SELECT DISTINCT?date WHERE { res:Jack_Wolfskin dbo:foundingYear }\n", + "\"When was res:Jack_Wolfskin dbo:foundingYear?\",\"SELECT DISTINCT?date WHERE { <http://dbpedia.org/resource/Jack_Wolfskin> <http://dbpedia.org/ontology/foundingYear> }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106?uri. }\n", - "\"How many women were amongst the founding members of “The Bridge” (“Die Brücke”)?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE { res:Air_China dbo:headquarter?uri }\n", + "\"In which dbo:city is the dbo:headquarter of res:Air_China?\",\"SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Air_China> <http://dbpedia.org/ontology/headquarter> ?uri }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://http://wwd:org/entity/Q624. }\n", - "\"Who has a higher observed lifespan out of the common bottlenose dolphin and the brown bear?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://wwd:org/entity/Q624> . }\"\n", + "SELECT DISTINCT?uri WHERE { res:Pilsner_Urquell dbo:foundedYear?uri }\n", + "\"What is the dbo:foundingYear year of the dbo:manufacturer that dbo:manufacturer res:Pilsner_Urquell?\",\"SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Pilsner_Urquell> <http://dbpedia.org/ontology/foundedYear> ?uri }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P31 http://ww.wikidsata.com/entity/Q624. }\n", - "\"What is TNFAIP1 ?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31> <http://www.wikidsata.com/entity/Q624> . }\"\n", + "SELECT DISTINCT?date WHERE { res:Boston_Tea_Party dbo:place?date }\n", + "\"When did the res:Boston_Tea_Party take dbo:place?\",\"SELECT DISTINCT?date WHERE { <http://dbpedia.org/resource/Boston_Tea_Party> <http://dbpedia.org/ontology/place> ?date }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://ww.wikidsata.com/entity/Q624. }\n", - "\"How often did Naomi Novik win the nebula award?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://www.wikidsata.com/entity/Q624> . }\"\n", + "SELECT DISTINCT?uri WHERE {?uri dbo:animal dbp:endangered?uri } ORDER BY DESC(?uri) OFFSET 0 LIMIT 1\n", + "\"Which dbo:animal are dbo:principal endangered?\",\"SELECT DISTINCT?uri WHERE {?uri <http://dbpedia.org/ontology/animal> <http://dbpedia.org/property/endangered> ?uri } ORDER BY DESC(?uri) OFFSET 0 LIMIT 1\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://ww.wikidsata.com/entity/Q624. }\n", - "\"How often did the Mongols try to invade Japan?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://www.wikidsata.com/entity/Q624> . }\"\n", + "SELECT DISTINCT?uri WHERE { res:Germany dbo:spouse?uri }\n", + "\"Which res:Politicians_of_The_Wire were dbo:spouse to a res:Germany?\",\"SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Germany> <http://dbpedia.org/ontology/spouse> ?uri }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://ww.wikidsata.com/entity/Q624. }\n", - "\"How often was Naomi Novik nominated for a Hugo Award?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://www.wikidsata.com/entity/Q624> . }\"\n", + "SELECT DISTINCT?height WHERE {?height dbo:dbo:height }\n", + "\"How big is the dbo:ground's dbo:diameter?\",\"SELECT DISTINCT?height WHERE {?height <http://dbpedia.org/ontology/dbo:height> }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P31 http://ww.wikidsata.com/entity/Q624.?uri }\n", - "\"How many years did the second oldest dog in the world live?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31> <http://www.wikidsata.com/entity/Q624> . ?uri }\"\n", + "ASK WHERE { res:Barack_Obama dbo:spouse res:Michelle_Obama }\n", + "\"Is the dbp:spouse of President res:Barack_Obama dbo:guest Michelle?\",\"ASK WHERE { <http://dbpedia.org/resource/Barack_Obama> <http://dbpedia.org/ontology/spouse> <http://dbpedia.org/resource/Michelle_Obama> }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://http://bit.ly/P279?uri. } ORDER BY DESC(?uri) LIMIT 1\n", - "\"if someone died in 1969, is there any chance they heard of queen’s music?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://bit> . ly/P279 ?uri. } ORDER BY DESC(?uri) LIMIT 1\"\n", + "SELECT DISTINCT?uri WHERE { res:MN dbo:state?uri }\n", + "\"Which U.S. state has the dbo:abbreviation res:MN?\",\"SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/MN> <http://dbpedia.org/ontology/state> ?uri }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://ww.wikidsata.com/entity/Q624. }\n", - "\"Is Dr. Pepper named after its inventor?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://www.wikidsata.com/entity/Q624> . }\"\n", + "SELECT DISTINCT?date WHERE { res:Muhammad dbo:deathDate dbp:date?date }\n", + "\"When did res:Muhammad dbo:deathDate?\",\"SELECT DISTINCT?date WHERE { <http://dbpedia.org/resource/Muhammad> <http://dbpedia.org/ontology/deathDate> <http://dbpedia.org/property/date> ?date }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://ww.wikidsata.com/entity/Q624. }\n", - "\"In how many movies did Carey Mulligan and Ryan Gosling star together?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://www.wikidsata.com/entity/Q624> . }\"\n", + "SELECT DISTINCT?uri WHERE { res:Moon dbo:musicComposer dbp:background?uri } ORDER BY DESC(?uri) OFFSET 0 LIMIT 1\n", + "\"What is the dbp:background of the res:Moon dbo:musicComposer of?\",\"SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Moon> <http://dbpedia.org/ontology/musicComposer> <http://dbpedia.org/property/background> ?uri } ORDER BY DESC(?uri) OFFSET 0 LIMIT 1\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106?uri. }\n", - "\"in the country where ghost in the shell is born, who is the current head of the state?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE { res:Texas dbo:governor?uri }\n", + "\"Who is the dbo:governor of res:Texas?\",\"SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Texas> <http://dbpedia.org/ontology/governor> ?uri }\"\n", "\n", - "SELECT (COUNT( DISTINCT?uri) WHERE { http://www.wikidata.org/prop/direct/P31/http://www.*wdt:P106?uri. }\n", - "\"How many rivers are in or next to the U.S. state where cage the elephant is from?\",\"SELECT (COUNT( DISTINCT?uri) WHERE { <http://www.wikidata.org/prop/direct/P31/http://www> . *wdt:P106 ?uri. }\"\n", + "SELECT DISTINCT?uri WHERE { res:Akira_Kurosawa dbo:director }\n", + "\"Which dbo:film did res:Akira_Kurosawa dbo:director?\",\"SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Akira_Kurosawa> <http://dbpedia.org/ontology/director> }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P31 http://twitter.com/P161?uri. } ORDER BY DESC(?uri) LIMIT 1\n", - "\"In which federal state is the Veltins brewery headquarter?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31> <http://twitter.com/P161> ?uri. } ORDER BY DESC(?uri) LIMIT 1\"\n", + "SELECT DISTINCT?uri WHERE { res:San_Antonio dbo:name?uri }\n", + "\"What was the dbp:name of the dbo:motto in res:1836 in res:San_Antonio?\",\"SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/San_Antonio> <http://dbpedia.org/ontology/name> ?uri }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P31 http://twitter.com/entity/Q624.?uri wdt:P106?uri. }\n", - "\"In which stadium do the New York Yankees play?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31> <http://twitter.com/entity/Q624> . ?uri <http://www.wikidata.org/prop/direct/P106> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE { res:Charmed dbo:officialLanguage?uri }\n", + "\"Give me the dbo:officialLanguage of dbo:background of the res:Charmed.\",\"SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Charmed> <http://dbpedia.org/ontology/officialLanguage> ?uri }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri wdt:P170?uri. }\n", - "\"In which countries is the Himalayas located?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P170> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE { res:Baguette dbo:numberOfCalories?uri }\n", + "\"How many dbp:calories does a res:Baguette have?\",\"SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Baguette> <http://dbpedia.org/ontology/numberOfCalories> ?uri }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P31 http://wwd:org/entity/Q948. }\n", - "\"Was Isfahan a capital in the year 934?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31> <http://wwd:org/entity/Q948> . }\"\n", + "SELECT DISTINCT?uri WHERE { res:Brighton_and_Hove dbo:established?uri }\n", + "\"Give me all res:Libraries_in_Brighton_and_Hove dbo:established before res:1400.\",\"SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Brighton_and_Hove> <http://dbpedia.org/ontology/established> ?uri }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P31 http://wwd:org/entity/Q624. }\n", - "\"In how many countries has IKEA been established?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31> <http://wwd:org/entity/Q624> . }\"\n", + "SELECT DISTINCT?uri WHERE {?uri dbo:country res:Netherlands_Antilles_at_the_2007_Pan_American_Games }\n", + "\"Give me all res:Frisian_Islands that dbp:rank to the res:Netherlands_Antilles_at_the_2007_Pan_American_Games.\",\"SELECT DISTINCT?uri WHERE {?uri <http://dbpedia.org/ontology/country> <http://dbpedia.org/resource/Netherlands_Antilles_at_the_2007_Pan_American_Games> }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P31 http://wwd:org/entity/Q624. }\n", - "\"In which country did the United Fruit Company have their headquarters?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31> <http://wwd:org/entity/Q624> . }\"\n", + "SELECT DISTINCT?uri WHERE { res:The_Scream dbo:museum }\n", + "\"Which dbo:museum dbo:sport res:The_Scream?\",\"SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/The_Scream> <http://dbpedia.org/ontology/museum> }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P31 http://ww.wikidsata.com/entity/Q624. }\n", - "\"In how many countries is pysanka practiced?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31> <http://www.wikidsata.com/entity/Q624> . }\"\n", + "SELECT DISTINCT?date WHERE { res:De_Beers dbo:foundedBy }\n", + "\"When was the res:De_Beers dbo:foundedBy?\",\"SELECT DISTINCT?date WHERE { <http://dbpedia.org/resource/De_Beers> <http://dbpedia.org/ontology/foundedBy> }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P31 http://ww.wikidsata.com/entity/Q624. }\n", - "\"In which country is Oberirrach ?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31> <http://www.wikidsata.com/entity/Q624> . }\"\n", + "SELECT DISTINCT?uri WHERE { res:John_F._Kennedy dbo:deathDate }\n", + "\"Who became dbo:president after res:John_F._Kennedy dbo:deathDate?\",\"SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/John_F> . _Kennedy <http://dbpedia.org/ontology/deathDate> }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://http://wwd:org/entity/Q624. }\n", - "\"In which country was Spotify created?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://wwd:org/entity/Q624> . }\"\n", + "SELECT DISTINCT?uri WHERE { res:Juan_Carlos_I_of_Spain dbo:spouse?uri }\n", + "\"Who are the dbo:parent of the dbo:spouse of res:Juan_Carlos_I_of_Spain res:I?\",\"SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Juan_Carlos_I_of_Spain> <http://dbpedia.org/ontology/spouse> ?uri }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://ww.wikidsata.com/entity/Q624. }\n", - "\"What is the song Vogue by Madonna named after?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://www.wikidsata.com/entity/Q624> . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://http://wwd:org/entity/Q624. }\n", - "\"in which language does the united stated have the shortest short name?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://wwd:org/entity/Q624> . }\"\n", + "\"Who is the dbo:author of the dbo:service a dbo:anthem of dbo:frozen and fire?\",\"\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P31 http://ww.wikidsata.com/entity/Q624. }\n", - "\"Does Bremerhaven's local dialing code start with 4?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31> <http://www.wikidsata.com/entity/Q624> . }\"\n", + "SELECT DISTINCT?uri WHERE { res:Beatles_VI dbo:recordLabel?uri }\n", + "\"In which dbp:studio did the res:Beatles_VI dbo:recordLabel their first dbo:album?\",\"SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Beatles_VI> <http://dbpedia.org/ontology/recordLabel> ?uri }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P31 http://ww.wikidsata.com/entity/Q624. }\n", - "\"In how many movies was Johnny Depp casted in?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31> <http://www.wikidsata.com/entity/Q624> . }\"\n", + "SELECT DISTINCT?uri WHERE { res:Museum_of_Beer_and_Brewing dbo:location?uri }\n", + "\"Which res:Museum_of_Beer_and_Brewing are dbp:stand in res:North_Rhine-Westphalia?\",\"SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Museum_of_Beer_and_Brewing> <http://dbpedia.org/ontology/location> ?uri }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106?uri }\n", - "\"In which year did ABBA publish their album The Visitors ?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> ?uri }\"\n", + "SELECT DISTINCT?date WHERE { res:Diana,_Princess_of_Wales dbo:deathDate }\n", + "\"When did res:Diana,_Princess_of_Wales dbo:deathDate?\",\"SELECT DISTINCT?date WHERE { <http://dbpedia.org/resource/Diana,_Princess_of_Wales> <http://dbpedia.org/ontology/deathDate> }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://ww.wikidsata.com/entity/Q624. }\n", - "\"In which year was the author of “The Vanishing Half” born?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://www.wikidsata.com/entity/Q624> . }\"\n", + "SELECT DISTINCT?uri WHERE { res:Intel dbo:foundingYear?uri }\n", + "\"Who dbo:foundingYear res:Intel?\",\"SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Intel> <http://dbpedia.org/ontology/foundingYear> ?uri }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P31 http://ww.wikidsata.com/entity/Q624. }\n", - "\"Is After Eight manufactured by Unilever?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31> <http://www.wikidsata.com/entity/Q624> . }\"\n", + "SELECT DISTINCT?uri WHERE { res:Premier_League dbo:participant?uri }\n", + "\"Who is the youngest dbo:participant in the res:Premier_League?\",\"SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Premier_League> <http://dbpedia.org/ontology/participant> ?uri }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://ww.wikidsata.com/entity/Q624. }\n", - "\"Is ALDI also in Italy?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://www.wikidsata.com/entity/Q624> . }\"\n", + "SELECT DISTINCT?uri WHERE { res:Cat_Stevens dbo:starring?uri }\n", + "\"Which dbp:instrument does res:Cat_Stevens dbo:starring?\",\"SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Cat_Stevens> <http://dbpedia.org/ontology/starring> ?uri }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P31 http://wwd:org/entity/Q624. }\n", - "\"is Isfahan a big city?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31> <http://wwd:org/entity/Q624> . }\"\n", + "SELECT DISTINCT?uri WHERE { res:South_Carolina dbo:river }\n", + "\"How many dbo:river and dbo:lake are in res:South_Carolina?\",\"SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/South_Carolina> <http://dbpedia.org/ontology/river> }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106?uri. }\n", - "\"Is math related to science ?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE { res:Rodzilla dbo:alias?uri }\n", + "\"Who was dbo:alias res:Rodzilla?\",\"SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Rodzilla> <http://dbpedia.org/ontology/alias> ?uri }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://http://bit.ly/P279?uri. }\n", - "\"Is Python a kind of Programming languages?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://bit> . ly/P279 ?uri. }\"\n", + "SELECT DISTINCT?uri WHERE { res:Africa dbo:country?uri }\n", + "\"Give me the dbo:principal of all res:Countries_of_the_United_Kingdom in res:Africa.\",\"SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Africa> <http://dbpedia.org/ontology/country> ?uri }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://ww.wikidsata.com/entity/Q624. }\n", - "\"Is samurai champloo a piece of original work or an adaptation?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://www.wikidsata.com/entity/Q624> . }\"\n", + "SELECT DISTINCT?uri WHERE { res:Manhattan_Bridge dbo:type?uri }\n", + "\"Which dbo:abstract are of the same dbo:type as the res:Manhattan_Bridge?\",\"SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Manhattan_Bridge> <http://dbpedia.org/ontology/type> ?uri }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri wdt:P106?uri. }\n", - "\"Was the first female chancellor in Germany ever married?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE { res:Facebook dbo:founder?uri }\n", + "\"How many res:Companies_listed_on_the_New_York_Stock_Exchange_(J) were dbo:foundingYear by the dbo:founder of res:Facebook?\",\"SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Facebook> <http://dbpedia.org/ontology/founder> ?uri }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106?uri. }\n", - "\"Is the Mariana Trench deeper than Mount Everest is high (above sea level)?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE { res:Grand_Canyon dbo:band res:Dbo:leader?uri }\n", + "\"Show me res:Hiking in the res:Grand_Canyon where there's no dbo:leader of dbo:band.\",\"SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Grand_Canyon> <http://dbpedia.org/ontology/band> <http://dbpedia.org/resource/Dbo:leader> ?uri }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P31 http://ww.wikidsata.com/entity/Q36. }\n", - "\"Is the number of countries in Europe larger than that in Asia?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31> <http://www.wikidsata.com/entity/Q36> . }\"\n", + "SELECT DISTINCT?uri WHERE {?uri rdf:type dbo:Book ; dbp:numberOfPages?uri }\n", + "\"Which dbo:volume has the most pages?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Book> ; <http://dbpedia.org/property/numberOfPages> ?uri }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://ww.wikidsata.com/entity/Q624.?uri }\n", - "\"Is the production company of samurai champloo still existing?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://www.wikidsata.com/entity/Q624> . ?uri }\"\n", + "SELECT DISTINCT?uri WHERE { res:United_States dbo:area?uri }\n", + "\"What is the dbo:areaTotal state in the res:United_States?\",\"SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/United_States> <http://dbpedia.org/ontology/area> ?uri }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://ww.wikidsata.com/entity/Q624.?uri } ORDER BY DESC(?uri) LIMIT 1\n", - "\"is there female main character in hunter x hunter?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://www.wikidsata.com/entity/Q624> . ?uri } ORDER BY DESC(?uri) LIMIT 1\"\n", + "SELECT DISTINCT?uri WHERE { res:Websites_blocked_in_Pakistan dbo:numberOfEmployees?uri }\n", + "\"Give me the res:Websites_blocked_in_Pakistan of res:Companies_listed_on_the_New_York_Stock_Exchange_(J) with more than dbo:numberOfEmployees.\",\"SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Websites_blocked_in_Pakistan> <http://dbpedia.org/ontology/numberOfEmployees> ?uri }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://ww.wikidsata.com/entity/Q624. }\n", - "\"Is water colorless?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://www.wikidsata.com/entity/Q624> . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://http://bit.ly/P279?uri. }\n", - "\"Is Axel Rose a member of Guns N' Roses?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://bit> . ly/P279 ?uri. }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P31 http://wwd:org/entity/Q5256. }\n", - "\"Is the capital of Iran bigger than that of Germany?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31> <http://wwd:org/entity/Q5256> . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://wwd:org/entity/Q624. }\n", - "\"Is the Weser longer than the Rhine?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://wwd:org/entity/Q624> . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://ww.wikidsata.com/entity/Q624. }\n", - "\"Is Tony Blair taller than Tiger Woods?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://www.wikidsata.com/entity/Q624> . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P31 http://ww.wikidsata.com/entity/Q624. }\n", - "\"Is Chicago located at Lake Michigan?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31> <http://www.wikidsata.com/entity/Q624> . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P31 http://wwd:org/entity/Q624. }\n", - "\"Is the district of Höxter next to the district of Paderborn?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31> <http://wwd:org/entity/Q624> . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P31 http://wwd:org/entity/Q624. }\n", - "\"Are part of the Harz mountains in the district of Nordhausen?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31> <http://wwd:org/entity/Q624> . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://http://wwd:org/entity/Q624. }\n", - "\"How many people won the Nobel Prize in Literature or Physics since 2000?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://wwd:org/entity/Q624> . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://http://wwd:org/entity/Q624. }\n", - "\"How many african-american people got a star on the Hollywood Walk of Fame?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://wwd:org/entity/Q624> . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P31 http://ww.wikidsata.com/entity/Q624. }\n", - "\"With how many countries does Australia share a border?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31> <http://www.wikidsata.com/entity/Q624> . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://empire.org/entity/Q6408. }\n", - "\"How many female Chinese Empresses have there been?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://empire.org/entity/Q6408> . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://ww.wikidsata.com/entity/Q624. }\n", - "\"Of which political party was Joseph Beuys a member?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://www.wikidsata.com/entity/Q624> . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://wwd:org/entity/Q624. }\n", - "\"In what year did the Hollywood Walk of Fame open?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://wwd:org/entity/Q624> . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://wwd:org/entity/Q624. }\n", - "\"on which video streaming services can i watch hunter x hunter anime series?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://wwd:org/entity/Q624> . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106?uri }\n", - "\"People of what age belong to the Silent Generation ?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> ?uri }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://http://wwd:org/entity/Q624. }\n", - "\"In what year did the district of Höxter come into existence?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://wwd:org/entity/Q624> . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://twitter.com/entity/Q624.?uri }\n", - "\"Is the Linux Foundation verified on Twitter?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://twitter.com/entity/Q624> . ?uri }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://ww.wikidsata.com/entity/Q624. }\n", - "\"Were Angela Merkel and Tony Blair born in the same year?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://www.wikidsata.com/entity/Q624> . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri wdt:P106?uri. }\n", - "\"Do more than 100000000 people speak Japanese?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> ?uri . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106?uri }\n", - "\"Tell me all the cast members of the film Red Notice directed by Rawson Marshall Thurber ?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> ?uri }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://bit.ly/P279?uri. }\n", - "\"The first album of Jay Chou\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://bit.ly/P279> ?uri. }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P31 http://ww.wikidsata.com/entity/Q624. }\n", - "\"Through which countries does the Danube go?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31> <http://www.wikidsata.com/entity/Q624> . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://ww.wikidsata.com/entity/Q624. }\n", - "\"What do sperm whales mainly eat?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://www.wikidsata.com/entity/Q624> . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://http://bit.ly/P279?uri. }\n", - "\"Was Frida Kahlo a surrealist?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://bit> . ly/P279 ?uri. }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://ww.wikidsata.com/entity/Q624. }\n", - "\"Was Funny Games and its remake directed by different persons?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://www.wikidsata.com/entity/Q624> . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://http://wwd:org/entity/Q624. }\n", - "\"Was Google founded by Bill Gates?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://wwd:org/entity/Q624> . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://http://wwd:org/entity/Q624. }\n", - "\"What is the second letter in the Greek alphabet?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://wwd:org/entity/Q624> . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://http://bit.ly/P279?uri. }\n", - "\"Was it the cancer that caused the death of Steve Jobs who was the CEO of Apple?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://bit> . ly/P279 ?uri. }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://http://wwd:org/entity/Q624. }\n", - "\"Was Shaquille O'Neal the teammate of Kobe Bryant in the year of 2000?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://wwd:org/entity/Q624> . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://ww.wikidsata.com/entity/Q624. }\n", - "\"Was Shaquille O'Neal, as the basketball player, also an film actor?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://www.wikidsata.com/entity/Q624> . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://http://bit.ly/P279?uri. } ORDER BY DESC(?uri) LIMIT 1\n", - "\"Was the first album of the band Darkside released in 2012?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://bit> . ly/P279 ?uri. } ORDER BY DESC(?uri) LIMIT 1\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://ww.wikidsata.com/entity/Q624. }\n", - "\"What are the spin-offs of Breaking Bad?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://www.wikidsata.com/entity/Q624> . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106?uri. }\n", - "\"Which river flows through the Grand Canyon?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> ?uri . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://http://bit.ly/P279?uri. } ORDER BY DESC(?uri) LIMIT 1\n", - "\"What was the key event related to Salvador Dalí?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://bit> . ly/P279 ?uri. } ORDER BY DESC(?uri) LIMIT 1\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://http://bit.ly/P279?uri. }\n", - "\"Who passed the German Occupational Safety and Health Act?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://bit> . ly/P279 ?uri. }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106?uri. }\n", - "\"What are the German names of academic disciplines containing “linguistik”?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> ?uri . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106?uri }\n", - "\"What are the names of the head of states of Germany and France ?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> ?uri }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://http://wwd:org/entity/Q624. }\n", - "\"What are the professions of John Lennon’s sons?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://wwd:org/entity/Q624> . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://wwd:org/entity/Q624. }\n", - "\"What are the titles of the Star Wars series movies?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://wwd:org/entity/Q624> . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106?uri. }\n", - "\"What came first: the TV show The Flintstones or the end of racial discrimination in voting in the US ?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> ?uri . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://http://wwd:org/entity/Q624. }\n", - "\"What colors does the German national flag have?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://wwd:org/entity/Q624> . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://ww.wikidsata.com/entity/Q624. }\n", - "\"What did the suffragettes stand for?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://www.wikidsata.com/entity/Q624> . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://ww.wikidsata.com/entity/Q624. }\n", - "\"What do you call a female form of an emperor in English?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://www.wikidsata.com/entity/Q624> . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://http://wwd:org/entity/Q624. }\n", - "\"What event killed the most people in the years 1910 to 1920?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://wwd:org/entity/Q624> . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://ww.wikidsata.com/entity/Q624. }\n", - "\"Does the ATI Company still exist?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://www.wikidsata.com/entity/Q624> . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106?uri }\n", - "\"What happened to the dinosaurs ?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> ?uri }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://ww.wikidsata.com/entity/Q624. }\n", - "\"What instruments did Louis Armstrong play?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://www.wikidsata.com/entity/Q624> . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://wwd:org/entity/Q624. }\n", - "\"what did the author of the phrase: \"Alea iacta est\" die of?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://wwd:org/entity/Q624> . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106?uri }\n", - "\"What is the binary gender of the partner of Allen Ginsberg ?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> ?uri }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P31 http://wwd:org/entity/Q624. }\n", - "\"What is the capital of the prefecture Tokyo ?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31> <http://wwd:org/entity/Q624> . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://http://wwd:org/entity/Q624. }\n", - "\"What is the Chinese zodiac animal that follows the ox?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://wwd:org/entity/Q624> . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106?uri. }\n", - "\"What is the combined total revenue of three largest Big Tech companies ordered by number of employees?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> ?uri . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P31 http://wwd:org/entity/Q624. }\n", - "\"What is the coordinate location of Shenzhen ?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31> <http://wwd:org/entity/Q624> . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106?uri }\n", - "\"What is the Erlangen program ?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> ?uri }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri wdt:P106?uri. }\n", - "\"Did the Roland Corporation produce synthesizers?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> ?uri . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P31 http://wwd:org/entity/Q624. }\n", - "\"How many perople do the Port of Rotterdam employ?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31> <http://wwd:org/entity/Q624> . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106?uri. }\n", - "\"what is the main subject of the manga \"your lie in april\": primary school, middle school or high school student?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> ?uri . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106?uri }\n", - "\"What is the mother tongue of the author Chimamanda Ngozi Adichie ?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> ?uri }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://ww.wikidsata.com/entity/Q624. }\n", - "\"Who was the partner of Allen Ginsberg?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://www.wikidsata.com/entity/Q624> . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P31 http://ww.wikidsata.com/entity/Q624. }\n", - "\"What is the second game developed by Piranha Bytes?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31> <http://www.wikidsata.com/entity/Q624> . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106?uri. }\n", - "\"What is the TV-show that starred Rowan Atkinson , had 4 seasons and started in 1983?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> ?uri . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://wwd:org/entity/Q624. }\n", - "\"What is the english nickname of Ella Fitzgerald?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://wwd:org/entity/Q624> . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://http://wwd:org/entity/Q624. }\n", - "\"What are the occupations of Kazuo Ishiguro’s daughter?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://wwd:org/entity/Q624> . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://ww.wikidsata.com/entity/Q624. }\n", - "\"What are the occupations of Nat King Cole?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://www.wikidsata.com/entity/Q624> . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://http://wwd:org/entity/Q624. }\n", - "\"what is the official language of iran?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://wwd:org/entity/Q624> . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106?uri }\n", - "\"What is the population in Freiburg ?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> ?uri }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://wwd:org/entity/Q624. }\n", - "\"What is the title of the 2020 released movie in which Carey Mulligan was the main actress?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://wwd:org/entity/Q624> . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://ww.wikidsata.com/entity/Q624. }\n", - "\"What does Ray-Ban produce primarily?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://www.wikidsata.com/entity/Q624> . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://http://bit.ly/P279?uri. }\n", - "\"What language did the famous king, who was also a student of Aristotle's , speak?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://bit> . ly/P279 ?uri. }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri wdt:P170?uri. }\n", - "\"What language do they speak in Poland ?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P170> ?uri . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://http://wwd:org/entity/Q624. }\n", - "\"How many different languages are spoken in West Europe?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://wwd:org/entity/Q624> . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://ww.wikidsata.com/entity/Q624. }\n", - "\"Is Germany bigger than Poland?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://www.wikidsata.com/entity/Q624> . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri wdt:P106?uri. }\n", - "\"What notes does a C major chord consist of?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> ?uri . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://http://wwd:org/entity/Q624. }\n", - "\"How many different occupations did/do spouses of winners of the Nobel Prize in Literature hold?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://wwd:org/entity/Q624> . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P31 http://wwd:org/entity/Q624. }\n", - "\"How many other video games began the same year as Dead by Daylight?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31> <http://wwd:org/entity/Q624> . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106?uri }\n", - "\"What other civilizations existed during the Aztecs ?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> ?uri }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://ww.wikidsata.com/entity/Q624. }\n", - "\"What brand uses petroleum jelly?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://www.wikidsata.com/entity/Q624> . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106?uri. }\n", - "\"How many other musical films were launched the same year as Grease?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> ?uri . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://ww.wikidsata.com/entity/Q624. }\n", - "\"Which creator of The OA also acted in it?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://www.wikidsata.com/entity/Q624> . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://http://bit.ly/P279?uri. }\n", - "\"What albums has Atif Aslam been on?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://bit> . ly/P279 ?uri. }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://ww.wikidsata.com/entity/Q624. }\n", - "\"What was Ada Lovelace’s noble title?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://www.wikidsata.com/entity/Q624> . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P31 http://ww.wikidsata.com/entity/Q624. }\n", - "\"What was Janus the god of?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31> <http://www.wikidsata.com/entity/Q624> . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P31 http://ww.wikidsata.com/entity/Q624. }\n", - "\"Who was the fellow Hobbit who was an enemy of Frodo?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31> <http://www.wikidsata.com/entity/Q624> . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://http://wwd:org/entity/Q624. }\n", - "\"What was the last painting that Van Gogh painted?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://wwd:org/entity/Q624> . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106?uri. }\n", - "\"What was the main subject addressed in the Deep Purple song “Smoke on the water”?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> ?uri . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://ww.wikidsata.com/entity/Q624. }\n", - "\"When did the first sperm whales exist?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://www.wikidsata.com/entity/Q624> . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://http://wwd:org/entity/Q624. }\n", - "\"What year did the Berlin Wall fall?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://wwd:org/entity/Q624> . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P31 http://ww.wikidsata.com/entity/Q624. }\n", - "\"What year was Riverdale first aired?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31> <http://www.wikidsata.com/entity/Q624> . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://ww.wikidsata.com/entity/Q624. }\n", - "\"When did Allen Ginsberg die?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://www.wikidsata.com/entity/Q624> . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://ww.wikidsata.com/entity/Q624. }\n", - "\"When did Ella Fitzgerald die?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://www.wikidsata.com/entity/Q624> . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://ww.wikidsata.com/entity/Q624. }\n", - "\"when did human first start to bouldering?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://www.wikidsata.com/entity/Q624> . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri wdt:P170?uri. }\n", - "\"When did Pakistan become independent?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P170> ?uri . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://ww.wikidsata.com/entity/Q624. }\n", - "\"When did Rumi die?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://www.wikidsata.com/entity/Q624> . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://http://wwd:org/entity/Q624. }\n", - "\"When did the brother of the author of Slaughterhouse Five die?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://wwd:org/entity/Q624> . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://http://bit.ly/P279?uri. } ORDER BY DESC(?uri) LIMIT 1\n", - "\"when was the creator of saturday night live born?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://bit> . ly/P279 ?uri. } ORDER BY DESC(?uri) LIMIT 1\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri wdt:P170?uri. }\n", - "\"Who was part of the Hambach Festival?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P170> ?uri . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://ww.wikidsata.com/entity/Q624. }\n", - "\"When did The OA was first released?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://www.wikidsata.com/entity/Q624> . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://ww.wikidsata.com/entity/Q624. }\n", - "\"How many casualties were a result of the Troubles?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://www.wikidsata.com/entity/Q624> . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://wwd:org/entity/Q624. }\n", - "\"When did the Weimar Republic start?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://wwd:org/entity/Q624> . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://wwd:org/entity/Q624. }\n", - "\"When did World War II officially end?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://wwd:org/entity/Q624> . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri wdt:P106?uri. }\n", - "\"when is the first ironman world championship?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> ?uri . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106?uri. }\n", - "\"when was the magazine in which hunter x hunter is published established?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> ?uri . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://ww.wikidsata.com/entity/Q624. }\n", - "\"When the film Red Notice was released?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://www.wikidsata.com/entity/Q624> . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://ww.wikidsata.com/entity/Q624. }\n", - "\"When was Cologne Cathedral built?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://www.wikidsata.com/entity/Q624> . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://ww.wikidsata.com/entity/Q624. }\n", - "\"What can be done against gout?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://www.wikidsata.com/entity/Q624> . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://ww.wikidsata.com/entity/Q624. }\n", - "\"When was HIV first identified?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://www.wikidsata.com/entity/Q624> . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://http://bit.ly/P279?uri. }\n", - "\"When was the first article about Liquid State Machines published?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://bit> . ly/P279 ?uri. }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://ww.wikidsata.com/entity/Q624. }\n", - "\"When was Marlene Dietrich born?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://www.wikidsata.com/entity/Q624> . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://ww.wikidsata.com/entity/Q624. }\n", - "\"When was Penicillin discovered?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://www.wikidsata.com/entity/Q624> . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://ww.wikidsata.com/entity/Q624. }\n", - "\"When was Rumi born?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://www.wikidsata.com/entity/Q624> . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106?uri }\n", - "\"When was the beginning of Romanticism ?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> ?uri }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri wdt:P106?uri. }\n", - "\"When was the Echo Music Prize abolished?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> ?uri . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://bit.ly/P279?uri. }\n", - "\"When was the first album of the American band Typhoon released?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://bit.ly/P279> ?uri. }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://ww.wikidsata.com/entity/Q624. }\n", - "\"When was the Hamburg Airport inaugurated?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://www.wikidsata.com/entity/Q624> . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri wdt:P170?uri. }\n", - "\"When was the Hamburg S-Bahn officially opened?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P170> ?uri . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://ww.wikidsata.com/entity/Q624. }\n", - "\"When was the jazz club Birdland in Hamburg founded?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://www.wikidsata.com/entity/Q624> . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://ww.wikidsata.com/entity/Q624. }\n", - "\"When was the poem Howl written?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://www.wikidsata.com/entity/Q624> . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://http://wwd:org/entity/Q6408. }\n", - "\"When was the university of Cambridge founded?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://wwd:org/entity/Q6408> . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://http://wwd:org/entity/Q624. }\n", - "\"When was the University of Hamburg founded?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://wwd:org/entity/Q624> . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P31 http://ww.wikidsata.com/entity/Q624. }\n", - "\"When was the University of Saskatchewan founded?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31> <http://www.wikidsata.com/entity/Q624> . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://ww.wikidsata.com/entity/Q624. }\n", - "\"When was the Vatican City created?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://www.wikidsata.com/entity/Q624> . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P31 http://ww.wikidsata.com/entity/Q624. }\n", - "\"When was United Fruit Company founded?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31> <http://www.wikidsata.com/entity/Q624> . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://ww.wikidsata.com/entity/Q624. }\n", - "\"Where did Trotzky die?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://www.wikidsata.com/entity/Q624> . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://http://bit.ly/P279?uri. }\n", - "\"Where are both The Call of the Wild and White Fang set, the most two famous works of Jack London?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://bit> . ly/P279 ?uri. }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P31 http://ww.wikidsata.com/entity/Q624. }\n", - "\"Where did the Hambach Festival happen?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31> <http://www.wikidsata.com/entity/Q624> . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://http://wwd:org/entity/Q624. }\n", - "\"Where do the novels of the franchise The Lord of the Rings take place?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://wwd:org/entity/Q624> . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P31 http://ww.wikidsata.com/entity/Q624. }\n", - "\"Where does the Nutri-Score originate from?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31> <http://www.wikidsata.com/entity/Q624> . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://ww.wikidsata.com/entity/Q624. }\n", - "\"Are there at least two winners of the Academy Award for Best Actress who have been educated at the same institution?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://www.wikidsata.com/entity/Q624> . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://ww.wikidsata.com/entity/Q624. }\n", - "\"Where was K-pop star Lisa Manoban born?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://www.wikidsata.com/entity/Q624> . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P31 http://wwd:org/entity/Q624. }\n", - "\"What is the highest point of Norway?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31> <http://wwd:org/entity/Q624> . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106?uri. }\n", - "\"Where did the psychedelic band “Khruangbin” form?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> ?uri . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://ww.wikidsata.com/entity/Q624. }\n", - "\"Where was Caesar murdered?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://www.wikidsata.com/entity/Q624> . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P31 http://ww.wikidsata.com/entity/Q624. }\n", - "\"Where was Goethe’s unmarried partner born ?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31> <http://www.wikidsata.com/entity/Q624> . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://ww.wikidsata.com/entity/Q624. }\n", - "\"Where was Roland Corporation founded?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://www.wikidsata.com/entity/Q624> . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://ww.wikidsata.com/entity/Q624. }\n", - "\"Where was the author of The Catcher in the Rye born ?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://www.wikidsata.com/entity/Q624> . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://ww.wikidsata.com/entity/Q624. }\n", - "\"Who developed the Erlangen program?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://www.wikidsata.com/entity/Q624> . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://ww.wikidsata.com/entity/Q624. }\n", - "\"Which actor starring in Free Guy also starred in Deadpool?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://www.wikidsata.com/entity/Q624> . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://ww.wikidsata.com/entity/Q624. }\n", - "\"Which American presidents followed in their father‘s step and also became the president?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://www.wikidsata.com/entity/Q624> . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P31 http://ww.wikidsata.com/entity/Q624. }\n", - "\"which animal can possibly live longer, panda or koala?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31> <http://www.wikidsata.com/entity/Q624> . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106?uri }\n", - "\"Which archipelago has more islands: the Galápagos Islands or the Hawaiian Islands ?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> ?uri }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://ww.wikidsata.com/entity/Q624. }\n", - "\"Which art movement was Yoko Ono part of?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://www.wikidsata.com/entity/Q624> . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://ww.wikidsata.com/entity/Q624. }\n", - "\"which band is created earlier, queen or pink floyd?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://www.wikidsata.com/entity/Q624> . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://ww.wikidsata.com/entity/Q624. }\n", - "\"What caused Kobe Bryant's Death?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://www.wikidsata.com/entity/Q624> . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://http://wwd:org/entity/Q624. }\n", - "\"What are the opposites of zero?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://wwd:org/entity/Q624> . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106?uri. }\n", - "\"Which businesses are founded by the person in charge of Tesla?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> ?uri . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P31 http://ww.wikidsata.com/entity/Q36. }\n", - "\"Did Germany have a population growth of at least 1% since 2010?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31> <http://www.wikidsata.com/entity/Q36> . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P31 http://wwd:org/entity/Q624. }\n", - "\"Which aircraft did Howard Hughes build?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31> <http://wwd:org/entity/Q624> . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri wdt:P279?uri. }\n", - "\"Which country has more official languages: South Africa (Q258) or Ethiopia ?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P279> ?uri . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://ww.wikidsata.com/entity/Q624. }\n", - "\"Is throat singing a tradition?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://www.wikidsata.com/entity/Q624> . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri wdt:P106?uri. }\n", - "\"Which disease caused the death of Mark Twain?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> ?uri . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri wdt:P106?uri. }\n", - "\"Which diseases can be caused by smoking ?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> ?uri . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106?uri. }\n", - "\"Which genre that Cage the Elephant belongs to has the fewest english characters?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> ?uri . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P31 http://ww.wikidsata.com/entity/Q6279. }\n", - "\"Which takes less space? 1kg of lead or 1kg of iron.\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31> <http://www.wikidsata.com/entity/Q6279> . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106?uri. }\n", - "\"Which kingdom preceded the Thonburi Kingdom ?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> ?uri . }\"\n", - "\n", - "SELECT (COUNT( DISTINCT?uri) WHERE { http://www.wikidata.org/prop/direct/P106?uri. }\n", - "\"How many mountains are located in Germany?\",\"SELECT (COUNT( DISTINCT?uri) WHERE { <http://www.wikidata.org/prop/direct/P106> ?uri . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106?uri. }\n", - "\"Which movements is the painting “Les Demoiselles d'Avignon” assigned to?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> ?uri . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106?uri. }\n", - "\"Which movies belong to the Cornetto trilogy ?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> ?uri . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://ww.wikidsata.com/entity/Q624. }\n", - "\"During what event was the Four Policemen Council proposed?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://www.wikidsata.com/entity/Q624> . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri wdt:P106?uri. }\n", - "\"Which NBA teams have won the most seasons?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> ?uri . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://ww.wikidsata.com/entity/Q624. }\n", - "\"Which of the dragons in Game of Thrones died?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://www.wikidsata.com/entity/Q624> . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106?uri }\n", - "\"Which other movies by the director of Another Round also starred Mads Mikkelsen ?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> ?uri }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106?uri. }\n", - "\"Which egyptian pyramid is the tallest?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> ?uri . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://http://wwd:org/entity/Q6408. }\n", - "\"What is the offical language of Taipei?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://wwd:org/entity/Q6408> . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106?uri. }\n", - "\"Which shows aired for the first time the same year as Saturday Night Live ?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> ?uri . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106?uri. }\n", - "\"Which songs made up the album Fijación Oral vol. 1 ?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> ?uri . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106?uri. }\n", - "\"Which started first: impressionism or expressionism (art movements)?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> ?uri . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106?uri. }\n", - "\"which state inside USA is batman living in?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> ?uri . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106?uri. }\n", - "\"which swordfighter in the lord of the rings marry a half-elven and belong to rangers of the north?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> ?uri . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106?uri }\n", - "\"Which teams participated in the 2020 UEFA Champions League Final ?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> ?uri }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106?uri. }\n", - "\"Which universities have more than 200000 students?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> ?uri . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106?uri. }\n", - "\"which university is established earlier, university of oxford or university of cambridge?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> ?uri . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://wwd:org/entity/Q624. }\n", - "\"Who developed WordNet?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://wwd:org/entity/Q624> . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://ww.wikidsata.com/entity/Q624. }\n", - "\"Who are the actresses in Portrait of a Lady on Fire?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://www.wikidsata.com/entity/Q624> . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://ww.wikidsata.com/entity/Q624. }\n", - "\"Did Michael Jordan and Kobe Bryant play for the same team?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://www.wikidsata.com/entity/Q624> . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://http://bit.ly/P279?uri. }\n", - "\"Who created the Turing machine?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://bit> . ly/P279 ?uri. }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P31 http://ww.wikidsata.com/entity/Q624. }\n", - "\"When was the Hambach Castle built?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31> <http://www.wikidsata.com/entity/Q624> . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://ww.wikidsata.com/entity/Q624. }\n", - "\"Who died at the North Pole?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://www.wikidsata.com/entity/Q624> . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106?uri }\n", - "\"Who directed Anne with an E ?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> ?uri }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri wdt:P106?uri. }\n", - "\"Who wrote \"Prototypical Networks for Few-shot Learning\"?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> ?uri . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://ww.wikidsata.com/entity/Q624. }\n", - "\"Who founded “The Blue Rider”?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://www.wikidsata.com/entity/Q624> . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106?uri. }\n", - "\"Who founded the Worpswede artist colony ?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> ?uri . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106?uri. }\n", - "\"Who is the author of “Convenience Store Woman” ?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> ?uri . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://ww.wikidsata.com/entity/Q624. }\n", - "\"Who is the soccer player with the most goals in their career?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://www.wikidsata.com/entity/Q624> . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106?uri. }\n", - "\"Who is the creator of the Dinosaurs tv show ?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> ?uri . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://http://wwd:org/entity/Q624. }\n", - "\"Who is the current president of the German Bundestag currently?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://wwd:org/entity/Q624> . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://http://wwd:org/entity/Q624. }\n", - "\"Who is the most wealthy entrepreneur?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://wwd:org/entity/Q624> . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106?uri. }\n", - "\"Who is the oldest cast member of the Netflix show “Queer Eye” ?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> ?uri . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106?uri }\n", - "\"Who is the publisher of Smite ?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> ?uri }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://http://bit.ly/P279?uri. }\n", - "\"Who wrote the Erlangen program?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://bit> . ly/P279 ?uri. }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P31 http://ww.wikidsata.com/entity/Q624. }\n", - "\"In which country is the Nanga Parbat located?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31> <http://www.wikidsata.com/entity/Q624> . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://wwd:org/entity/Q624. }\n", - "\"who produced Star Wars: Episode VI – Return of the Jedi?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://wwd:org/entity/Q624> . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106?uri }\n", - "\"Who was an actor in more movies, Daniel Day Lewis or Paul Dano ?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> ?uri }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://ww.wikidsata.com/entity/Q624. }\n", - "\"For what literature prize was Simone de Beauvoir nominated?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://www.wikidsata.com/entity/Q624> . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P31 http://wwd:org/entity/Q624. }\n", - "\"What is the website of NPR's “Tiny Desk Concert”?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31> <http://wwd:org/entity/Q624> . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106?uri }\n", - "\"Who was the creator of Boo-Boo Bear ?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> ?uri }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106?uri }\n", - "\"Who was the creator of Unbreakable Kimmy Schmidt ?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> ?uri }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106?uri }\n", - "\"Who was the director of Llamas with Hats ?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> ?uri }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri wdt:P106?uri. }\n", - "\"Who founded the Roland Corporation?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> ?uri . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://ww.wikidsata.com/entity/Q624. }\n", - "\"Who was the original actor who played Pinhead ?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://www.wikidsata.com/entity/Q624> . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri wdt:P106?uri. }\n", - "\"Who were the parents of Socrates ?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> ?uri . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P31 http://ww.wikidsata.com/entity/Q624. }\n", - "\"Who wrote Anne of Green Gables ?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31> <http://www.wikidsata.com/entity/Q624> . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P31 http://wwd:org/entity/Q624. }\n", - "\"Who wrote the poem Howl ?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31> <http://wwd:org/entity/Q624> . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106?uri }\n", - "\"Who's the author of The Hellbound Heart ?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> ?uri }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://ww.wikidsata.com/entity/Q624. }\n", - "\"Whom did Clara Westhoff marry?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://www.wikidsata.com/entity/Q624> . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P31 http://wwd:org/entity/Q624. }\n", - "\"what is the oldest film festival?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31> <http://wwd:org/entity/Q624> . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://ww.wikidsata.com/entity/Q624. }\n", - "\"When was Athens founded?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://www.wikidsata.com/entity/Q624> . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P31 http://wwd:org/entity/Q624. }\n", - "\"which river is longer, the Seine or Elbe?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31> <http://wwd:org/entity/Q624> . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://ww.wikidsata.com/entity/Q624.?uri } ORDER BY DESC(?uri) LIMIT 1\n", - "\"which game is created earlier, super mario bros or Pac-Man?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://www.wikidsata.com/entity/Q624> . ?uri } ORDER BY DESC(?uri) LIMIT 1\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P31 http://wwd:org/entity/Q624. }\n", - "\"who is the youngested member in g-idle?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31> <http://wwd:org/entity/Q624> . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://wwd:org/entity/Q6408. }\n", - "\"who is older, Lionel Messi or Cristiano Ronaldo?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://wwd:org/entity/Q6408> . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P31 http://ww.wikidsata.com/entity/Q624. }\n", - "\"Is heidelberg university or university hamburg founded earlier?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31> <http://www.wikidsata.com/entity/Q624> . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P31 http://ww.wikidsata.com/entity/Q624. }\n", - "\"which forest is bigger, Amazon Rainforest or Congo Basin?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31> <http://www.wikidsata.com/entity/Q624> . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P31 http://wwd:org/entity/Q624. }\n", - "\"Does Samsung Electronics or Apple have more employees?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31> <http://wwd:org/entity/Q624> . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P31 http://wwd:org/entity/Q624. }\n", - "\"which company is founded later, samsung or sony?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31> <http://wwd:org/entity/Q624> . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://wwd:org/entity/Q6408.?height wdt:P106?height. }\n", - "\"who is taller, Lionel Messi or Cristiano Ronaldo?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://wwd:org/entity/Q6408> . ?height <http://www.wikidata.org/prop/direct/P106> ?height . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://wwd:org/entity/Q6408. }\n", - "\"who has won more NBA awards, Michael Jordan or Kobe Bean Bryant?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://wwd:org/entity/Q6408> . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://wwd:org/entity/Q6408.?height wdt:P106?height. }\n", - "\"Did Michael Jordan ever weigh more than Kobe Bean Bryant?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://wwd:org/entity/Q6408> . ?height <http://www.wikidata.org/prop/direct/P106> ?height . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://ww.wikidsata.com/entity/Q624. }\n", - "\"Who is older, Sebastian Vettel or Lewis Hamilton?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://www.wikidsata.com/entity/Q624> . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106?uri. }\n", - "\"which city is more populated, copenhagen or amsterdam?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> ?uri . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://ww.wikidsata.com/entity/Q624. }\n", - "\"How many things are part of the \"One Piece\" Franchise?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://www.wikidsata.com/entity/Q624> . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://ww.wikidsata.com/entity/Q624. }\n", - "\"How many fictional female swordfighters are there?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://www.wikidsata.com/entity/Q624> . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106?uri. }\n", - "\"which company started earlier, Black Diamond Equipment or la sportiva?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> ?uri . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P31 http://ww.wikidsata.com/entity/Q624. }\n", - "\"which desert is bigger, sahara desert or arabian desert?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31> <http://www.wikidsata.com/entity/Q624> . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://ww.wikidsata.com/entity/Q624. }\n", - "\"who lives longer, series black or bellatrix Lestrange?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://www.wikidsata.com/entity/Q624> . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P31 http://wwd:org/entity/Q624. }\n", - "\"What is the area of the great lakes?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31> <http://wwd:org/entity/Q624> . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://http://wwd:org/entity/Q624. }\n", - "\"What is native name of the composer of the Japanese national anthem?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://wwd:org/entity/Q624> . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://ww.wikidsata.com/entity/Q624. }\n", - "\"Who is the founder of the capital of Vietnam?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://www.wikidsata.com/entity/Q624> . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://wwd:org/entity/Q6408. }\n", - "\"Who is the manager of the operator of Neumayer III?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://wwd:org/entity/Q6408> . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://ww.wikidsata.com/entity/Q624. }\n", - "\"How high is the mountain on which Günther Messner died?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://www.wikidsata.com/entity/Q624> . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://wwd:org/entity/Q624. }\n", - "\"What is the twitter name of Running Wild?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://wwd:org/entity/Q624> . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://wwd:org/entity/Q624. }\n", - "\"How many times did the Italian national soccer team win the Fifa World Cup?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://wwd:org/entity/Q624> . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://wwd:org/entity/Q624. }\n", - "\"What is the area of the capital of Spitsbergen?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://wwd:org/entity/Q624> . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P31 http://ww.wikidsata.com/entity/Q624. }\n", - "\"What percentage of Andorra is covered with water?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31> <http://www.wikidsata.com/entity/Q624> . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P31 http://wwd:org/entity/Q624. }\n", - "\"How many countries are located around the euorpean Lake Constance?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31> <http://wwd:org/entity/Q624> . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://ww.wikidsata.com/entity/Q624. }\n", - "\"With how many persons was Richard Burton married?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://www.wikidsata.com/entity/Q624> . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://wwd:org/entity/Q624. }\n", - "\"At what coordinates was the \"Sender Teutoburger Wald\" erected?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://wwd:org/entity/Q624> . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://http://wwd:org/entity/Q624. }\n", - "\"Where is the poet Alexander Pope buried?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://wwd:org/entity/Q624> . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P31 http://ww.wikidsata.com/entity/Q624. }\n", - "\"In what country is the Kandahar-downhill?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31> <http://www.wikidsata.com/entity/Q624> . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://entity/Q624. }\n", - "\"Who founded the architectural firm who planned the Elbphilharmonie?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://entity/Q624> . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://http://bit.ly/P279?uri. }\n", - "\"Where are the founders of the band Metallica from?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://bit> . ly/P279 ?uri. }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P31 http://ww.wikidsata.com/entity/Q624. }\n", - "\"Where does the Granny Smith apple variety come from?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P31> <http://www.wikidsata.com/entity/Q624> . }\"\n", - "\n", - "SELECT DISTINCT?uri WHERE {?uri http://www.wikidata.org/prop/direct/P106 http://ww.wikidsata.com/entity/Q624. }\n", - "\"What is the Fujiyama made of?\",\"SELECT DISTINCT?uri WHERE {?uri <http://www.wikidata.org/prop/direct/P106> <http://www.wikidsata.com/entity/Q624> . }\"\n", + "SELECT DISTINCT?uri WHERE { res:Columbus dbo:title?uri }\n", + "\"What were the dbo:title of the three dbo:shipBeam by res:Columbus?\",\"SELECT DISTINCT?uri WHERE { <http://dbpedia.org/resource/Columbus> <http://dbpedia.org/ontology/title> ?uri }\"\n", "\n" ] } ], "source": [ - "\n", + "import csv\n", + "import json\n", "prefixes = {\n", " \"res:\": \"http://dbpedia.org/resource/\",\n", " \"dbo:\": \"http://dbpedia.org/ontology/\",\n", @@ -1659,14 +932,23 @@ "}\n", "\n", "# Open test file and predict all queries, save to new csv file\n", - "TEST_FILE = \"qald-10-test.json\"\n", - "OUT_FILE = \"qald-10-test-predictions.csv\"\n", + "TEST_FILE = \"qald-9-test-linked-tokenized.csv\"\n", + "# JSON or CSV\n", + "TEST_FILE_IS_JSON = False\n", + "OUT_FILE = \"qald-9-test-predictions.csv\"\n", "\n", "with open(TEST_FILE, \"r\", encoding=\"utf-8\") as f, open(OUT_FILE, \"w\", encoding=\"utf-8\") as out:\n", - " test_data = json.load(f)\n", - " for i, question in enumerate(test_data[\"questions\"]):\n", - " plaintext_question = question[\"question\"][0][\"string\"]\n", - " predicted = to_query(plaintext_question)\n", + " if TEST_FILE_IS_JSON:\n", + " test_data = json.load(f)\n", + " test_data = test_data[\"questions\"]\n", + " test_data = [q[\"question\"][0][\"string\"] for q in test_data]\n", + " else:\n", + " test_data = csv.reader(f, delimiter=\",\")\n", + " test_data = list(test_data)\n", + " test_data = [q[0] for q in test_data]\n", + " \n", + " for i, question in enumerate(test_data):\n", + " predicted = to_query(question)\n", " predicted = predicted[0]\n", " # Filter everything before the first \" and after the last \"\n", " predicted = predicted[predicted.find('\"') + 1:predicted.rfind('\"')]\n", @@ -1714,8 +996,8 @@ " \n", "\n", " \n", - " out.write(f\"\\\"{plaintext_question}\\\",\\\"{predicted}\\\"\\n\")\n", - " print(f\"\\\"{plaintext_question}\\\",\\\"{predicted}\\\"\\n\")\n", + " out.write(f\"\\\"{question}\\\",\\\"{predicted}\\\"\\n\")\n", + " print(f\"\\\"{question}\\\",\\\"{predicted}\\\"\\n\")\n", "\n", " \n" ] @@ -1735,7 +1017,7 @@ "provenance": [] }, "kernelspec": { - "display_name": "Python 3.9.11 64-bit", + "display_name": "Python 3.9.10 64-bit", "language": "python", "name": "python3" }, @@ -1749,11 +1031,11 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.9.11" + "version": "3.9.10" }, "vscode": { "interpreter": { - "hash": "64e7cd3b4b88defe39dd61a4584920400d6beb2615ab2244e340c2e20eecdfe9" + "hash": "0988fb18a177ab47253348976d615106e52998fa9d41728b0d76cf08f2eafea6" } }, "widgets": { diff --git a/data/qald-9-test-linked-tokenized.csv b/data/qald-9-test-linked-tokenized.csv new file mode 100644 index 0000000000000000000000000000000000000000..b5ca6fbe6127ebef87219e3d6035032221426129 --- /dev/null +++ b/data/qald-9-test-linked-tokenized.csv @@ -0,0 +1,151 @@ +text,summary +"What is the dbo:timeZone of res:Salt_Lake_City?", "SELECT DISTINCT ?uri WHERE { res:Salt_Lake_City dbo:timeZone ?uri }" +"Who dbo:billed res:Caesar_(game)?", "SELECT DISTINCT ?uri WHERE { ?uri dct:subject dbc:Assassins_of_Julius_Caesar }" +"What is the dbo:elevation in res:Germany?", "SELECT ?uri WHERE { ?uri rdf:type onto:Mountain ; onto:elevation ?elevation ; onto:locatedInArea res:Germany } ORDER BY DESC(?elevation) LIMIT 1" +"Which res:Organization_of_American_States were in dbo:office during the res:Vietnam_War?", "SELECT ?uri WHERE { ?uri dct:subject dbc:Presidents_of_the_United_States . res:Vietnam_War dbo:commander ?uri }" +"Butch Otter is the dbo:governor of which U.S. state?", "SELECT DISTINCT ?uri WHERE { ?uri a yago:WikicatStatesOfTheUnitedStates ; dbp:governor res:Butch_Otter }" +"How many dbo:goldMedalist did res:Michael_Phelps dbo:award at the res:2008_Summer_Olympics?", "SELECT Count(?sub) as ?c WHERE { ?sub dbo:goldMedalist dbr:Michael_Phelps . filter (contains (str(?sub), "2008") && contains (str(?sub), "Olympics")) }" +"Which dbp:artist were dbo:birthPlace on the same date as res:Rachel_Stevens?", "SELECT DISTINCT ?uri WHERE { ?uri a dbo:Artist . dbr:Rachel_Stevens dbo:birthDate ?birthdate . ?uri dbo:birthDate ?birthdate }" +"What is the dbo:profession of res:Frank_Herbert?", "SELECT DISTINCT ?string WHERE { res:Frank_Herbert dbpedia2:occupation ?string }" +"Are res:Taiko some kind of res:Japan?", "ASK WHERE { res:Taiko a yago:WikicatJapaneseMusicalInstruments }" +"How many dbp:seat does the home res:FC_Porto have?", "SELECT ?capacity WHERE { { dbr:FC_Porto dbo:ground ?ground . ?ground dbo:capacity ?capacity } UNION { dbr:FC_Porto dbo:ground ?ground . ?ground dbp:capacity ?capacity } }" +"Which res:Frequent-flyer_program has the most dbo:icaoAirlineCode?", "SELECT ?uri WHERE { ?airline rdf:type dbo:Airline . ?airline dbp:frequentFlyer ?uri. } GROUP BY ?uri ORDER BY DESC(COUNT( DISTINCT ?airline)) OFFSET 0 LIMIT 1" +"Which res:Europe have a res:Constitutional_monarchy?", "SELECT ?uri WHERE { ?uri dct:subject dbc:Countries_in_Europe ; dbo:governmentType dbr:Constitutional_monarchy }" +"Which res:Countries_of_the_United_Kingdom have dbo:place with more than two res:Caves_of_Aggtelek_Karst_and_Slovak_Karst?", "SELECT DISTINCT ?uri WHERE { ?cave rdf:type dbo:Cave ; dbo:location ?uri . ?uri rdf:type dbo:Country } GROUP BY ?uri HAVING ( COUNT( ?cave) 2 )" +"Which dbo:targetAirport are dbo:place in res:California,_Cincinnati res:United_States?", "SELECT DISTINCT ?uri WHERE { ?uri a dbo:Airport { ?uri dbo:location res:California } UNION { ?uri dbo:city res:California } UNION { ?uri dbo:city ?city . ?city dbo:isPartOf res:California } UNION { ?uri dbo:operator res:California } }" +"What are the dbo:mascot of res:San_Francisco?", "SELECT DISTINCT ?string WHERE { res:San_Francisco foaf:nick ?string }" +"What is res:Name_at_birth?", "SELECT DISTINCT ?string WHERE { res:Angela_Merkel dbp:birthName ?string }" +"Who is the dbo:mayor of res:Berlin?", "SELECT DISTINCT ?uri WHERE { res:Berlin dbp:leader ?uri }" +"Which res:Countries_of_the_United_Kingdom in the res:Europe?", "SELECT DISTINCT ?uri WHERE { ?uri a dbo:Country { ?uri dbo:currency res:Euro } UNION { ?uri dbp:currencyCode "EUR"@en } }" +"Which res:Software has been dbo:publisher by res:Mean_Hamster_Software?", "SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Software { ?uri prop:publisher "Mean Hamster Software"@en } UNION { ?uri onto:publisher res:Mean_Hamster_Software } }" +"Which dbo:country was res:Bill_Gates dbo:birthPlace in?", "SELECT DISTINCT ?country WHERE { { dbr:Bill_Gates dbo:birthPlace ?birthPlace . ?birthPlace dbo:country ?country } UNION { dbr:Bill_Gates dbo:birthPlace ?birthPlace . ?birthPlace dbo:isPartOf ?place . ?place dbo:country ?country } }" +"How many dbo:child did res:Jacques_Cousteau have?", "SELECT COUNT( DISTINCT ?y AS ?y) WHERE { res:Jacques_Cousteau dbo:child ?x . ?x dbo:child ?y . }" +"Give me all dbo:occupation from res:Sweden.", "SELECT DISTINCT ?uri WHERE { ?uri dbo:occupation dbr:Skateboarder { ?uri dbo:birthPlace dbr:Sweden } UNION { ?uri dbo:birthPlace ?place . ?place dbo:country dbr:Sweden } }" +"Which dbo:leader of the res:United_Kingdom were dbo:spouse to a res:Germany?", "SELECT DISTINCT ?uri WHERE { ?uri rdf:type yago:WikicatMonarchsOfTheUnitedKingdom ; dbo:spouse ?spouse . ?spouse dbo:birthPlace res:Germany }" +"Give me all res:Argentina.", "SELECT DISTINCT ?uri WHERE { { ?uri rdf:type yago:ArgentineFilms } UNION { ?uri rdf:type dbo:Film { ?uri dbo:country res:Argentina } UNION { ?uri dbp:country "Argentina"@en } } }" +"How did res:Michael_Jackson dbo:deathDate?", "SELECT DISTINCT ?s WHERE { res:Michael_Jackson dbp:deathCause ?s }" +"Which U.S. state has been dbp:known latest?", "SELECT DISTINCT ?uri WHERE { ?uri dct:subject dbc:States_of_the_United_States ; dbp:admittancedate ?x } ORDER BY DESC(?x) LIMIT 1" +"Which dbo:classes does the res:Millipede dbo:date to?", "SELECT DISTINCT ?String WHERE { res:Millipede dbp:taxon ?String }" +"Give me the homepage of res:Forbes.", "SELECT DISTINCT ?string WHERE { res:Forbes foaf:homepage ?string }" +"Who is the dbo:spouse of res:Amanda_Palmer?", "SELECT DISTINCT ?uri WHERE { ?uri dbo:spouse res:Amanda_Palmer }" +"Who dbp:artist res:The_Storm_on_the_Sea_of_Galilee?", "SELECT DISTINCT ?uri WHERE { res:The_Storm_on_the_Sea_of_Galilee dbo:author ?uri }" +"What is the dbo:elevation of res:Karakoram?", "SELECT DISTINCT ?uri WHERE { res:Karakoram dbp:highest ?uri }" +"When did res:Join res:Basque_language?", "SELECT DISTINCT ?date WHERE { res:Finland dbp:accessioneudate ?date }" +"Which dbo:background dbo:starring in res:The_Big_Bang_Theory?", "SELECT DISTINCT ?uri WHERE { res:The_Big_Bang_Theory dbo:starring ?uri }" +"Which res:Computer_scientist dbo:award an res:Oscar?", "SELECT DISTINCT ?uri WHERE { ?uri dbo:field res:Computer_science ; dbo:award res:Academy_Award }" +"Who dbp:author res:Harry_Potter?", "SELECT DISTINCT ?uri WHERE { res:Harry_Potter dbp:author ?uri }" +"Give me all dbo:writer that dbo:award the res:Nobel_Prize in res:Literature.", "SELECT DISTINCT ?uri WHERE { ?uri a dbo:Writer ; dbo:award res:Nobel_Prize_in_Literature }" +"Give me res:The_Actors dbo:starring in res:Lovesick_(Priscilla_Renea_song).", "SELECT DISTINCT ?uri WHERE { res:Lovesick_(1983_film) dbo:starring ?uri . ?uri dbo:birthPlace ?city . ?city dbo:country res:United_Kingdom }" +"What is the dbo:address of res:Baghdad?", "SELECT ?nm WHERE { dbr:Baghdad foaf:nick ?nm }" +"In which dbo:city was the dbo:president of res:Montenegro dbo:birthPlace?", "SELECT DISTINCT ?uri WHERE { ?x dbp:title dbr:President_of_Montenegro ; dbo:birthPlace ?uri . ?uri dbo:type dbr:Capital_city }" +"Which U.S. state has the res:Population_density?", "SELECT ?uri WHERE { ?uri dbo:country res:United_States . ?uri dbo:capital ?capital . ?uri dbp:densityrank ?density . OPTIONAL {?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } } ORDER BY ASC(?density) LIMIT 1" +"What is the longest dbo:river in res:China?", "SELECT DISTINCT ?uri WHERE { ?uri a dbo:River ; dbo:country res:China ; dbp:length ?l } ORDER BY DESC(?l) OFFSET 0 LIMIT 1" +"What is the dbo:areaCode of res:Berlin?", "SELECT DISTINCT ?string WHERE { res:Berlin dbo:areaCode ?string }" +"How many res:Scientists_for_Global_Responsibility dbo:effectiveRadiatedPower from an res:Ivy_League?", "SELECT (COUNT( DISTINCT ?uri) AS ?c) WHERE { ?uri a dbo:Scientist ; dbo:almaMater ?university . ?university dbo:affiliation res:Ivy_League ; a dbo:University }" +"Which dbo:specialist were dbo:birthPlace in res:Australia?", "SELECT DISTINCT ?uri WHERE { { ?uri dbo:occupation res:Surfer ; dbo:birthPlace res:Australia } UNION { ?uri dbo:occupation res:Surfer ; dbo:birthPlace ?place . ?place dbo:country res:Australia } }" +"Give me all res:Curaçao.", "SELECT DISTINCT ?uri WHERE { ?uri a dbo:PoliticalParty ; dbo:country res:Netherlands }" +"How many res:7805_Moons does res:Mars have?", "SELECT DISTINCT ?n WHERE { res:Mars dbp:satellites ?n }" +"What is res:Batman's res:Real-name_system?", "SELECT DISTINCT ?label WHERE { res:Batman http://xmlns.com/foaf/0.1/name ?label FILTER ( str(?label) != "Batman" ) }" +"What is res:Elon_Musk for?", "SELECT DISTINCT ?uri WHERE { res:Elon_Musk dbo:knownFor ?uri }" +"Who is the dbo:author of res:WikiLeaks?", "SELECT ?uri WHERE { res:WikiLeaks onto:author ?uri }" +"Sean Parnell was the dbo:governor of which U.S. state?", "SELECT DISTINCT ?uri WHERE { res:Sean_Parnell dbo:region ?uri }" +"How many years was the res:Ford_Model_48 res:T dbo:manufacturer?", "SELECT ?years WHERE { res:Ford_Model_T dbo:productionEndYear ?end ; dbo:productionStartYear ?start. BIND ( ( year(xsd:date(?end)) - year(xsd:date(?start)) ) AS ?years) }" +"When was res:Carlo_Giuliani,_Boy dbo:discharge?", "SELECT DISTINCT xsd:date(?date) WHERE { res:Death_of_Carlo_Giuliani dbo:deathDate ?date }" +"Give me all dbo:animal that are dbo:quote.", "SELECT DISTINCT ?uri WHERE { ?uri a dbo:Animal ; dbo:conservationStatus "EX" }" +"Who was the dbo:spouse of res:USS_President_Lincoln_(1907)?", "SELECT ?uri ?string WHERE { dbr:Abraham_Lincoln onto:spouse ?uri }" +"How many dbp:awards has res:Bertrand_Russell?", "SELECT (COUNT( ?Awards) AS ?Counter) WHERE { dbr:Bertrand_Russell dbp:awards ?Awards }" +"Is res:Pamela_Anderson a res:Vegan_Virgin_Valentine?", "ASK WHERE { dbr:Pamela_Anderson a yago:WikicatAmericanVegans }" +"Which dbo:area were sent into dbo:course around the dbo:year?", "SELECT DISTINCT ?s WHERE { ?s dct:subject dbc:Missions_to_the_Sun ; rdf:type ?type FILTER ( ?type IN (dbo:Satellite, dbo:ArtificialSatellite) ) }" +"Which res:Germany have more than res:Population?", "SELECT DISTINCT ?uri WHERE { { ?uri a dbo:City } UNION { ?uri a dbo:Town } ?uri dbo:country res:Germany ; dbo:populationTotal ?population FILTER ( ?population 250000 ) }" +"Who is the dbo:child of res:Robert_F._Kennedy dbp:spouse to?", "SELECT DISTINCT ?uri WHERE { res:Robert_F._Kennedy dbo:child ?child . ?child dbo:spouse ?uri }" +"How many dbo:numberOfStudents does the res:Vrije_Universiteit_Amsterdam have?", "SELECT DISTINCT ?num WHERE { dbr:Vrije_Universiteit_Amsterdam dbo:numberOfStudents ?num }" +"What is the dbo:revenue of res:IBM?", "SELECT ?number WHERE { res:IBM onto:revenue ?number }" +"How many res:M_(James_Bond) do dbp:last?", "SELECT (COUNT( DISTINCT ?uri) AS ?c) WHERE { ?uri dct:subject res:Category:James_Bond_films }" +"Who does the dbo:voice of res:Bart_Simpson?", "SELECT DISTINCT ?uri WHERE { res:Bart_Simpson dbp:voiceactor ?uri }" +"Who was res:Tom_Hanks dbp:spouse to?", "SELECT DISTINCT ?uri WHERE { dbr:Tom_Hanks dbo:spouse ?uri }" +"Through which res:Countries_of_the_United_Kingdom does the res:Yenisei_River?", "SELECT DISTINCT ?uri WHERE { res:Yenisei_River dbo:country ?uri }" +"Give me all dbo:management that are dbo:author in res:Germany.", "SELECT DISTINCT ?uri WHERE { ?uri a dbo:Automobile { ?uri dbo:assembly res:Germany } UNION { ?uri dbp:assembly res:Germany } UNION { { ?uri dbo:manufacturer ?x } UNION { ?uri dbp:manufacturer ?x } { ?x dbo:locationCountry res:Germany } UNION { ?x dbo:location res:Germany } } }" +"When did res:Michael_Jackson dbo:deathDate?", "SELECT DISTINCT ?date WHERE { res:Michael_Jackson dbo:deathDate ?date }" +"What is the dbo:head in res:Africa?", "SELECT DISTINCT ?uri WHERE { ?uri a dbo:Volcano ; dbo:locatedInArea ?area . ?area dct:subject dbc:Countries_in_Africa . ?uri dbo:elevation ?elevation } ORDER BY DESC(?elevation) LIMIT 1" +"Which dbo:author dbo:composer the most dbo:volume?", "SELECT DISTINCT ?uri WHERE { ?uri dbo:occupation res:Poet . ?x dbo:author ?uri . ?x rdf:type dbo:Book . } ORDER BY DESC(COUNT( ?x)) OFFSET 0 LIMIT 1" +"Give me all gangsters from the dbo:time.", "SELECT DISTINCT ?uri WHERE { ?uri dbo:occupation dbr:Gangster ; dct:subject dbc:Prohibition-era_gangsters }" +"Give me all res:Spacecraft that dbo:circulation to res:Mars.", "SELECT DISTINCT ?s WHERE { ?s dct:subject dbc:Mars_rovers ; rdf:type ?type FILTER ( ?type IN (dbo:Satellite, dbo:ArtificialSatellite) ) }" +"Show me all res:Czech_Republic.", "SELECT DISTINCT ?uri WHERE { ?uri a dbo:Film ; dbo:country res:Czech_Republic }" +"Give me all taikonauts.", "SELECT DISTINCT ?uri WHERE { { ?uri a dbo:Astronaut ; dbo:nationality res:People's_Republic_of_China } UNION { ?uri a dbo:Astronaut ; dbo:nationality res:China } }" +"Which res:Countries_of_the_United_Kingdom have more than ten res:Volcanoes_National_Park?", "SELECT DISTINCT ?uri WHERE { ?x a dbo:Volcano ; dbo:locatedInArea ?uri . ?uri a dbo:Country } GROUP BY ?uri HAVING ( COUNT( ?x) 10 )" +"Give me all dbo:film with res:Tom_Cruise.", "SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Film { ?uri prop:starring res:Tom_Cruise } UNION { ?uri onto:starring res:Tom_Cruise } OPTIONAL { ?uri rdfs:label ?string FILTER ( lang(?string) = "en" ) } }" +"When did res:Count_Dracula's dbp:producer dbo:deathDate?", "SELECT DISTINCT xsd:date(?date) WHERE { res:Count_Dracula dbo:creator ?x . ?x dbo:deathDate ?date. }" +"Who dbo:author res:English_Wikipedia?", "SELECT ?uri WHERE { res:Wikipedia onto:author ?uri }" +"Give me all res:List_of_German_female_artists.", "SELECT DISTINCT ?uri WHERE { res:Chancellor_of_Germany dbp:incumbent ?uri }" +"Who dbo:family res:Aldi?", "SELECT DISTINCT ?uri WHERE { res:Aldi dbp:founders ?uri }" +"Which dbo:volume were dbo:writer by res:Danielle_Steel?", "SELECT ?uri WHERE { ?uri rdf:type onto:Book ; onto:author res:Danielle_Steel }" +"Who was dbo:influenced by res:Socrates?", "SELECT DISTINCT ?uri WHERE { ?uri dbo:influencedBy res:Socrates }" +"How dbo:capital is res:Chiemsee?", "SELECT DISTINCT ?n WHERE { res:Chiemsee dbo:maximumDepth ?n }" +"Which res:Companies_listed_on_the_New_York_Stock_Exchange_(J) dbo:service in the dbp:industry as well as in res:Medicine?", "SELECT DISTINCT ?uri WHERE { ?uri a dbo:Company ; dbo:industry dbr:Aerospace ; dbo:industry dbr:Medical }" +"Which dbp:authority were dbo:birthPlace on the res:Philippines?", "SELECT DISTINCT ?uri WHERE { ?uri dbo:occupation dbr:Surfer ; dbo:birthPlace res:Philippines }" +"Who were the dbo:parent of res:Queen_Victoria?", "SELECT DISTINCT ?uri WHERE { res:Queen_Victoria dbo:parent ?uri }" +"Are there any dbo:class in the res:United_States?", "ASK WHERE { ?uri dct:subject dbc:Castles_in_the_United_States }" +"Which dbo:language are dbo:spokenIn in res:Estonia?", "SELECT DISTINCT ?uri WHERE { ?uri dbo:spokenIn res:Estonia }" +"Give me a list of all dbo:principal endangered dbo:date.", "SELECT DISTINCT ?uri ?p WHERE { ?uri rdf:type dbo:Bird { ?uri dbo:conservationStatus "CR" } UNION { ?uri dct:subject dbc:Critically_endangered_animals } }" +"Which res:Countries_of_the_United_Kingdom are dbo:related by the res:Rhine?", "SELECT DISTINCT ?uri WHERE { {res:Rhine dbo:country ?uri } UNION {dbr:Rhine dbp:country ?uri} }" +"Who was the dbo:parent of res:Elizabeth_II?", "SELECT DISTINCT * WHERE { res:Elizabeth_II dbo:parent ?uri . ?uri http://xmlns.com/foaf/0.1/gender "male"@en }" +"Give me all res:Sand_casting.", "SELECT DISTINCT ?uri WHERE { ?uri rdf:type owl:Thing ; dct:subject dbc:Chemical_elements }" +"Give me all res:Organization_of_American_States of the last res:20 years.", "SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Person ; dct:subject dbc:Presidents_of_the_United_States ; dbo:activeYearsEndDate ?termEnd FILTER ( ( year(now()) - year(?termEnd) ) = 20 ) }" +"When is the res:Worst-case_scenario going to be in dbo:picture in the res:Netherlands?", "SELECT DISTINCT ?rel WHERE { res:Worst_Case_Scenario_(film) ?p ?o ; dbo:releaseDate ?rel FILTER contains(lcase(str(?o)), "netherlands") }" +"Whom did res:Lance_Bass dbo:spouse?", "SELECT DISTINCT ?uri WHERE { {res:Lance_Bass dbo:spouse ?uri} UNION {?uri dbo:spouse res:Lance_Bass} }" +"Which dbo:subsidiary of TUI Travel dbo:order both res:Glasgow_Airport and res:Dublin_Airport?", "SELECT DISTINCT ?uri WHERE { res:TUI_Travel dbo:subsidiary ?uri . ?uri dbo:targetAirport res:Glasgow_International_Airport ; dbo:targetAirport res:Dublin_Airport }" +"What dbo:language are dbo:spokenIn in res:Pakistan?", "SELECT DISTINCT ?uri WHERE { res:Pakistan dbo:language ?uri }" +"Who is the dbo:child of res:Bill_Clinton dbo:spouse to?", "SELECT DISTINCT ?uri WHERE { dbr:Bill_Clinton dbo:child ?child . ?child dbo:spouse ?uri . ?uri rdfs:label ?string }" +"Who was on the res:Apollo_11?", "SELECT DISTINCT ?uri WHERE { res:Apollo_11 dbp:crewMembers ?uri }" +"What is the dbo:wavelength of res:Indigo?", "SELECT ?n WHERE { dbr:Indigo dbo:wavelength ?n }" +"Give me all res:The_B-Sides.", "SELECT DISTINCT ?string WHERE { ?x dbo:musicalArtist res:Ramones ; dbo:bSide ?string }" +"Who was dbo:alias res:Scarface?", "SELECT ?uri WHERE { ?uri dbo:alias ?alias FILTER contains(lcase(?alias), "scarface") }" +"Which dbo:operator dbp:float into the res:North_Sea?", "SELECT DISTINCT ?uri WHERE { ?uri a dbo:River ; dbo:riverMouth res:North_Sea }" +"Where is res:Fort_Knox dbp:location?", "SELECT DISTINCT ?uri WHERE { res:Fort_Knox dbo:location ?uri. ?uri a dbo:Place. }" +"Which res:Daughters_of_the_Dust of res:United_Kingdom dbp:deathPlace at the same dbo:place they were dbo:birthPlace at?", "SELECT DISTINCT ?uri WHERE { ?uri rdf:type yago:WikicatDaughtersOfBritishEarls ; dbo:birthPlace ?x ; dbo:deathPlace ?y FILTER ( ?x = ?y ) }" +"How many dbo:leader did res:China have?", "SELECT COUNT( DISTINCT ?uri AS ?uri) WHERE { ?uri dbp:title res:Emperor_of_China . }" +"What are the dbo:athletics of the res:Teenage_Mutant_Ninja_Turtles?", "SELECT DISTINCT ?s WHERE { res:Teenage_Mutant_Ninja_Turtles dbp:members ?x . ?x foaf:givenName ?s }" +"Where does res:Piccadilly dbo:routeStart?", "SELECT DISTINCT ?uri WHERE { ?uri dbo:routeStart res:Piccadilly }" +"What is the dbp:name of the dbo:university where res:University_of_Alabama's dbp:spouse dbo:office?", "SELECT DISTINCT ?s WHERE { res:Barack_Obama dbo:spouse ?x . ?x dbo:almaMater ?s }" +"When did res:Paraguay dbo:state its res:Independence?", "SELECT DISTINCT ?date WHERE { res:Paraguay dbo:foundingDate ?date }" +"How dbo:thumbnail is the dbo:thumbnailest active res:National_Basketball_Association player?", "SELECT DISTINCT ?n WHERE { ?x a dbo:BasketballPlayer ; dbo:league res:National_Basketball_Association ; dbo:height ?n FILTER NOT EXISTS { ?x dbo:activeYearsEndYear ?d } } ORDER BY ASC(?n) OFFSET 0 LIMIT 1" +"Where did res:Abraham_Lincoln dbo:deathDate?", "SELECT DISTINCT ?uri WHERE { res:Abraham_Lincoln dbo:deathPlace ?uri }" +"When was res:Jack_Wolfskin dbo:foundingYear?", "SELECT DISTINCT xsd:date(?year) WHERE { res:Jack_Wolfskin dbo:foundingYear ?year }" +"In which dbo:city is the dbo:headquarter of res:Air_China?", "SELECT DISTINCT ?uri WHERE { res:Air_China dbo:headquarter ?uri . ?uri a yago:City108524735 }" +"What is the dbo:foundingYear year of the dbo:manufacturer that dbo:manufacturer res:Pilsner_Urquell?", "SELECT DISTINCT xsd:date(?num) WHERE { res:Pilsner_Urquell dbp:brewery ?uri . ?uri dbo:foundingYear ?num }" +"When did the res:Boston_Tea_Party take dbo:place?", "SELECT DISTINCT ?d WHERE { res:Boston_Tea_Party dbp:date ?d }" +"Which dbo:animal are dbo:principal endangered?", "SELECT DISTINCT ?uri WHERE { ?uri a dbo:Animal ; dbo:conservationStatus "CR" }" +"Which res:Politicians_of_The_Wire were dbo:spouse to a res:Germany?", "SELECT DISTINCT ?uri WHERE { ?uri a dbo:Politician ; dbo:spouse ?spouse { ?spouse dbo:birthPlace res:Germany } UNION { ?spouse dbo:birthPlace ?p . ?p dbo:country res:Germany } }" +"How big is the dbo:ground's dbo:diameter?", "SELECT DISTINCT (( xsd:double(?radius) * 2 ) AS ?diameter) WHERE { res:Earth dbo:meanRadius ?radius }" +"Is the dbp:spouse of President res:Barack_Obama dbo:guest Michelle?", "ASK WHERE { res:Barack_Obama onto:spouse ?spouse . ?spouse rdfs:label ?name FILTER regex(?name, "Michelle") }" +"Which U.S. state has the dbo:abbreviation res:MN?", "SELECT DISTINCT ?uri WHERE { ?uri a yago:WikicatStatesOfTheUnitedStates ; dbp:postalabbreviation "MN"^^rdf:langString }" +"When did res:Muhammad dbo:deathDate?", "SELECT DISTINCT xsd:date(?date) WHERE { res:Muhammad dbo:deathDate ?date }" +"What is the dbp:background of the res:Moon dbo:musicComposer of?", "SELECT DISTINCT ?uri WHERE { res:Moon dbp:atmosphereComposition ?uri }" +"Who is the dbo:governor of res:Texas?", "SELECT DISTINCT ?string WHERE { res:Texas dbp:governor ?string }" +"Which dbo:film did res:Akira_Kurosawa dbo:director?", "SELECT ?uri WHERE { ?uri rdf:type dbo:Film ; dbo:director res:Akira_Kurosawa }" +"What was the dbp:name of the dbo:motto in res:1836 in res:San_Antonio?", "SELECT ?uri WHERE { ?uri a dbo:MilitaryConflict ; dbo:place dbr:San_Antonio ; dbo:date ?date FILTER ( ?date "1835-12-31T00:00:00Z"^^xsd:dateTime ) FILTER ( ?date = "1836-12-31T00:00:00Z"^^xsd:dateTime ) }" +"Give me the dbo:officialLanguage of dbo:background of the res:Charmed.", "SELECT DISTINCT ?uri WHERE { res:Charmed onto:starring ?actors . ?actors foaf:homepage ?uri }" +"How many dbp:calories does a res:Baguette have?", "SELECT DISTINCT ?n WHERE { res:Baguette dbp:calories ?n }" +"Give me all res:Libraries_in_Brighton_and_Hove dbo:established before res:1400.", "SELECT DISTINCT ?uri WHERE { ?uri a dbo:Library ; dbp:established ?year FILTER ( ?year 1400 ) }" +"Give me all res:Frisian_Islands that dbp:rank to the res:Netherlands_Antilles_at_the_2007_Pan_American_Games.", "SELECT DISTINCT ?uri WHERE { ?uri rdf:type yago:WikicatFrisianIslands ; dbo:country res:Netherlands }" +"Which dbo:museum dbo:sport res:The_Scream?", "SELECT DISTINCT ?uri WHERE { res:The_Scream dbo:museum ?uri }" +"When was the res:De_Beers dbo:foundedBy?", "SELECT DISTINCT xsd:date(?date) WHERE { res:De_Beers dbo:foundingYear ?date }" +"Who became dbo:president after res:John_F._Kennedy dbo:deathDate?", "SELECT DISTINCT ?uri WHERE { res:John_F._Kennedy dbp:presidentEnd ?x . ?uri dbp:presidentStart ?x; a dbo:Person. }" +"Who are the dbo:parent of the dbo:spouse of res:Juan_Carlos_I_of_Spain res:I?", "SELECT DISTINCT ?uri WHERE { res:Juan_Carlos_I_of_Spain dbo:spouse ?x . ?x dbo:parent ?uri }" +"Who is the dbo:author of the dbo:service a dbo:anthem of dbo:frozen and fire?", "SELECT ?Novelist WHERE { dbr:A_Song_of_Ice_and_Fire dbp:author ?Novelist }" +"In which dbp:studio did the res:Beatles_VI dbo:recordLabel their first dbo:album?", "SELECT ?studio WHERE { ?album dbo:artist dbr:The_Beatles ; rdf:type dbo:Album ; dbo:releaseDate ?date ; dbp:studio ?studio } ORDER BY ASC(?date) LIMIT 1" +"Which res:Museum_of_Beer_and_Brewing are dbp:stand in res:North_Rhine-Westphalia?", "SELECT ?company WHERE { ?company dct:subject dbc:Companies_based_in_North_Rhine-Westphalia ; rdf:type dbo:Brewery }" +"When did res:Diana,_Princess_of_Wales dbo:deathDate?", "SELECT DISTINCT xsd:date(?d) WHERE { res:Diana,_Princess_of_Wales dbo:deathDate ?d }" +"Who dbo:foundingYear res:Intel?", "SELECT DISTINCT ?uri WHERE { res:Intel dbp:founders ?uri }" +"Who is the youngest dbo:participant in the res:Premier_League?", "SELECT DISTINCT ?uri WHERE { ?uri dbo:team ?team . ?league dbo:league res:Premier_League . ?league dbo:team ?team . ?uri dbo:birthDate ?date } ORDER BY DESC(?date) LIMIT 1" +"Which dbp:instrument does res:Cat_Stevens dbo:starring?", "SELECT DISTINCT ?uri WHERE { res:Cat_Stevens dbo:instrument ?uri }" +"How many dbo:river and dbo:lake are in res:South_Carolina?", "SELECT (COUNT( DISTINCT ?uri) AS ?count) WHERE { { ?uri dbo:location dbr:South_Carolina ; rdf:type dbo:Lake } UNION { ?uri dct:subject dbc:Rivers_and_streams_of_South_Carolina } }" +"Who was dbo:alias res:Rodzilla?", "SELECT DISTINCT ?uri WHERE { ?uri http://xmlns.com/foaf/0.1/nick "Rodzilla"@en }" +"Give me the dbo:principal of all res:Countries_of_the_United_Kingdom in res:Africa.", "SELECT DISTINCT ?uri WHERE { ?country dct:subject dbc:Countries_in_Africa ; dbo:capital ?uri }" +"Which dbo:abstract are of the same dbo:type as the res:Manhattan_Bridge?", "SELECT DISTINCT ?bridge WHERE { dbr:Manhattan_Bridge dbo:type ?type . ?bridge dbo:type ?type ; rdf:type dbo:Bridge }" +"How many res:Companies_listed_on_the_New_York_Stock_Exchange_(J) were dbo:foundingYear by the dbo:founder of res:Facebook?", "SELECT (COUNT( DISTINCT ?x) AS ?c) WHERE { res:Facebook dbo:foundedBy ?uri . ?x dbo:foundedBy ?uri }" +"Show me res:Hiking in the res:Grand_Canyon where there's no dbo:leader of dbo:band.", "SELECT DISTINCT ?uri WHERE { ?uri dbp:trailheads res:Grand_Canyon FILTER NOT EXISTS { ?uri dbp:hazards res:Flash_flood } }" +"Which dbo:volume has the most pages?", "SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Book ; dbo:numberOfPages ?n } ORDER BY DESC(?n) OFFSET 0 LIMIT 1" +"What is the dbo:areaTotal state in the res:United_States?", "SELECT ?uri WHERE { ?uri dct:subject dbc:States_of_the_United_States ; rdf:type dbo:AdministrativeRegion ; dbo:areaTotal ?area } ORDER BY DESC(?area) OFFSET 0 LIMIT 1" +"Give me the res:Websites_blocked_in_Pakistan of res:Companies_listed_on_the_New_York_Stock_Exchange_(J) with more than dbo:numberOfEmployees.", "SELECT distinct ?web WHERE { ?sub dbo:numberOfEmployees ?obj . ?sub foaf:homepage ?web FILTER( xsd:integer(?obj) 500000 ) . }" +"What were the dbo:title of the three dbo:shipBeam by res:Columbus?", "SELECT ?uri WHERE { ?uri rdf:type dbo:Ship ; dct:subject dbc:Christopher_Columbus ; dct:subject dbc:Exploration_ships }" diff --git a/data/qald-9-test-linked.json b/data/qald-9-test-linked.json index 5bfc4477efc3f170e5001a5fc75034aaff21d2be..b2c2f9201a4957860611ff8ce19bacd2dc09436f 100644 --- a/data/qald-9-test-linked.json +++ b/data/qald-9-test-linked.json @@ -1 +1,32926 @@ -{"dataset": {"id": "qald-9-test-multilingual"}, "questions": [{"id": "99", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "What is the time zone of Salt Lake City?", "keywords": "Salt Lake City, time zone"}], "query": {"sparql": "PREFIX res: <http://dbpedia.org/resource/> PREFIX dbp: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Salt_Lake_City <http://dbpedia.org/ontology/timeZone> ?uri }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mountain_Time_Zone"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Salt_Lake_City", "surface form": "Salt Lake City"}], "relations": [{"URI": "http://dbpedia.org/ontology/timeZone", "surface form": "time zone"}]}, {"id": "98", "answertype": "resource", "aggregation": false, "onlydbo": false, "hybrid": false, "question": [{"language": "en", "string": "Who killed Caesar?", "keywords": "who , killed, Caesar"}], "query": {"sparql": "PREFIX dct: <http://purl.org/dc/terms/> PREFIX dbc: <http://dbpedia.org/resource/Category:> SELECT DISTINCT ?uri WHERE { ?uri dct:subject dbc:Assassins_of_Julius_Caesar }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Marcus_Junius_Brutus_the_Younger"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gaius_Cassius_Parmensis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lucius_Minucius_Basilus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gaius_Cassius_Longinus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Decimus_Junius_Brutus_Albinus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Servilius_Casca"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tillius_Cimber"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lucius_Cornelius_Cinna_(suffect_consul)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Quintus_Antistius_Labeo"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Caesar_(game)", "surface form": "Caesar"}], "relations": [{"URI": "http://dbpedia.org/ontology/billed", "surface form": "killed"}]}, {"id": "86", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "What is the highest mountain in Germany?", "keywords": "highest, mountain, germany"}], "query": {"sparql": "PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT ?uri WHERE { ?uri rdf:type onto:Mountain ; onto:elevation ?elevation ; onto:locatedInArea <http://dbpedia.org/resource/Germany> } ORDER BY DESC(?elevation) LIMIT 1"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Zugspitze"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Germany", "surface form": "Germany"}], "relations": [{"URI": "http://dbpedia.org/ontology/elevation", "surface form": "highest mountain"}]}, {"id": "84", "answertype": "resource", "aggregation": false, "onlydbo": false, "hybrid": false, "question": [{"language": "en", "string": "Which American presidents were in office during the Vietnam War?", "keywords": "American presidents, office, Vietnam War"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX dct: <http://purl.org/dc/terms/> PREFIX dbc: <http://dbpedia.org/resource/Category:> SELECT ?uri WHERE { ?uri dct:subject dbc:Presidents_of_the_United_States . res:Vietnam_War dbo:commander ?uri }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/John_F._Kennedy"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lyndon_B._Johnson"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Richard_Nixon"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Organization_of_American_States", "surface form": "American presidents"}, {"URI": "http://dbpedia.org/resource/Abimael_Guzm\u00e1n", "surface form": "American presidents"}, {"URI": "http://dbpedia.org/resource/Vietnam_War", "surface form": "Vietnam War"}], "relations": [{"URI": "http://dbpedia.org/ontology/office", "surface form": "office"}, {"URI": "http://dbpedia.org/ontology/country", "surface form": ""}]}, {"id": "81", "answertype": "resource", "aggregation": false, "onlydbo": false, "hybrid": false, "question": [{"language": "en", "string": "Butch Otter is the governor of which U.S. state?", "keywords": "U.S. state, governor, Butch Otter"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/class/yago/WikicatStatesOfTheUnitedStates> ; <http://dbpedia.org/property/governor> <http://dbpedia.org/resource/Butch_Otter> }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Idaho"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Butch_Otter", "surface form": "butch Otter"}, {"URI": "http://dbpedia.org/resource/United_States", "surface form": "US"}], "relations": [{"URI": "http://dbpedia.org/ontology/governor", "surface form": "governor"}]}, {"id": "73", "answertype": "number", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "How many gold medals did Michael Phelps win at the 2008 Olympics?", "keywords": "Michael Phelps, gold medals, 2008 Olpympics"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> SELECT Count(?sub) as ?c WHERE { ?sub dbo:goldMedalist dbr:Michael_Phelps . filter (contains (str(?sub), \"2008\") && contains (str(?sub), \"Olympics\")) }"}, "answers": [{"head": {"vars": ["c"]}, "results": {"bindings": [{"c": {"type": "literal", "value": "8"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Michael_Phelps", "surface form": "Michael Phelps"}, {"URI": "http://dbpedia.org/resource/2008_Summer_Olympics", "surface form": "2008 Olympics"}], "relations": [{"URI": "http://dbpedia.org/ontology/goldMedalist", "surface form": "gold medals"}, {"URI": "http://dbpedia.org/ontology/award", "surface form": "win"}]}, {"id": "66", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Which artists were born on the same date as Rachel Stevens?", "keywords": "artist, born same date, Rachel Stevens"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { ?uri a dbo:Artist . dbr:Rachel_Stevens dbo:birthDate ?birthdate . ?uri dbo:birthDate ?birthdate }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gizem_Saka"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cameron_Cartio"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vesna_Pisarovi\u0107"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Rachel_Stevens", "surface form": "Rachel Stevens"}], "relations": [{"URI": "http://dbpedia.org/property/artist", "surface form": "artists"}, {"URI": "http://dbpedia.org/ontology/birthPlace", "surface form": "born"}]}, {"id": "64", "answertype": "string", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "What is the profession of Frank Herbert?", "keywords": "profession, frank, herbert"}], "query": {"sparql": "PREFIX dbpedia2: <http://dbpedia.org/property/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?string WHERE { res:Frank_Herbert dbpedia2:occupation ?string }"}, "answers": [{"head": {"vars": ["string"]}, "results": {"bindings": [{"string": {"type": "literal", "value": "Novelist"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Frank_Herbert", "surface form": "Frank Herbert"}], "relations": [{"URI": "http://dbpedia.org/ontology/profession", "surface form": "profession"}]}, {"id": "6", "answertype": "boolean", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Are Taiko some kind of Japanese musical instrument?", "keywords": "Taiko, some kind of, Japanese musical instrument"}], "query": {"sparql": "ASK WHERE { <http://dbpedia.org/resource/Taiko> a <http://dbpedia.org/class/yago/WikicatJapaneseMusicalInstruments> }"}, "answers": [{"head": {}, "results": {}, "boolean": true}], "entities": [{"URI": "http://dbpedia.org/resource/Taiko", "surface form": "Taiko"}, {"URI": "http://dbpedia.org/resource/Japan", "surface form": "Japanese musical instrument"}, {"URI": "http://dbpedia.org/resource/Musical_instrument", "surface form": "Japanese musical instrument"}], "relations": [{"URI": "http://dbpedia.org/ontology/country", "surface form": ""}]}, {"id": "56", "answertype": "number", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "How many seats does the home stadium of FC Porto have?", "keywords": "How many seats, stadium of FC Porto"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbp: <http://dbpedia.org/property/> PREFIX dbr: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> PREFIX db: <http://dbpedia.org/> SELECT ?capacity WHERE { { dbr:FC_Porto dbo:ground ?ground . ?ground dbo:capacity ?capacity } UNION { dbr:FC_Porto dbo:ground ?ground . ?ground dbp:capacity ?capacity } }"}, "answers": [{"head": {"vars": ["c"]}, "results": {"bindings": [{"c": {"type": "literal", "value": "52000"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/FC_Porto", "surface form": "stadium of FC Porto"}], "relations": [{"URI": "http://dbpedia.org/property/seat", "surface form": "seats"}, {"URI": "http://dbpedia.org/ontology/ground", "surface form": "home stadium"}]}, {"id": "49", "answertype": "resource", "aggregation": true, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Which frequent flyer program has the most airlines?", "keywords": "frequent flyer program, most airlines"}], "query": {"sparql": "SELECT ?uri WHERE { ?airline <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Airline> . ?airline <http://dbpedia.org/property/frequentFlyer> ?uri. } GROUP BY ?uri ORDER BY DESC(COUNT(DISTINCT ?airline)) OFFSET 0 LIMIT 1"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Miles_&_More"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Frequent-flyer_program", "surface form": "frequent flyer program"}], "relations": [{"URI": "http://dbpedia.org/ontology/icaoAirlineCode", "surface form": "airlines"}]}, {"id": "44", "answertype": "resource", "aggregation": false, "onlydbo": false, "hybrid": false, "question": [{"language": "en", "string": "Which European countries have a constitutional monarchy?", "keywords": "European country, constitutional monarchy"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dct: <http://purl.org/dc/terms/> PREFIX dbc: <http://dbpedia.org/resource/Category:> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?uri WHERE { ?uri dct:subject dbc:Countries_in_Europe ; dbo:governmentType dbr:Constitutional_monarchy }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sweden"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Liechtenstein"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Belgium"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Denmark"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Europe", "surface form": "European countries"}, {"URI": "http://dbpedia.org/resource/List_of_fictional_European_countries", "surface form": "European countries"}, {"URI": "http://dbpedia.org/resource/Constitutional_monarchy", "surface form": "constitutional monarchy"}], "relations": [{"URI": "http://dbpedia.org/ontology/country", "surface form": ""}]}, {"id": "42", "answertype": "resource", "aggregation": true, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Which countries have places with more than two caves?", "keywords": "country, place, cave, more than two"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?cave rdf:type dbo:Cave ; dbo:location ?uri . ?uri rdf:type dbo:Country } GROUP BY ?uri HAVING ( COUNT(?cave) > 2 )"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/India"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Philippines"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Japan"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Greece"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Spain"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Turkey"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vietnam"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/United_States"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Australia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Italy"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Republic_of_Ireland"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Venezuela"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mexico"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Georgia_(country)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Austria"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Germany"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Slovenia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gibraltar"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Serbia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/France"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Abkhazia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jamaica"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/China"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/South_Africa"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Brazil"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Azerbaijan"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Countries_of_the_United_Kingdom", "surface form": "countries"}, {"URI": "http://dbpedia.org/resource/Caves_of_Aggtelek_Karst_and_Slovak_Karst", "surface form": "caves"}], "relations": [{"URI": "http://dbpedia.org/ontology/place", "surface form": "places"}]}, {"id": "4", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Which airports are located in California, USA?", "keywords": "airport, located, California, USA"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Airport> { ?uri <http://dbpedia.org/ontology/location> <http://dbpedia.org/resource/California> } UNION { ?uri <http://dbpedia.org/ontology/city> <http://dbpedia.org/resource/California> } UNION { ?uri <http://dbpedia.org/ontology/city> ?city . ?city <http://dbpedia.org/ontology/isPartOf> <http://dbpedia.org/resource/California> } UNION { ?uri <http://dbpedia.org/ontology/operator> <http://dbpedia.org/resource/California> } }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alpine_County_Airport"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Buchanan_Field_Airport"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Flabob_Airport"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Banning_Municipal_Airport"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Delano_Municipal_Airport"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lake_Tahoe_Airport"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chowchilla_Airport"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Inyokern_Airport"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tehachapi_Municipal_Airport"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Monterey_Regional_Airport"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Baker_Airport"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/New_Jerusalem_Airport"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Palm_Springs_International_Airport"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lost_Hills_Airport"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/General_William_J._Fox_Airfield"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ontario_International_Airport"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/French_Valley_Airport"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Butte_Valley_Airport"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Eastern_Sierra_Regional_Airport"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kingdon_Airpark"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Adamson_Landing_Field"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tijuana_International_Airport"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/W._R._Byron_Airport"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Scott_Valley_Airport"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Shelter_Cove_Airport"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Santa_Barbara_Municipal_Airport"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Holtville_Airport"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Needles_Airport"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Roy_Williams_Airport"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Corning_Municipal_Airport_(California)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Corona_Municipal_Airport"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gansner_Field"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Eagle_Field_(airport)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fresno_Chandler_Executive_Airport"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rosamond_Skypark"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/San_Bernardino_International_Airport"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chemehuevi_Valley_Airport"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Oakdale_Airport"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Perris_Valley_Airport"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Eureka_Municipal_Airport_(California)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/San_Diego_International_Airport"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Santa_Paula_Airport"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Colusa_County_Airport"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Frazier_Lake_Airpark"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Imperial_County_Airport"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mefford_Field_Airport"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Turlock_Municipal_Airport"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sacramento_Executive_Airport"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Riverside_Municipal_Airport"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Apple_Valley_Airport_(California)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Santa_Ynez_Airport"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Susanville_Municipal_Airport"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Stockton_Metropolitan_Airport"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Poso_Airport"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cloverdale_Municipal_Airport"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mammoth_Yosemite_Airport"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Naval_Outlying_Field_San_Nicolas_Island"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/San_Gabriel_Valley_Airport"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lampson_Field"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bonny_Doon_Village_Airport"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/William_Robert_Johnston_Municipal_Airport"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fall_River_Mills_Airport"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/O'Sullivan_Army_Heliport"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/California_City_Municipal_Airport"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Moffett_Federal_Airfield"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lompoc_Airport"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ukiah_Municipal_Airport"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Merced_Regional_Airport"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Livermore_Municipal_Airport"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Modesto_City\u2013County_Airport"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cameron_Airpark"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alturas_Municipal_Airport"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Santa_Ana_Army_Air_Base"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chiriaco_Summit_Airport"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bryant_Field_(airport)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Weed_Airport"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Shafter_Airport"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Happy_Camp_Airport"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Van_Nuys_Airport"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Haigh_Field_Airport"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Taft_Airport"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pine_Mountain_Lake_Airport"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sacramento_Mather_Airport"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mesa_Del_Rey_Airport"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Paradise_Skypark"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Barstow-Daggett_Airport"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Meadows_Field_Airport"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Firebaugh_Airport"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Los_Angeles_International_Airport"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Weaverville_Airport"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Boonville_Airport_(California)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rogers_Field"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sutter_County_Airport"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Salinas_Municipal_Airport"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Visalia_Municipal_Airport"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Yucca_Valley_Airport"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hayfork_Airport"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chico_Municipal_Airport"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Elk_Grove_Airport"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dinsmore_Airport_(California)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sonoma_Skypark"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Corcoran_Airport"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kern_Valley_Airport"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Del_Norte_County_Airport"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Blythe_Airport"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Borges\u2013Clarksburg_Airport"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fresno_Yosemite_International_Airport"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Angwin\u2013Parrett_Field"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Palo_Alto_Airport"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rio_Vista_Municipal_Airport"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Crystal_Airport_(California)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Woodlake_Airport"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/San_Francisco_International_Airport"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Yolo_County_Airport"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Naval_Air_Weapons_Station_China_Lake"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Oroville_Municipal_Airport"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Amador_County_Airport"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Stanford_Health_Care__Stanford_Hospital__1"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hyampom_Airport"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/John_Wayne_Airport"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Trinity_Center_Airport"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Truckee_Tahoe_Airport"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cedarville_Airport"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hancock_Field_(California)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ocean_Ridge_Airport"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/California_Valley_Airport"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Willits_Municipal_Airport"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fallbrook_Community_Airpark"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nervino_Airport"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bakersfield_Municipal_Airport"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sacramento_International_Airport"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/El_Mirage_Field"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Willows-Glenn_County_Airport"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/New_Cuyama_Airport"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mountain_Valley_Airport"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Trona_Airport"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Southern_California_Logistics_Airport"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Yuba_County_Airport"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Borrego_Valley_Airport"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Exeter_Airport_(California)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Eckert_Field_Airport"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Agua_Caliente_Airport"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Siskiyou_County_Airport"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Placerville_Airport"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Santa_Cruz_Island_Airport"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Healdsburg_Municipal_Airport"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Redding_Municipal_Airport"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Watsonville_Municipal_Airport"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Twentynine_Palms_Airport"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Douthitt_Strip"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Desert_Center_Airport"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Montgomery_Field_Airport"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sierra_Sky_Park_Airport"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Brackett_Field"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Blue_Canyon\u2013Nyack_Airport"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Wasco_Airport"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Independence_Airport"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Elk_Hills-Buttonwillow_Airport"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Inyo_County_Airport"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/California_Pines_Airport"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Georgetown_Airport_(California)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Benton_Field"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hoopa_Airport"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Round_Valley_Airport"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sierraville_Dearwater_Airport"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Garberville_Airport"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cliff_Hatfield_Memorial_Airport"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Oceanside_Municipal_Airport"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Reedley_Municipal_Airport"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pixley_Airport"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Trinidad_State_Beach"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Catalina_Airport"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sequoia_Field_Airport"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Arcata-Eureka_Airport"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hayward_Executive_Airport"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Meadowlark_Airport"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lone_Pine_Airport"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Oxnard_Airport"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ocotillo_Airport"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hemet-Ryan_Airport"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Porterville_Municipal_Airport"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ruth_Airport"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rankin_Field"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Santa_Maria_Public_Airport"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hesperia_Airport"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Salton_Sea_Airport"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Little_River_Airport"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Oceano_County_Airport"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Concord_Naval_Weapons_Station"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tulelake_Municipal_Airport"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/San_Jos\u00e9_International_Airport"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nut_Tree_Airport"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sonny_Bono_Salton_Sea_National_Wildlife_Refuge"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Oakland_International_Airport"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/McClellan_Airfield"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/San_Carlos_Airport_(California)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Brown_Field_Municipal_Airport"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dunsmuir_Municipal-Mott_Airport"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rio_Vista_Airport"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ranchaero_Airport"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Whiteman_Airport"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Adin_Airport"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Madera_Municipal_Airport"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Grey_Butte_Field_Airport"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Palmdale_Regional_Airport"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Auburn_Municipal_Airport_(California)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Brawley_Municipal_Airport"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Calexico_International_Airport"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/United_States", "surface form": "USA"}, {"URI": "http://dbpedia.org/resource/California,_Cincinnati", "surface form": "California,"}], "relations": [{"URI": "http://dbpedia.org/ontology/targetAirport", "surface form": "airports"}, {"URI": "http://dbpedia.org/ontology/place", "surface form": "located"}]}, {"id": "37", "answertype": "string", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "What are the nicknames of San Francisco?", "keywords": "San Francisco, nickname"}], "query": {"sparql": "PREFIX res: <http://dbpedia.org/resource/> PREFIX dbp: <http://dbpedia.org/property/> PREFIX foaf:<http://xmlns.com/foaf/0.1/> SELECT DISTINCT ?string WHERE { res:San_Francisco foaf:nick ?string }"}, "answers": [{"head": {"vars": ["string"]}, "results": {"bindings": [{"string": {"type": "literal", "value": "The City; The City by the Bay; Fog City; San Fran;Frisco (locally disparaged); The City that Knows How (past); Baghdadby the Bay (past); The Paris of the West"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/San_Francisco", "surface form": "San Francisco"}], "relations": [{"URI": "http://dbpedia.org/ontology/mascot", "surface form": "nicknames"}]}, {"id": "32", "answertype": "string", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "What is Angela Merkel\u2019s birth name?", "keywords": "birth name, Angela Merkel"}], "query": {"sparql": "PREFIX res: <http://dbpedia.org/resource/> PREFIX dbp: <http://dbpedia.org/property/> SELECT DISTINCT ?string WHERE { res:Angela_Merkel dbp:birthName ?string }"}, "answers": [{"head": {"vars": ["string"]}, "results": {"bindings": [{"string": {"type": "literal", "value": "Angela Dorothea Kasner"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Name_at_birth", "surface form": "Angela Merkel\u2019s birth name"}], "relations": []}, {"id": "31", "answertype": "string", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Who is the mayor of Berlin?", "keywords": "Berlin, mayor"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Berlin dbp:leader ?uri }"}, "answers": [{"head": {"vars": ["string"]}, "results": {"bindings": [{"string": {"type": "literal", "value": "Michael M\u00fcller"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Berlin", "surface form": "Berlin"}], "relations": [{"URI": "http://dbpedia.org/ontology/mayor", "surface form": "mayor"}]}, {"id": "29", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Which countries in the European Union adopted the Euro?", "keywords": "European Union, country, adopt, Euro"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Country> { ?uri <http://dbpedia.org/ontology/currency> <http://dbpedia.org/resource/Euro> } UNION { ?uri <http://dbpedia.org/property/currencyCode> \"EUR\"@en } }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Basque_Country_(greater_region)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Serbia_and_Montenegro"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kingdom_of_Wallachia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Autonomous_Province_of_Kosovo_and_Metohija"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Baltic_states"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/French_Southern_and_Antarctic_Lands"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Twente"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Greece"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Netherlands"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Spain"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/\u00celes_des_Saintes"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Saint_Barth\u00e9lemy"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Akrotiri_and_Dhekelia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/European_Union"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Republic_of_Saugeais"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Republic_of_Ireland"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/French_overseas_departments_and_territories"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Macedonia_(region)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Austria"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Luxembourg"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/San_Marino"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cyprus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ad\u00e9lie_Land"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Germany"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Luhansk_People's_Republic"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lithuania"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Andorra"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Slovenia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Saint_Pierre_and_Miquelon"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tromelin_Island"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kerguelen_Islands"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Latvia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vatican_City"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Finland"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/France"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/United_Nations_Interim_Administration_Mission_in_Kosovo"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Third_Hellenic_Republic"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kosovo"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Monaco"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Montenegro"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Estonia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Portugal"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Collectivity_of_Saint_Martin"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Belgium"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/French_Fifth_Republic"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Countries_of_the_United_Kingdom", "surface form": "countries"}, {"URI": "http://dbpedia.org/resource/Europe", "surface form": "European Union adopted the Euro"}, {"URI": "http://dbpedia.org/resource/The_Adopted", "surface form": "European Union adopted the Euro"}], "relations": [{"URI": "http://dbpedia.org/ontology/country", "surface form": ""}]}, {"id": "23", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Which software has been published by Mean Hamster Software?", "keywords": "software, published, hamster, software"}], "query": {"sparql": "PREFIX res: <http://dbpedia.org/resource/> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Software { ?uri prop:publisher \"Mean Hamster Software\"@en } UNION { ?uri onto:publisher res:Mean_Hamster_Software } }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Crossbow_(video_game)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Riven"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Software", "surface form": "software"}, {"URI": "http://dbpedia.org/resource/Mean_Hamster_Software", "surface form": "Mean Hamster Software"}], "relations": [{"URI": "http://dbpedia.org/ontology/publisher", "surface form": "published"}]}, {"id": "68", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Which country was Bill Gates born in?", "keywords": "country, born, Bill Gates"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> PREFIX dbr: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?country WHERE { { dbr:Bill_Gates dbo:birthPlace ?birthPlace . ?birthPlace dbo:country ?country } UNION { dbr:Bill_Gates dbo:birthPlace ?birthPlace . ?birthPlace dbo:isPartOf ?place . ?place dbo:country ?country } }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/United_States"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Bill_Gates", "surface form": "Bill Gates"}], "relations": [{"URI": "http://dbpedia.org/ontology/country", "surface form": "country"}, {"URI": "http://dbpedia.org/ontology/birthPlace", "surface form": "born"}]}, {"id": "22", "answertype": "number", "aggregation": true, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "How many grand-children did Jacques Cousteau have?", "keywords": "how many, grand-children, Jacques Cousteau"}], "query": {"sparql": "SELECT COUNT(DISTINCT ?y AS ?y) WHERE { <http://dbpedia.org/resource/Jacques_Cousteau> <http://dbpedia.org/ontology/child> ?x . ?x <http://dbpedia.org/ontology/child> ?y . }"}, "answers": [{"head": {"vars": ["c"]}, "results": {"bindings": [{"c": {"type": "literal", "value": "4"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Jacques_Cousteau", "surface form": "Jacques Cousteau"}], "relations": [{"URI": "http://dbpedia.org/ontology/child", "surface form": "grand-children"}]}, {"id": "214", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Give me all professional skateboarders from Sweden.", "keywords": "professional, skateboarder, Sweden"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbp: <http://dbpedia.org/property/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { ?uri dbo:occupation dbr:Skateboarder { ?uri dbo:birthPlace dbr:Sweden } UNION { ?uri dbo:birthPlace ?place . ?place dbo:country dbr:Sweden } }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ali_Boulala"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tony_Magnusson"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Sweden", "surface form": "Sweden"}], "relations": [{"URI": "http://dbpedia.org/ontology/occupation", "surface form": "professional skateboarders"}]}, {"id": "210", "answertype": "resource", "aggregation": false, "onlydbo": false, "hybrid": false, "question": [{"language": "en", "string": "Which monarchs of the United Kingdom were married to a German?", "keywords": "United Kingdom, monarch, married, German"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX yago: <http://dbpedia.org/class/yago/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type yago:WikicatMonarchsOfTheUnitedKingdom ; dbo:spouse ?spouse . ?spouse dbo:birthPlace res:Germany }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/William_IV_of_the_United_Kingdom"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/United_Kingdom", "surface form": "United Kingdom"}, {"URI": "http://dbpedia.org/resource/Germany", "surface form": "German"}, {"URI": "http://dbpedia.org/resource/German", "surface form": "German"}], "relations": [{"URI": "http://dbpedia.org/ontology/leader", "surface form": "monarchs"}, {"URI": "http://dbpedia.org/ontology/spouse", "surface form": "married"}, {"URI": "http://dbpedia.org/ontology/country", "surface form": ""}, {"URI": "http://dbpedia.org/ontology/country", "surface form": ""}]}, {"id": "199", "answertype": "resource", "aggregation": false, "onlydbo": false, "hybrid": false, "question": [{"language": "en", "string": "Give me all Argentine films.", "keywords": "film, Argentina"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX yago: <http://dbpedia.org/class/yago/> PREFIX res: <http://dbpedia.org/resource/> PREFIX dbp: <http://dbpedia.org/property/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { { ?uri rdf:type yago:ArgentineFilms } UNION { ?uri rdf:type dbo:Film { ?uri dbo:country res:Argentina } UNION { ?uri dbp:country \"Argentina\"@en } } }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Warrior_and_the_Sorceress"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/El_Mar_de_Lucas"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Accused_(1960_film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Two_Waters"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_German_Friend"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/La_Ci\u00e9naga_(film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Los_vecinos_en_guerra"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Esa_Maldita_Costilla"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/La_Muchacha_del_arrabal"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Whisky_Romeo_Zulu"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/As\u00ed_O_De_Otra_Manera"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Love_in_Flight"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alma_M\u00eda"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pelud\u00f3polis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chile_672"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/El_Amor_\u2013_primera_parte"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Monday's_Child_(film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Los_caballeros_de_la_cama_redonda"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Testosterone_(film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Casi_un_sue\u00f1o"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Asunto_terminado"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Las_Aventuras_del_Capit\u00e1n_Piluso_en_el_Castillo_del_Terror"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mu\u00f1equitas_porte\u00f1as"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cuidado_Con_Las_Mujeres"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Coraz\u00f3n_de_criolla"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Amalio_Reyes,_un_hombre"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Los_Cuentos_de_Borges:_El_Sur"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/A_Cuban_in_Spain"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Amanda_O"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/El_Camino_de_San_Diego"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Snuff_(film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alias_Gardelito"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alambrado"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Hand_in_the_Trap"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Un_Oso_Rojo"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Las_Apariencias_enga\u00f1an"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Adi\u00f3s,_Roberto"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Arriba_Juventud"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/With_the_Music_in_my_Soul"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/A_Chrysanthemum_Bursts_in_Cincoesquinas"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_ABC_of_Love"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ana_and_the_Others"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Loves_of_Kafka"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Yacht_Isabel_Arrived_This_Afternoon"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Brigada_en_acci\u00f3n"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/No_sos_vos,_soy_yo"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/La_sombra_de_Heidegger"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Curious_Dr._Humpp"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Aconcagua_(film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/All\u00e1_en_el_Norte"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Adam_and_the_Serpent"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Tango_Lesson"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Amor_prohibido_(film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/An_American_in_Buenos_Aires"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Deathstalker_II"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Academia_El_Tango_Argentino"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chinese_Take-Away"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Off_to_Havana_I_Go"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ven_mi_coraz\u00f3n_te_llama"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/La_Quintrala_(film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ashes_to_the_Wind"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cocaine_Wars"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Leonardo_Mayer"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Social_Genocide"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Buenos_Aires,_Ciudad_de_Ensue\u00f1o"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Minder"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Bohemian_Soul"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Common_Places"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Waiting_for_the_Hearse"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Circus_Cavalcade"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Animal_(2001_film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Angel_Face_(1998_film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Crossroads_(1952_film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Campo_arado"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Only_Human_(2004_film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Deathstalker_(film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/La_Raulito"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Aquello_que_Amamos"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Soul_of_the_Children"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/White_Elephant_(2012_film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Love_Is_a_Fat_Woman"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Argentina_revolucionaria"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Perdido_por_perdido_(film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Man_Who_Owed_a_Death"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Captura_recomendada"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Yira,_yira"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Patagonia_(film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Accident_703"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/A_King_and_His_Movie"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Help_Me_to_Live"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Avivato"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/La_vida_por_Per\u00f3n"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cacer\u00eda"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Amor_libre_(film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bailoretto,_la_aventura_de_un_rebelde"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Maradona,_the_Hand_of_God"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/El_caso_Mat\u00edas"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Top_Cat:_The_Movie"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Todas_las_azafatas_van_al_cielo"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Immigrants_(1948_film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Crane_World"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Un_Argentino_en_New_York"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Snuff_102"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lost_Embrace"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/El_Asalto"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Family_Law_(film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/3_Am\u00e9ricas"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/El_Andador"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rodencia_y_el_Diente_de_la_Princesa"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cerro_Guanaco"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Assassination_Tango"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/La_v\u00eda_de_oro"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mala_\u00c9poca"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Left_for_Dead_(2007_Western_film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Appeared"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tire_di\u00e9"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Parapalos"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Joven,_viuda_y_estanciera_(1970_film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Algo_habr\u00e1n_hecho_por_la_historia_argentina"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Babilonia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Johny_Tolengo,_el_majestuoso"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Andrea_(film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Harassed_(1964_film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Monobloc_(film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/A_Buddha"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Age_of_Love_(1954_film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Las_Aventuras_de_Pik\u00edn"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Boquitas_pintadas"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Delirium_(2014_film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Adi\u00f3s_pampa_m\u00eda"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Adi\u00f3s_problemas"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/El_Amarillo"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Grandfather_(1954_film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Encadenado"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/G\u00e9minis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Apasionados"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Las_Aventuras_de_Tremendo"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hawaii_(2013_film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Las_Acacias_(film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Supporter"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kill_and_Be_Killed"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Abuso_de_confianza"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Orquesta_Tipica"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Plaza_de_Almas"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Native_Son_(1951_film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/God_Reward_You"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Una_Atrevida_aventurita"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Roma_(2004_film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Secret_Agents_Against_Green_Glove"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Eva_Doesn't_Sleep"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/La_Amada_Inm\u00f3vil"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/El_Amor_y_el_Espanto"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Whisky_(film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Palo_y_hueso"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/XXY_(film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Closed_Door"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Solamente_vos"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bajo_el_signo_de_la_patria"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Son_of_the_Bride"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Anni_Ribelli"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Centauros_del_pasado"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Adi\u00f3s_muchachos"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Buenas_noches,_Buenos_Aires"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Los_amores_de_Laurita"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/La_Fuga"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/A_Place_in_the_World_(film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Good_Life_Delivery"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/La_barra_de_Taponazo"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Girl_from_Florida_Street"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Air_Force,_Incorporated"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rapado"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Amor_a_primera_vista"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Agua_(film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/El_Satario"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Plum\u00edferos"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chiquititas:_Rinc\u00f3n_de_luz"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nobleza_gaucha_(1915_film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Valentina_(2008_film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Soul_of_a_Tango"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Las_Campanas_de_Teresa"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tetro"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Return_to_Bolivia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/El_perro"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Amor_\u00faltimo_modelo"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Departamento_compartido"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Marihuana_Story"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/El_Profesor_Hippie"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Foolish_Heart_(1998_film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Quispe_Girls"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Searching_for_Monica"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cama_Adentro"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Las_furias"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Noites_Cariocas"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Francis:_Pray_for_Me"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/La_Gaucha"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chiche_bomb\u00f3n"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/El_Bonaerense"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ver\u00f3nico_Cruz_(film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cantani\u00f1o_cuenta_un_cuento"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cubitos_de_hielo"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Familia_rodante"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Waiting_for_the_Messiah"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bodas_de_cristal"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Una_noche_con_Sabrina_Love"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Magic_Bay"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Perd\u00f3n,_viejita"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/A_Sangre_Fr\u00eda"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Diez_canciones_de_Gardel"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Last_Train_(2002_film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Humo_de_Marihuana"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Buenos_Aires_a_la_vista"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Eclipse_of_the_Sun_(film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Path_to_Peace"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Where_the_Wind_Dies"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Canario_rojo"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Culpable_(film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Amor_y_un_poco_m\u00e1s"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Blonds"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rosaura_at_10_O'Clock"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/El_Amor_infiel"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Balada_para_un_mochilero"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Al_Comp\u00e1s_de_tu_Mentira"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/La_Aventura_explosiva"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Son_de_Fierro"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/La_Procesi\u00f3n"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/La_Antena"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Eversmile,_New_Jersey"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/As\u00ed_No_Hay_Cama_Que_Aguante"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tocar_el_cielo"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/High_School_Musical:_El_Desaf\u00edo"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Blessed_by_Fire"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Anteojito_y_Antifaz,_mil_intentos_y_un_invento"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Una_Jaula_no_tiene_secretos"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/B\u00f3lidos_de_acero"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Arrabalera"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Motorcycle_Diaries_(film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/With_Life_and_Soul"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/As\u00ed_es_Buenos_Aires"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Asesinato_en_el_Senado_de_la_Naci\u00f3n"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/La_Fidelidad"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gaturro_(film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Burnt_Money"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Amigos_para_La_Aventura"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Argentina", "surface form": "Argentine films"}, {"URI": "http://dbpedia.org/resource/Lists_of_Argentine_films", "surface form": "Argentine films"}], "relations": [{"URI": "http://dbpedia.org/ontology/country", "surface form": ""}]}, {"id": "203", "answertype": "string", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "How did Michael Jackson die?", "keywords": "how, Michael Jackson, die"}], "query": {"sparql": "SELECT DISTINCT ?s WHERE { <http://dbpedia.org/resource/Michael_Jackson> <http://dbpedia.org/property/deathCause> ?s }"}, "answers": [{"head": {"vars": ["string"]}, "results": {"bindings": [{"string": {"type": "literal", "value": "Homicide"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Michael_Jackson", "surface form": "Michael Jackson"}], "relations": [{"URI": "http://dbpedia.org/ontology/deathDate", "surface form": "die"}]}, {"id": "197", "answertype": "resource", "aggregation": false, "onlydbo": false, "hybrid": false, "question": [{"language": "en", "string": "Which U.S. state has been admitted latest?", "keywords": "U.S. state, admit, last"}], "query": {"sparql": "PREFIX dbc: <http://dbpedia.org/resource/Category:> PREFIX dct: <http://purl.org/dc/terms/> SELECT DISTINCT ?uri WHERE { ?uri dct:subject dbc:States_of_the_United_States ; <http://dbpedia.org/property/admittancedate> ?x } ORDER BY DESC(?x) LIMIT 1"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hawaii"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/United_States", "surface form": "US"}], "relations": [{"URI": "http://dbpedia.org/property/known", "surface form": "admitted"}]}, {"id": "196", "answertype": "string", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Which classes does the Millepede belong to?", "keywords": "millepede, classes, belong"}], "query": {"sparql": "PREFIX res: <http://dbpedia.org/resource/> PREFIX dbp: <http://dbpedia.org/property/> SELECT DISTINCT ?String WHERE { res:Millipede dbp:taxon ?String }"}, "answers": [{"head": {"vars": ["string"]}, "results": {"bindings": [{"string": {"type": "literal", "value": "Diplopoda"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Millipede", "surface form": "Millepede"}], "relations": [{"URI": "http://dbpedia.org/ontology/classes", "surface form": "classes"}, {"URI": "http://dbpedia.org/ontology/date", "surface form": "belong"}]}, {"id": "188", "answertype": "resource", "aggregation": false, "onlydbo": false, "hybrid": false, "question": [{"language": "en", "string": "Give me the homepage of Forbes.", "keywords": "Forbes, homepage"}], "query": {"sparql": "PREFIX res: <http://dbpedia.org/resource/> PREFIX foaf: <http://xmlns.com/foaf/0.1/> SELECT DISTINCT ?string WHERE { res:Forbes foaf:homepage ?string }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://forbes.com"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Forbes", "surface form": "Forbes"}], "relations": []}, {"id": "187", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Who is the husband of Amanda Palmer?", "keywords": "Amanda Palmer, husband"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/spouse> <http://dbpedia.org/resource/Amanda_Palmer> }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Neil_Gaiman"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Amanda_Palmer", "surface form": "Amanda Palmer"}], "relations": [{"URI": "http://dbpedia.org/ontology/spouse", "surface form": "husband"}]}, {"id": "176", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Who painted The Storm on the Sea of Galilee?", "keywords": "The Storm on the Sea of Galilee, paint"}], "query": {"sparql": "PREFIX res: <http://dbpedia.org/resource/> PREFIX dbp: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:The_Storm_on_the_Sea_of_Galilee dbo:author ?uri }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rembrandt_van_Rijn"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/The_Storm_on_the_Sea_of_Galilee", "surface form": "The Storm on the Sea of Galilee"}], "relations": [{"URI": "http://dbpedia.org/property/artist", "surface form": "painted"}]}, {"id": "62", "answertype": "string", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "What is the highest place of Karakoram?", "keywords": "Karakoram, highest place"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Karakoram dbp:highest ?uri }"}, "answers": [{"head": {"vars": ["string"]}, "results": {"bindings": [{"string": {"type": "literal", "value": "K2"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Karakoram", "surface form": "Karakoram"}], "relations": [{"URI": "http://dbpedia.org/ontology/elevation", "surface form": "highest place"}]}, {"id": "173", "answertype": "date", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "When did Finland join the EU?", "keywords": "Finland, European Union, join"}], "query": {"sparql": "PREFIX res: <http://dbpedia.org/resource/> PREFIX dbp: <http://dbpedia.org/property/> SELECT DISTINCT ?date WHERE { res:Finland dbp:accessioneudate ?date }"}, "answers": [{"head": {"vars": ["date"]}, "results": {"bindings": [{"date": {"type": "literal", "value": "1995-01-01"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Basque_language", "surface form": "EU"}, {"URI": "http://dbpedia.org/resource/Join", "surface form": "Finland join the"}], "relations": [{"URI": "http://dbpedia.org/property/date", "surface form": "when"}]}, {"id": "168", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Which actors play in Big Bang Theory?", "keywords": "actors, Big Bang Theory"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/The_Big_Bang_Theory> <http://dbpedia.org/ontology/starring> ?uri }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Johnny_Galecki"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kunal_Nayyar"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kevin_Sussman"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mayim_Bialik"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Simon_Helberg"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Melissa_Rauch"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Laura_Spencer_(actress)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kaley_Cuoco"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jim_Parsons"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sara_Gilbert"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/The_Big_Bang_Theory", "surface form": "Big Bang Theory"}], "relations": [{"URI": "http://dbpedia.org/ontology/background", "surface form": "actors"}, {"URI": "http://dbpedia.org/ontology/starring", "surface form": "play"}]}, {"id": "166", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Which computer scientist won an oscar?", "keywords": "computer scientist, win, oscar"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/field> <http://dbpedia.org/resource/Computer_science> ; <http://dbpedia.org/ontology/award> <http://dbpedia.org/resource/Academy_Award> }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Edwin_Catmull"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Computer_scientist", "surface form": "computer scientist"}, {"URI": "http://dbpedia.org/resource/Oscar", "surface form": "oscar"}], "relations": [{"URI": "http://dbpedia.org/ontology/award", "surface form": "won"}]}, {"id": "160", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Who wrote Harry Potter?", "keywords": "who , wrote , Harry Potter"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Harry_Potter> <http://dbpedia.org/property/author> ?uri }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/J._K._Rowling"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Harry_Potter", "surface form": "Harry Potter"}], "relations": [{"URI": "http://dbpedia.org/property/author", "surface form": "wrote"}]}, {"id": "158", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Give me all writers that won the Nobel Prize in literature.", "keywords": "writer, win, Nobel Prize in literature"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Writer> ; <http://dbpedia.org/ontology/award> <http://dbpedia.org/resource/Nobel_Prize_in_Literature> }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hermann_Hesse"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Aleksandr_Solzhenitsyn"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ernest_Hemingway"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Czes\u0142aw_Mi\u0142osz"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Joseph_Brodsky"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jos\u00e9_Saramago"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Wis\u0142awa_Szymborska"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/John_Steinbeck"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gerhart_Hauptmann"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Eugene_O'Neill"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Thomas_Mann"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Toni_Morrison"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/T._S._Eliot"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Svetlana_Alexievich"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/William_Golding"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pablo_Neruda"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alice_Munro"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Patrick_Modiano"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Juan_Ram\u00f3n_Jim\u00e9nez"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Harold_Pinter"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Seamus_Heaney"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Nobel_Prize", "surface form": "Nobel Prize"}, {"URI": "http://dbpedia.org/resource/Literature", "surface form": "literature"}], "relations": [{"URI": "http://dbpedia.org/ontology/writer", "surface form": "writers"}, {"URI": "http://dbpedia.org/ontology/award", "surface form": "won"}]}, {"id": "157", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Give me English actors starring in Lovesick.", "keywords": "English actors, starring, Lovesick"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Lovesick_(1983_film)> dbo:starring ?uri . ?uri dbo:birthPlace ?city . ?city dbo:country <http://dbpedia.org/resource/United_Kingdom> }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dudley_Moore"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alec_Guinness"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/The_Actors", "surface form": "English actors"}, {"URI": "http://dbpedia.org/resource/Lovesick_(Priscilla_Renea_song)", "surface form": "Lovesick"}], "relations": [{"URI": "http://dbpedia.org/ontology/starring", "surface form": "starring"}]}, {"id": "155", "answertype": "string", "aggregation": false, "onlydbo": false, "hybrid": false, "question": [{"language": "en", "string": "What is the nick name of Baghdad?", "keywords": "Baghdad , nickname"}], "query": {"sparql": "PREFIX dbr: <http://dbpedia.org/resource/> PREFIX foaf: <http://xmlns.com/foaf/0.1/> SELECT ?nm WHERE { dbr:Baghdad foaf:nick ?nm }"}, "answers": [{"head": {"vars": ["string"]}, "results": {"bindings": [{"string": {"type": "literal", "value": "'The City of Peace'"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Baghdad", "surface form": "Baghdad"}], "relations": [{"URI": "http://dbpedia.org/ontology/address", "surface form": "nick name"}]}, {"id": "150", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "In which city was the president of Montenegro born?", "keywords": "city, born, president of Montenegro"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/title> dbr:President_of_Montenegro ; dbo:birthPlace ?uri . ?uri dbo:type dbr:Capital_city }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Belgrade"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Montenegro", "surface form": "Montenegro"}], "relations": [{"URI": "http://dbpedia.org/ontology/city", "surface form": "city"}, {"URI": "http://dbpedia.org/ontology/president", "surface form": "president"}, {"URI": "http://dbpedia.org/ontology/birthPlace", "surface form": "born"}]}, {"id": "149", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Which U.S. state has the highest population density?", "keywords": "state, USA, population density, highest"}], "query": {"sparql": "SELECT ?uri WHERE { ?uri <http://dbpedia.org/ontology/country> <http://dbpedia.org/resource/United_States> . ?uri <http://dbpedia.org/ontology/capital> ?capital . ?uri <http://dbpedia.org/property/densityrank> ?density . OPTIONAL {?uri <http://www.w3.org/2000/01/rdf-schema#label> ?string. FILTER (lang(?string) = 'en') } } ORDER BY ASC(?density) LIMIT 1"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/New_Jersey"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/United_States", "surface form": "US"}, {"URI": "http://dbpedia.org/resource/Population_density", "surface form": "highest population density"}], "relations": []}, {"id": "25", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "What is the longest river in China?", "keywords": "longest river, China"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/River> ; <http://dbpedia.org/ontology/country> <http://dbpedia.org/resource/China> ; <http://dbpedia.org/property/length> ?l } ORDER BY DESC(?l) OFFSET 0 LIMIT 1"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Yangtze"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/China", "surface form": "China"}], "relations": [{"URI": "http://dbpedia.org/ontology/river", "surface form": "river"}]}, {"id": "143", "answertype": "string", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "What is the area code of Berlin?", "keywords": "Berlin, area code"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?string WHERE { res:Berlin dbo:areaCode ?string }"}, "answers": [{"head": {"vars": ["string"]}, "results": {"bindings": [{"string": {"type": "literal", "value": "030"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Berlin", "surface form": "Berlin"}], "relations": [{"URI": "http://dbpedia.org/ontology/areaCode", "surface form": "area code"}]}, {"id": "140", "answertype": "number", "aggregation": true, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "How many scientists graduated from an Ivy League university?", "keywords": "scientists, graduated, Ivy League university"}], "query": {"sparql": "SELECT (COUNT(DISTINCT ?uri) AS ?c) WHERE { ?uri a <http://dbpedia.org/ontology/Scientist> ; <http://dbpedia.org/ontology/almaMater> ?university . ?university <http://dbpedia.org/ontology/affiliation> <http://dbpedia.org/resource/Ivy_League> ; a <http://dbpedia.org/ontology/University> }"}, "answers": [{"head": {"vars": ["c"]}, "results": {"bindings": [{"c": {"type": "literal", "value": "403"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Scientists_for_Global_Responsibility", "surface form": "scientists"}, {"URI": "http://dbpedia.org/resource/Ivy_League", "surface form": "Ivy League university"}], "relations": [{"URI": "http://dbpedia.org/ontology/effectiveRadiatedPower", "surface form": "graduated"}]}, {"id": "139", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Which professional surfers were born in Australia?", "keywords": "professional surfer, born, Australia"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { { ?uri dbo:occupation res:Surfer ; dbo:birthPlace res:Australia } UNION { ?uri dbo:occupation res:Surfer ; dbo:birthPlace ?place . ?place dbo:country res:Australia } }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ian_Cairns"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Koby_Abberton"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Australia", "surface form": "Australia"}], "relations": [{"URI": "http://dbpedia.org/ontology/specialist", "surface form": "professional surfers"}, {"URI": "http://dbpedia.org/ontology/birthPlace", "surface form": "born"}]}, {"id": "137", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Give me all Dutch parties.", "keywords": "Dutch, party"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/PoliticalParty> ; <http://dbpedia.org/ontology/country> <http://dbpedia.org/resource/Netherlands> }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Reformed_Political_Party"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/GroenLinks"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Trots_op_Nederland"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Free_Union_(anarchist_organisation)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Anti-Revolutionary_Party"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/People's_Party_for_Freedom_and_Democracy"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Frisian_National_Party"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Article_50_(political_party)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Christian_Democratic_Appeal"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Democratic_Political_Turning_Point"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Onafhankelijke_Burger_Partij"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Cura\u00e7ao", "surface form": "Dutch parties"}, {"URI": "http://dbpedia.org/resource/Dutch", "surface form": "Dutch parties"}], "relations": [{"URI": "http://dbpedia.org/ontology/country", "surface form": ""}, {"URI": "http://dbpedia.org/ontology/country", "surface form": ""}]}, {"id": "136", "answertype": "number", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "How many moons does Mars have?", "keywords": "how many, moons, Mars"}], "query": {"sparql": "SELECT DISTINCT ?n WHERE { <http://dbpedia.org/resource/Mars> <http://dbpedia.org/property/satellites> ?n }"}, "answers": [{"head": {"vars": ["c"]}, "results": {"bindings": [{"c": {"type": "literal", "value": "2"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/7805_Moons", "surface form": "moons"}, {"URI": "http://dbpedia.org/resource/Mars", "surface form": "Mars"}], "relations": []}, {"id": "134", "answertype": "string", "aggregation": false, "onlydbo": false, "hybrid": false, "question": [{"language": "en", "string": "What is Batman's real name?", "keywords": "real name, Batman"}], "query": {"sparql": "SELECT DISTINCT ?label WHERE { <http://dbpedia.org/resource/Batman> <http://xmlns.com/foaf/0.1/name> ?label FILTER ( str(?label) != \"Batman\" ) }"}, "answers": [{"head": {"vars": ["string"]}, "results": {"bindings": [{"string": {"type": "literal", "value": "Bruce Wayne"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Batman", "surface form": "Batman"}, {"URI": "http://dbpedia.org/resource/Real-name_system", "surface form": " real name"}], "relations": []}, {"id": "132", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "What is Elon Musk famous for?", "keywords": "famous for, Elon Musk"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Elon_Musk> <http://dbpedia.org/ontology/knownFor> ?uri }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tesla_Motors"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hyperloop"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/SolarCity"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/PayPal"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/OpenAI"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/SpaceX"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Elon_Musk", "surface form": "Elon Musk famous"}], "relations": []}, {"id": "128", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Who is the author of WikiLeaks?", "keywords": "author, wikileaks"}], "query": {"sparql": "PREFIX res: <http://dbpedia.org/resource/> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT ?uri WHERE { res:WikiLeaks onto:author ?uri }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Julian_Assange"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/WikiLeaks", "surface form": "WikiLeaks"}], "relations": [{"URI": "http://dbpedia.org/ontology/author", "surface form": "author"}]}, {"id": "126", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Sean Parnell was the governor of which U.S. state?", "keywords": "U.S. state, governor, Sean Parnell"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Sean_Parnell dbo:region ?uri }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alaska"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Sean_Parnell", "surface form": "Sean parnell"}, {"URI": "http://dbpedia.org/resource/United_States", "surface form": "US"}], "relations": [{"URI": "http://dbpedia.org/ontology/governor", "surface form": "governor"}]}, {"id": "125", "answertype": "number", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "How many years was the Ford Model T manufactured?", "keywords": "years, Ford Model T, manufactured"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX xsd: <http://www.w3.org/2001/XMLSchema#> PREFIX res: <http://dbpedia.org/resource/> SELECT ?years WHERE { res:Ford_Model_T dbo:productionEndYear ?end ; dbo:productionStartYear ?start. BIND ( ( year(xsd:date(?end)) - year(xsd:date(?start)) ) AS ?years) }"}, "answers": [{"head": {"vars": ["c"]}, "results": {"bindings": [{"c": {"type": "literal", "value": "19"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/T", "surface form": "T"}, {"URI": "http://dbpedia.org/resource/Ford_Model_48", "surface form": "Ford Model"}], "relations": [{"URI": "http://dbpedia.org/ontology/manufacturer", "surface form": "manufactured"}]}, {"id": "124", "answertype": "date", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "When was Carlo Giuliani shot?", "keywords": "date, Carlo Giuliani, shot"}], "query": {"sparql": "PREFIX res: <http://dbpedia.org/resource/> PREFIX dbp: <http://dbpedia.org/property/> SELECT DISTINCT xsd:date(?date) WHERE { res:Death_of_Carlo_Giuliani dbo:deathDate ?date }"}, "answers": [{"head": {"vars": ["date"]}, "results": {"bindings": [{"date": {"type": "literal", "value": "2001-07-20"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Carlo_Giuliani,_Boy", "surface form": "Carlo Giuliani"}], "relations": [{"URI": "http://dbpedia.org/ontology/discharge", "surface form": "shot"}]}, {"id": "123", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Give me all animals that are extinct.", "keywords": "animal, extinct"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Animal> ; <http://dbpedia.org/ontology/conservationStatus> \"EX\" }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/R\u00e9union_swamphen"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rocky_Mountain_locust"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/California_grizzly_bear"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Amastra_crassilabrum"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Small_Mauritian_flying_fox"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ascension_night_heron"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Angled_riffleshell"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bermuda_hawk"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mautodontha_subtilis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mount_Alifana_partula"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Reverse_pebblesnail"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Striate_slitshell"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Black_mamo"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Partula_aurantia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Perritos_de_sandia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Scioto_pigtoe"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/San_Mart\u00edn_Island_woodrat"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Haitian_nesophontes"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Partula_auriculata"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pygmy_elimia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Corded_purg"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kawekaweau"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fine-rayed_pearly_mussel"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Argocoffeopsis_lemblinii"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jamaican_red_macaw"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Elimia_gibbera"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ribbed_slitshell"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Insular_cave_rat"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dryophthorus_distinguendus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Turgid_riffle_shell"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Marquesas_cuckoo-dove"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Carelia_lirata"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Partula_crassilabris"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mount_Glorious_day_frog"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Snake_River_sucker"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lyropupa_perlonga"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Carelia_glossema"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Discus_retextus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Atlas_bear"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rallicola_extinctus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rhyncogonus_bryani"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Barbados_raccoon"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pseudophilautus_temporalis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mautodontha_unilamellata"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pseudophilautus_rugatus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Partula_garretti"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gravicalymene"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/North_Island_giant_moa"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hawkins's_rail"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gull_Island_vole"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sitalcicus_gardineri"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Procambarus_angustatus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Apteribis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gravenche"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pupilla_obliquicosta"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tornelasmias_capricorni"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Helenoconcha_polyodon"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Domed_Rodrigues_giant_tortoise"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Partula_protea"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Western_Cuban_nesophontes"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chondrostoma_scodrense"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Megalagrion_jugorum"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Partula_umbilicata"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chilonopsis_nonpareil"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mount_Matafao_different_snail"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Libythea_cinyras"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ptychochromis_onilahy"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chilonopsis_blofeldi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Phleophagan_chestnut_moth"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rodrigues_starling"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pallid_beach_mouse"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Partula_bilineata"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Partula_rustica"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bulldog_rat"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rodrigues_blue_pigeon"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Partulina_crassa"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tacoma_pocket_gopher"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Scissor-billed_koa_finch"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Waitaha_penguin"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Great_ground_dove"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Henderson_imperial_pigeon"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Macroscincus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fusiform_elimia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/New_Caledonian_gallinule"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Perdicella_zebrina"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Carelia_hyattiana"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hawai\u02bbi_\u02bb\u014d\u02bb\u014d"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bermuda_saw-whet_owl"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Syncaris_pasadenae"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/R\u00e9union_parakeet"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Houting"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hirasea_planulata"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Achatinella_papyracea"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Achatinella_casta"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Maupiti_monarch"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Partula_dolorosa"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Coosa_rocksnail"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pachystyla_waynepagei"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Harmogenanina_linophora"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Midway_noctuid_moth"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Agrotis_panoplias"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Leiostyla_gibba"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sampson's_naiad"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/North_Island_takah\u0113"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Saint_Helena_cuckoo"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Elimia_macglameriana"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/South_Island_snipe"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tobias'_caddisfly"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chilonopsis_exulatus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Telestes_ukliva"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lamellidea_monodonta"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/American_chestnut_moth"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dupontia_proletaria"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Heliaster_solaris"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ctenoglypta_newtoni"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mariana_mallard"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tongatapu_rail"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Parmacella_gervaisii"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fish_Lake_physa"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gibbus_lyonetianus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dominican_green-and-yellow_macaw"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pseudophilautus_zal"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Minute_noctuid_moth"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tahuata_rail"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bramble_Cay_melomys"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Achatinella_caesia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Anthony's_woodrat"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bushwren"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Helenoconcha_sexdentata"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Acorn_pearly_mussel"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Partula_lutea"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Olson's_petrel"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Libera_subcavernula"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Recovery_pearly_mussel"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Slender-billed_grackle"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Unio_cariei"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mascarene_teal"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rodrigues_pigeon"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/\u0130znik_shemaya"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chilonopsis_melanoides"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bonin_wood_pigeon"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gyrotoma"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sinployea_youngi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Antillean_cave_rat"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Evarra_tlahuacensis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Choiseul_pigeon"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ascension_crake"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pseudophilautus_malcolmsmithi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sri_Lanka_lion"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Wake_Island_rail"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sinployea_proxima"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Spiny-knee_leaf_frog"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Eastern_hare-wallaby"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Torre's_cave_rat"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tasman_starling"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Keraea"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Auckland_merganser"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/R\u00e9union_kestrel"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Achatinella_elegans"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Partula_planilabrum"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Colparion_madgei"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Samoana_inflata"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mukojima_white-eye"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rhyacophila_amabilis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Falkland_Islands_wolf"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Placostylus_cuniculinsulae"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Stumptooth_minnow"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Megalobulimus_cardosoi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tahiti_crake"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kosrae_starling"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dysoneura_zherikhini"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Moorea_sandpiper"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Marianne_white-eye"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pacifastacus_nigrescens"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Perdicella_maniensis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gould's_mouse"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cyprus_dipper"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tonga_ground_skink"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Interrupted_rocksnail"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pseudophilautus_dimbullae"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Emperoptera_mirabilis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jamaican_ibis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/O\u02bbahu_\u02bbakepa"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tasmanian_emu"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nullarbor_dwarf_bettong"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Partula_producta"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Eodesmatodon"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Atalaye_nesophontes"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Amastra_elongata"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Striped_rocksnail"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chatham_fernbird"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Angrobia_dulvertonensis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Roque_Chico_de_Salmor_giant_lizard"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Saint_Helena_petrel"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pupa_elimia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Malagasy_lapwing"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Banff_longnose_dace"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Formosan_clouded_leopard"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gulella_mayottensis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Saint_Helena_crake"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Achatinella_spaldingi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cyclophorus_horridulum"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mautodontha_maupiensis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hygrotus_artus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ungava_brown_bear"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Trigonoscuta_yorbalindae"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Arc-form_pearly_mussel"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Broad-billed_moa"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Stout-legged_finch"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Palaeoloxodon_falconeri"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Puzzle_elimia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alabama_pigtoe"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Partula_dolichostoma"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lesser_Cuban_nesophontes"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Puerto_Rican_barn_owl"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Darling_Downs_hopping_mouse"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Partula_atilis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Norfolk_pigeon"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Guam_flying_fox"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ameca_shiner"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cuban_macaw"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sinployea_planospira"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Toolache_wallaby"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Clavicoccus_erinaceus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Aplocheilichthys_sp._nov._'Naivasha'"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rodrigues_day_gecko"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hoopoe_starling"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Harelip_sucker"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/O\u02bbahu_nukupu\u02bbu"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Garrett's_reed_warbler"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cachorrito_de_la_Trinidad"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ua_Huka_rail"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Moorea_reed_warbler"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lagostomus_crassus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Evarra_eigenmanni"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Achatinella_lehuiensis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mascarene_coot"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cryptoprocta_spelea"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Xestospiza_fastigialis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bigmouth_rocksnail"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Moho_(genus)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pseudohelenoconcha_spurca"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Triaenodes_tridonata"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Blackfin_cisco"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ratas_Island_lizard"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/King_Kong_grosbeak"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sinployea_decorticata"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pennatomys"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Amastra_tenuispira"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Greater_akialoa"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lord_Howe_parakeet"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dusky_flying_fox"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mexican_grizzly_bear"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alburnus_akili"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Partula_levistriata"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hilo_noctuid_moth"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Balearic_shrew"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Oodemas_laysanensis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/R\u00e9union_giant_tortoise"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/New_Zealand_quail"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alloperla_roberti"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lake_Mackay_hare-wallaby"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mascarene_parrot"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lord_Howe_swamphen"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Partula_citrina"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vegas_Valley_leopard_frog"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pentagenia_robusta"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Black-fronted_parakeet"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pseudophilautus_extirpo"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pseudophilautus_variabilis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Megaoryzomys"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pseudophilautus_oxyrhynchus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Partula_cuneata"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chatham_duck"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lamellidea_nakadai"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Eiao_monarch"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Partula_levilineata"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Clydonitaceae"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Carelia_turricula"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Partula_radiata"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lymnaea_tomentosa_hamiltoni"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pseudophilautus_nasutus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vitrinula_chaunax"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Genophantis_leahi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Short-tailed_hopping_mouse"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lepidochrysops_hypopolia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Brown_pigtoe"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Neduba_extincta"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sinployea_harveyensis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Arabian_ostrich"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tristramella_magdelainae"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Martinique_giant_ameiva"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Partula_sagitta"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/North_Island_snipe"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Partula_arguta"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Stephens_Island_wren"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/St._Michel_nesophontes"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Taipidon_octolamellata"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Partulina_montagui"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Huahine_swamphen"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Syrian_elephant"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chestnut_ermine_moth"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/European_ass"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Norfolk_kaka"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Western_black_rhinoceros"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mauke_starling"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Partula_formosa"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Conquered_lorikeet"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cyprinus_yilongensis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Daito_wren"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kaua\u02bbi_\u02bb\u014d\u02bb\u014d"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Salvelinus_neocomensis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Spirobolellus_praslinus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Confused_moth"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Coosa_elktoe"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sinployea_tenuicostata"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Thick-billed_ground_dove"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Craugastor_escoces"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ochlockonee_arcmussel"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tristramella_intermedia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Piopio_(bird)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gerandibis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Candango_mouse"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Helenoconcha_minutissima"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rodrigues_bulbul"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/New_Zealand_bittern"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Florida_black_wolf"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Puerto_Rican_parakeet"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Achatinella_livida"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Heavy_pigtoe"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rodrigues_owl"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Typhlops_cariei"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tropidophis_bucculentus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Saint_Helena_earwig"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Phyllococcus_oahuensis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ash_Meadows_killifish"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Evarra_bustamantei"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Daito_varied_tit"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/New_Zealand_musk_duck"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Macquarie_parakeet"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sardinian_lynx"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lovegrass_noctuid_moth"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cuban_nesophontes"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mautodontha_zebrina"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Carelia_pilsbryi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pyramid_slitshell"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Amastra_pellucida"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Eastern_cougar"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Eastern_Canary_Islands_chiffchaff"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Twisted-toothed_mouse"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/White-footed_rabbit-rat"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Phantom_shiner"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Roper_River_scrub_robin"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Auriculella_uniplicata"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sterna_milne-edwardsii"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Auriculella_expansa"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Highnut"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Trigonoscuta_rossi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Huahine_gull"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Thick-lipped_pebblesnail"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pemberton's_deer_mouse"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chadwick_Beach_cotton_mouse"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Wide-toothed_hutia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ouachita_pebblesnail"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jamaican_monkey"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Japanese_wolf"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Daphnobela_minutissima"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cuban_ivory-billed_woodpecker"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Quintalia_stoddartii"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mautodontha_parvidens"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Madeiran_wood_pigeon"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/R\u00e9union_pink_pigeon"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lesser_stick-nest_rat"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hearty_elimia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Round_slitshell"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hagerman_horse"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Malagasy_hippopotamus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Finsch's_duck"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Channeled_pebblesnail"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Western_Lewin's_rail"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pantanodon_madagascariensis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Laughing_owl"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Saddle-backed_Rodrigues_giant_tortoise"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Macquarie_rail"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Maiden_rocksnail"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Neoplanorbis_carinatus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Norfolk_triller"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Longnut"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mangaia_rail"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Haitian_edible_rat"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pseudobactricia_ridleyi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Acanthobrama_hulensis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Agate_rocksnail"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Agrotis_photophila"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Great_O\u2018ahu_crake"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/R\u00e9union_night_heron"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rough-lined_elimia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Megalomys_luciae"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Agrotis_tephrias"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Helenoconcha_leptalea"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Neoplanorbis_smithi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Spotted_green_pigeon"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jamaican_wood_rail"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Thicktail_chub"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Harmogenanina_subdetecta"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bluff_Downs_giant_python"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Scotorythra_nesiotes"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Samoana_jackieburchi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Coregonus_fera"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Utah_Lake_sculpin"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cumberland_leafshell"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Saddle-backed_Mauritius_giant_tortoise"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Saint_Helena_dove"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pentremites"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Laysan_noctuid_moth"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Big-eared_hopping_mouse"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Robust_white-eye"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lord_Howe_starling"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Helenodiscus_bilamellata"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Partula_protracta"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Agrotis_melanoneura"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Palaeoloxodon_mnaidriensis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tubuai_rail"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Amistad_gambusia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pseudophilautus_nanus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Littoridina_gaudichaudii"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Buhler's_coryphomys"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Desert_rat-kangaroo"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Majorcan_giant_dormouse"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/San_Marcos_gambusia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chestnut_clearwing_moth"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Leptoxis_torrefacta"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Zonites_santoriniensis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cyclosurus_mariei"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Excised_slitshell"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Broad-billed_parrot"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Domed_Mauritius_giant_tortoise"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ryukyu_kingfisher"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mascarene_grey_parakeet"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Agrotis_cremata"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tristramella_sacra"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mautodontha_punctiperforata"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Leiostyla_lamellosa"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Guadalupe_caracara"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Discula_tetrica"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Grand_Cayman_thrush"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Eurygnathohippus_woldegabrieli"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Daphnobela_juncea"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kerr's_noctuid_moth"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nesotrochis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Seychelles_parakeet"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pied_raven"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Amastra_albolabris"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rhachis_comorensis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Incerticyclus_cinereus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Greater_Cuban_nesophontes"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pentarthrum_blackburni"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sinployea_rudis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Partula_filosa"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lord_Howe_pigeon"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Red-bellied_gracile_opossum"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Clappia_umbilicata"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Constricted_elimia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Aepyornis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nancibella_quintalia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Partula_cytherea"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Helenoconcha_pseustes"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kona_grosbeak"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Puerto_Rican_hutia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Stygobromus_lucifugus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Great_Maui_crake"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kona_giant_looper_moth"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pachystyla_rufozonata"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pseudophilautus_adspersus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Highland_finch"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Conilurus_capricornensis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Santo_Stefano_lizard"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gyralina_hausdorfi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Forkshell"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Partula_candida"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ryukyu_wood_pigeon"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tahiti_rail"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Amphicyclotulus_guadeloupensis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bucorvus_brailloni"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Conozoa_hyalina"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Discus_textilis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Biotocus_turbinatus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Urania_sloanus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Carelia_sinclairi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bonin_grosbeak"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Guadeloupe_amazon"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Martinique_curly-tailed_lizard"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/R\u00e9union_ibis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Amastra_umbilicata"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dusky_seaside_sparrow"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Janulus_pompylius"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Northland_skink"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Drosophila_lanaiensis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Xestospiza_conica"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Triaenodes_phalacris"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pseudocampylaea_loweii"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bermuda_flicker"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Malagasy_sheldgoose"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gould's_emerald"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Coleophora_leucochrysella"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Delalande's_coua"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Japanese_sea_lion"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Oligoryzomys_victus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hoopoe-billed_\u02bbakialoa"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Discus_engonatus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chilonopsis_subtruncatus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Keraea_garachicoensis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nearby_pearly_mussel"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Discula_lyelliana"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/St_Kilda_house_mouse"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pseudophilautus_halyi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Huahine_cuckoo-dove"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Giant_ghost-faced_bat"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/South_Island_k\u014dkako"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Wood_harrier"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Deloneura_immaculata"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Longjaw_cisco"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Navassa_curly-tailed_lizard"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Broad-faced_potoroo"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chirostoma_bartoni"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hawaii_mamo"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hispaniolan_edible_rat"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Newcombia_philippiana"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Silver_trout"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Atelopus_longirostris"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Laysan_dropseed_noctuid_moth"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Partula_eremita"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mauritius_owl"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bermuda_night_heron"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pahranagat_spinedace"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nesophontes"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mangaia_crake"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Puerto_Rican_flower_bat"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/True_pigtoe"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Oryzomys_nelsoni"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dysoneura"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bennu_heron"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Partula_imperforata"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rodrigues_rail"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/\u2018Eua_rail"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bishop's_\u02bb\u014d\u02bb\u014d"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hawaiian_rail"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tecopa_pupfish"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Stephanorhinus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pleurodonte_desidens"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Saint_Croix_racer"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rotund_rocksnail"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mauritian_turtle_dove"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hypnomys"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chilonopsis_subplicatus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Aldabra_brush_warbler"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Atelopus_vogli"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Amastra_reticulata"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Carelia_kalalauensis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Saint_Helena_swamphen"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Oncovena"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mecodema_punctellum"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cobble_elimia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bythinella_intermedia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kosrae_crake"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Caribbean_monk_seal"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tribonyx_hodgenorum"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Wahi_grosbeak"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cebu_hanging_parrot"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pig-footed_bandicoot"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lake_Pedder_earthworm"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hazel_pigtoe"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ptychochromoides_itasy"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chatham_kaka"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Perrin's_cave_beetle"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Maryland_darter"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mangareva_reed_warbler"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mautodontha_acuticosta"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Partula_remota"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Marcano's_solenodon"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Arcuate_pearly_mussel"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Laysan_honeycreeper"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rodrigues_giant_day_gecko"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Durango_shiner"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hoan_Kiem_turtle"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Achatinella_valida"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/New_Zealand_grayling"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Slender_Cuban_nesophontes"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Leucocharis_loyaltiensis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Agrotis_microreas"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Round_Island_burrowing_boa"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Saccocoma"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Leiostyla_abbreviata"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Perdicella_zebra"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Imber's_petrel"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Scioto_madtom"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Parras_characodon"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/E\u011firdir_minnow"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Carelia_paradoxa"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rhachis_sanguineus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/San_Benedicto_rock_wren"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vitrinula_hahajimana"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mautodontha_consimilis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sinployea_otareae"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lord_Howe_thrush"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Upland_moa"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alabama_clubshell"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kiritimati_sandpiper"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Saint_Helena_hoopoe"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/High-billed_crow"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Partula_salifera"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Straight-tusked_elephant"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mauritius_sheldgoose"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ptychodus_mortoni"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mamo"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/\u02bb\u0100maui"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Partula_callifera"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Advena_campbelli"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rhinodrilus_fafner"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Coosa_pigtoe"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Paradise_parrot"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Namibcypris"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dutch_Alcon_Blue"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pseudophilautus_eximius"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Posticobia_norfolkensis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gastrocopta_ogasawarana"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lord_Howe_gerygone"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Leucocharis_porphyrocheila"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pagoda_slitshell"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vitrinula_chichijimana"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Palaeoloxodon_chaniensis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Partula_robusta"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Steller's_sea_cow"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ribbed_elimia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Imposter_hutia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mauritian_wood_pigeon"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rodrigues_parrot"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chloridops"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pachyornis_australis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/\u02bbUla-\u02bbai-hawane"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Giant_solenodon"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Maui_\u02bbakepa"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Achatinella_buddii"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Brace's_emerald"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Maclear's_rat"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Acanthometropus_pecatonica"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Aldabra_banded_snail"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lord_Howe_fantail"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Niue_night_heron"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Samana_hutia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Red-moustached_fruit_dove"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ohridohauffenia_drimica"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Liocypris_grandis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bay_thrush"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Haast's_eagle"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Carelia_cumingiana"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ameiva_cineracea"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/O'ahu_petrel"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ciridops"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lesser_koa_finch"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Canary_Islands_oystercatcher"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dysoneuridae"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Elimia_lachryma"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tyto_pollens"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Greater_koa_finch"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Las_Vegas_dace"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Anabarilius_macrolepis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Coues'_gadwall"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Niue_rail"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Heath_hen"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Partula_approximata"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Daphnobela_miocaenica"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Neoplanorbis_umbilicatus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Partula_faba"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Greater_\u02bbamakihi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ovate_clubshell"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bonin_nankeen_night_heron"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/North_African_elephant"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Caldwellia_philyrina"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Oleacina_guadeloupensis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Megalomys_desmarestii"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/K\u0101ma\u02bbo"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kenai_Peninsula_wolf"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Quintalia_flosculus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Carelia_anceophila"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hesperocolletes_douglasi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chatham_bellbird"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Stonemyia_volutina"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Aptenodytes_ridgeni"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/High-spired_elimia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alaotra_grebe"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Helenodiscus_vernoni"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dinornis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pseudophilautus_stellatus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Graceful_priapella"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Huia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Taipidon_marquesana"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Partula_compacta"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Marstonia_olivacea"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mammuthus_creticus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Erepta_nevilli"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Zonites_siphnicus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Partula_labrusca"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Taipidon_anceyana"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Acorn_ramshorn"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Crescent_nail-tail_wallaby"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bunker's_woodrat"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lyrate_rocksnail"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Carelia_bicolor"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Partula_thalia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Snipe-rail"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jamaica_giant_galliwasp"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pachnodus_velutinus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chatham_penguin"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tristan_moorhen"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Short-spired_elimia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Thaumatodon_multilamellata"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gastrocopta_chichijimana"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Carelia_mirabilis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Large_Palau_flying_fox"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Blue-gray_mouse"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Red-headed_macaw"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Eelgrass_limpet"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Newton's_parakeet"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rodrigues_night_heron"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Carolina_parakeet"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Montane_hutia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Carelia_knudseni"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Digerus_gibberulus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Turtle-jawed_moa-nalo"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ptilodus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tule_shrew"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Southern_black_rhinoceros"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Laysan_millerbird"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sardinian_shrew"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Guadeloupe_parakeet"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Partula_microstoma"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Closed_elimia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Amastra_porcus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Xestospiza"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Partula_vittata"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kauai_palila"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/R\u00e9union_sheldgoose"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cuban_coney"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Achatinella_thaanumi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Shoal_sprite"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Eastern_moa"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Heteropsomys"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Colombian_grebe"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cyprinodon_ceciliae"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nesoryzomys_darwini"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Noronhomys"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Achatinella_dimorpha"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Afrocyclops_pauliani"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Red-throated_wood_rail"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lottia_edmitchelli"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Atlas_wild_ass"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Poko_noctuid_moth"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tritocleis_microphylla"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bonin_thrush"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Norfolk_starling"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Coelodonta_tologoijensis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tropidophora_desmazuresi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Huahine_rail"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pseudophilautus_leucorhinus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Clear_Lake_splittail"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Libera_tumuloides"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sea_mink"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Partula_cedista"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Carelia_necra"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Syrian_wild_ass"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Coregonus_bezola"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Japanese_river_otter"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dysoneura_trifurcata"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Catostomus_catostomus_cristatus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Partula_fusca"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Great_hopping_mouse"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Puerto_Rican_nesophontes"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Leithia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Carolina_elktoe"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Panulena_perrugosa"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Norfolk_thrush"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Oriente_cave_rat"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sardinian_pika"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Barbus_microbarbis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sinoto's_lorikeet"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/K\u0101k\u0101wahie"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Achatinella_juddii"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Partula_leptochila"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/L\u0101na'i_hookbill"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Labrador_duck"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Primitive_koa_finch"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Juliomys_anoblepas"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Carelia_olivacea"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chilonopsis_turtoni"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Long-tailed_hopping_mouse"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lana'i_'alauahio"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pagan_reed_warbler"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Carelia_tenebrosa"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Partula_variabilis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Maui_Nui_'akialoa"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lesser_\u02bbakialoa"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Amastra_subsoror"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Daphnobela"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Deepwater_cisco"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Smith_Island_cottontail"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Oahu_'akialoa"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mautodontha_consobrina"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Henderson_ground_dove"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Western_rufous_bristlebird"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Incerticyclus_martinicensis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Oceanic_eclectus_parrot"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lesser_bilby"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dusicyon_avus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Neoplanorbis_tantillus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Littoraria_flammea"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Coregonus_gutturosus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Carelia_lymani"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Atitl\u00e1n_grebe"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Plectostoma_sciaphilum"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Geomitra_delphinuloides"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dieffenbach's_rail"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Amastra_subrostrata"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Xerces_blue"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mauritian_giant_skink"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/South_Island_giant_moa"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/King_Island_emu"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Perdicella_fulgurans"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/R\u00e9union_fody"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Salado_shiner"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/R\u00e9union_owl"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Trochoidea_picardi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Partula_raiatensis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/South_Island_piopio"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Partula_turgida"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Schizoglossa_major"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Achatinella_juncea"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chilonopsis_helena"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Malagasy_crowned_eagle"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Belgrandiella_intermedia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Independence_Valley_tui_chub"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hirasea_acutissima"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Carelia_dolei"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gastric-brooding_frog"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Asian_ostrich"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nesoryzomys_indefessus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Little_Swan_Island_hutia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/North_Island_piopio"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chatham_rail"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tahiti_sandpiper"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nuku_Hiva_monarch"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Auckland_Islands_shore_plover"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gonidomus_newtoni"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Carelia_periscelis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Achatinella_abbreviata"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Amastra_cornea"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bernard's_wolf"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Procellaris_grotis_noctuid_moth"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kioea"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kaua\u02bbi_\u02bbakialoa"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Norfolk_boobook"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Whiteline_topminnow"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mauritius_blue_pigeon"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Marquesas_swamphen"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kangaroo_Island_emu"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mangaia_swiftlet"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sinployea_canalis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bar-winged_rail"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Guam_flycatcher"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gonospira_nevilli"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Amsterdam_wigeon"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Amastra_forbesi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lined_pocketbook"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nuku_Hiva_rail"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Geomitra_grabhami"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mautodontha_saintjohni"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Parras_pupfish"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Carelia_evelynae"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Laysan_rail"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Society_parakeet"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tropidophora_semilineata"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Eastwood's_long-tailed_seps"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Flores_cave_rat"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Goff's_pocket_gopher"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Narrow_catspaw"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Partula_castanea"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/R\u00e9union_rail"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/O\u02bbahu_\u02bb\u014d\u02bb\u014d"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Partula_exigua"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cyprinodon_arcuatus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mauritius_night_heron"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Salmo_pallaryi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bush_moa"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Techirghiol_stickleback"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Red_rail"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Yellow_pigtoe"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Plate-toothed_giant_hutia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Boulder_snail"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Campolaemus_perexilis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kaholuamano_noctuid_moth"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Forbes'_snipe"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lord_Howe_boobook"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Graecoanatolica_macedonica"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Martinique_amazon"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Levuana_moth"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Carelia_cochlea"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Battus_polydamas_antiquus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Henderson_archaic_pigeon"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tanna_ground_dove"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Oryzomys_antillarum"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tarpan"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Spectacled_cormorant"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Achatinella_decora"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/G\u00f6l\u00e7\u00fck_toothcarp"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rhynchopsitta_phillipsi"}}]}}], "entities": [], "relations": [{"URI": "http://dbpedia.org/ontology/animal", "surface form": "animals"}, {"URI": "http://dbpedia.org/ontology/quote", "surface form": "extinct"}]}, {"id": "122", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Who was the wife of President Lincoln?", "keywords": "wife, president, lincoln"}], "query": {"sparql": "PREFIX dbr: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT ?uri ?string WHERE { dbr:Abraham_Lincoln onto:spouse ?uri }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mary_Todd_Lincoln"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/USS_President_Lincoln_(1907)", "surface form": "President Lincoln"}], "relations": [{"URI": "http://dbpedia.org/ontology/spouse", "surface form": "wife"}]}, {"id": "111", "answertype": "number", "aggregation": true, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "How many awards has Bertrand Russell?", "keywords": "Bertrand Russell, awards"}], "query": {"sparql": "PREFIX dbr: <http://dbpedia.org/resource/> PREFIX dbp: <http://dbpedia.org/property/> SELECT (COUNT(?Awards) AS ?Counter) WHERE { dbr:Bertrand_Russell dbp:awards ?Awards }"}, "answers": [{"head": {"vars": ["c"]}, "results": {"bindings": [{"c": {"type": "literal", "value": "5"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Bertrand_Russell", "surface form": "Bertrand Russell"}], "relations": [{"URI": "http://dbpedia.org/property/awards", "surface form": "awards"}]}, {"id": "117", "answertype": "boolean", "aggregation": false, "onlydbo": false, "hybrid": false, "question": [{"language": "en", "string": "Is Pamela Anderson a vegan?", "keywords": "Pamela Anderson, vegan"}], "query": {"sparql": "PREFIX dbr: <http://dbpedia.org/resource/> ASK WHERE { dbr:Pamela_Anderson a <http://dbpedia.org/class/yago/WikicatAmericanVegans> }"}, "answers": [{"head": {}, "results": {}, "boolean": true}], "entities": [{"URI": "http://dbpedia.org/resource/Pamela_Anderson", "surface form": "Pamela Anderson"}, {"URI": "http://dbpedia.org/resource/Vegan_Virgin_Valentine", "surface form": "vegan"}], "relations": []}, {"id": "59", "answertype": "resource", "aggregation": false, "onlydbo": false, "hybrid": false, "question": [{"language": "en", "string": "Which space probes were sent into orbit around the sun?", "keywords": "space probes, orbit around the sun"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbc: <http://dbpedia.org/resource/Category:> PREFIX dct: <http://purl.org/dc/terms/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?s WHERE { ?s dct:subject dbc:Missions_to_the_Sun ; rdf:type ?type FILTER ( ?type IN (dbo:Satellite, dbo:ArtificialSatellite) ) }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/TRACE"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Koronas-Foton"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Geomagnetic_Field_Monitoring_Program_of_SUPARCO"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Advanced_Composition_Explorer"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Solar_Sentinels"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ulysses_(spacecraft)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Helios_(spacecraft)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pioneer_6,_7,_8,_and_9"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/STEREO"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Solar_Dynamics_Observatory"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Picard_(satellite)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Solar_and_Heliospheric_Observatory"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Solar_Probe_Plus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Reuven_Ramaty_High_Energy_Solar_Spectroscopic_Imager"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Solar_Orbiter"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hinode"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Interface_Region_Imaging_Spectrograph"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CubeSat_for_Solar_Particles"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Genesis_(spacecraft)"}}]}}], "entities": [], "relations": [{"URI": "http://dbpedia.org/ontology/area", "surface form": "space probes"}, {"URI": "http://dbpedia.org/ontology/course", "surface form": "orbit"}, {"URI": "http://dbpedia.org/ontology/year", "surface form": "sun"}]}, {"id": "113", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Which German cities have more than 250000 inhabitants?", "keywords": "city, Germany, inhabitants, more than 250000"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { { ?uri a <http://dbpedia.org/ontology/City> } UNION { ?uri a <http://dbpedia.org/ontology/Town> } ?uri <http://dbpedia.org/ontology/country> <http://dbpedia.org/resource/Germany> ; <http://dbpedia.org/ontology/populationTotal> ?population FILTER ( ?population > 250000 ) }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/M\u00fcnster"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hamburg"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hanover"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Berlin"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dresden"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/D\u00fcsseldorf"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Munich"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bonn"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Wiesbaden"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Karlsruhe"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dortmund"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Frankfurt"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Braunschweig"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cologne"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Duisburg"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nuremberg"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bochum"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Essen"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mannheim"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/M\u00f6nchengladbach"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Wuppertal"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bielefeld"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bremen"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Augsburg"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gelsenkirchen"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Stuttgart"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Germany", "surface form": "German cities"}, {"URI": "http://dbpedia.org/resource/German", "surface form": "German cities"}, {"URI": "http://dbpedia.org/resource/Population", "surface form": "250000 inhabitants"}], "relations": [{"URI": "http://dbpedia.org/ontology/country", "surface form": ""}, {"URI": "http://dbpedia.org/ontology/country", "surface form": ""}]}, {"id": "104", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Who is the daughter of Robert Kennedy married to?", "keywords": "Robert Kennedy, daughter, married"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Robert_F._Kennedy> <http://dbpedia.org/ontology/child> ?child . ?child <http://dbpedia.org/ontology/spouse> ?uri }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Andrew_Cuomo"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Robert_F._Kennedy", "surface form": "Robert Kennedy"}], "relations": [{"URI": "http://dbpedia.org/ontology/child", "surface form": "daughter"}, {"URI": "http://dbpedia.org/property/spouse", "surface form": "married"}]}, {"id": "10", "answertype": "number", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "How many students does the Free University of Amsterdam have?", "keywords": "Free University, Amsterdam, students"}], "query": {"sparql": "SELECT DISTINCT ?num WHERE { dbr:Vrije_Universiteit_Amsterdam <http://dbpedia.org/ontology/numberOfStudents> ?num }"}, "answers": [{"head": {"vars": ["c"]}, "results": {"bindings": [{"c": {"type": "literal", "value": "23656"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Vrije_Universiteit_Amsterdam", "surface form": "Free University of Amsterdam"}], "relations": [{"URI": "http://dbpedia.org/ontology/numberOfStudents", "surface form": "students"}]}, {"id": "1", "answertype": "number", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "What is the revenue of IBM?", "keywords": "revenue, ibm"}], "query": {"sparql": "PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT ?number WHERE { res:IBM onto:revenue ?number }"}, "answers": [{"head": {"vars": ["c"]}, "results": {"bindings": [{"c": {"type": "literal", "value": "8.1741E10"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/IBM", "surface form": "IBM"}], "relations": [{"URI": "http://dbpedia.org/ontology/revenue", "surface form": "revenue"}]}, {"id": "178", "answertype": "number", "aggregation": true, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "How many James Bond movies do exist?", "keywords": "how many, James Bond movies"}], "query": {"sparql": "SELECT (COUNT(DISTINCT ?uri) AS ?c) WHERE { ?uri dct:subject <http://dbpedia.org/resource/Category:James_Bond_films> }"}, "answers": [{"head": {"vars": ["c"]}, "results": {"bindings": [{"c": {"type": "literal", "value": "34"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/M_(James_Bond)", "surface form": "James Bond movies"}], "relations": [{"URI": "http://dbpedia.org/property/last", "surface form": "exist"}]}, {"id": "129", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Who does the voice of Bart Simpson?", "keywords": "voice, Bart Simpson"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Bart_Simpson> <http://dbpedia.org/property/voiceactor> ?uri }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nancy_Cartwright"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Bart_Simpson", "surface form": "Bart Simpson"}], "relations": [{"URI": "http://dbpedia.org/ontology/voice", "surface form": "voice"}]}, {"id": "183", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Who was Tom Hanks married to?", "keywords": "tom, hanks, married"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> SELECT DISTINCT ?uri WHERE { dbr:Tom_Hanks dbo:spouse ?uri }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rita_Wilson"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Tom_Hanks", "surface form": "Tom Hanks"}], "relations": [{"URI": "http://dbpedia.org/property/spouse", "surface form": "married"}]}, {"id": "181", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Through which countries does the Yenisei river flow?", "keywords": "Yenisei river, flow through, country"}], "query": {"sparql": "PREFIX res: <http://dbpedia.org/resource/> PREFIX dbp: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Yenisei_River <http://dbpedia.org/ontology/country> ?uri }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Russia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mongolia"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Countries_of_the_United_Kingdom", "surface form": "countries"}, {"URI": "http://dbpedia.org/resource/Yenisei_River", "surface form": "Yenisei river flow"}], "relations": []}, {"id": "7", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Give me all cars that are produced in Germany.", "keywords": "car, produce, Germany"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Automobile> { ?uri <http://dbpedia.org/ontology/assembly> <http://dbpedia.org/resource/Germany> } UNION { ?uri <http://dbpedia.org/property/assembly> <http://dbpedia.org/resource/Germany> } UNION { { ?uri <http://dbpedia.org/ontology/manufacturer> ?x } UNION { ?uri <http://dbpedia.org/property/manufacturer> ?x } { ?x <http://dbpedia.org/ontology/locationCountry> <http://dbpedia.org/resource/Germany> } UNION { ?x <http://dbpedia.org/ontology/location> <http://dbpedia.org/resource/Germany> } } }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mercedes-Benz_770"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mercedes-Benz_GLC-Class"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Volkswagen_Crafter"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ford_Model_T"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Opel_Combo"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Goliath_1100"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ford_Model_Y"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Opel_Mokka"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Volkswagen_Passat"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mercedes-Benz_E-Class_(C207)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Opel_Karl"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ruf_Turbo_R"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Porsche_993"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mercedes-Benz_E-Class_(W210)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Porsche_991"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chrysler_300__First_generation__1"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mercedes-Benz_R-Class"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Porsche_996"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Volkswagen_Santana"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Volkswagen_Plattenwagen"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Volkswagen_Cross_Coupe_GTE_Concept"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Volkswagen_New_Beetle"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Opel_Monza__2013_Monza_Concept__1"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Porsche_Cayenne"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mercedes-Benz_E-Class_(W211)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Audi_Coup\u00e9_(B2)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Meillerwagen"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Neoplan_Centroliner"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mercedes-Benz_SL-Class_(R230)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Holden_Astra"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Volkswagen_Polo"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Smart_Crosstown"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ford_K\u00f6ln"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Volkswagen_Type_147_Kleinlieferwagen"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Opel_8/40_PS"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Holden_Barina"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mercedes-Benz_E-Class_(W212)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/BMW_M6"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Borgward_BX7"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Opel_Insignia__Insignia__1"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Volkswagen_LT"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Volkswagen_Concept_BlueSport"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/BMW_M3__E90/92/93__1"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Audi_Quattro__Audi_Sport_Quattro_S1_E2__1"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mercedes-Benz_M-Class"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Volkswagen_GX3"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Volkswagen_Passat_(B8)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alpina_B10_Bi-Turbo"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Volkswagen_Type_14A_(Hebm\u00fcller_Cabriolet)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mercedes-Benz_SL-Class_(R231)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Opel_Frogster"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mercedes-Benz_A-Class"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ford_Escort_(Europe)__Third_generation__1"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Callaway_Cars__Callaway_C16__1"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mercedes-Benz_TN"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mercedes-Benz_CLK-Class"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lloyd_Arabella"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Volkswagen_SP2"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lloyd_600"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/ERuf_Model_A"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mercedes-Benz_Atego"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mercedes-Benz_E-Class_(W213)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/BMW_M3__E36__1"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Opel_1.2_litre"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/MAN_NG272"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Opel_Agila"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Opel_Omega__B2__1"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mercedes-Benz_540K"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Opel_Ascona"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Neoplan_N407"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Porsche_Boxster/Cayman"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Porsche_Panamera__Second_generation_971__1"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mercedes-Benz_SK"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Volkswagen_Fox"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ford_C-Max__First_generation__1"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Smart_electric_drive"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Volkswagen_Derby"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/BMW_1_Series_(F20)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Audi_920"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mercedes-Benz_CL-Class_(C216)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Benz_Patent-Motorwagen"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Opel_GTC"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Porsche_Panamera__First_generation_970__1"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Opel_Omega__A__1"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Volkswagen_LT__1st_generation__1"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Opel_Junior"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Audi_Quattro"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Volkswagen_Passat_Lingyu"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/BMW_M3__E46_M3__1"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Volkswagen_W12"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Opel_Super_6"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Audi_RS_2_Avant"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Opel_4/8_PS"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mercedes-Benz_CL-Class_(C215)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Porsche_968"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Opel_Corsa"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mercedes-Benz_GLA-Class"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Volkswagen_Eos"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Opel_Laubfrosch"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Borgward_P100"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Porsche_928"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Porsche_911_GT2"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ford_Taunus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Neoplan_Jumbocruiser"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Opel_Vectra"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Opel_Commodore"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Opel_5/12_PS"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Volkswagen_LT__2nd_generation__1"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ford_Escort_(Europe)__Sixth_generation__1"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mercedes-Benz_SSK"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Opel_Omega"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mercedes-Benz_190_SL"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Volkswagen_Passat_NMS"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ford_Escort_(Europe)__Fourth_generation__1"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mercedes-Benz_SLK-Class__Mercedes-Benz_R172__1"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Opel_Meriva"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Porsche_944"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/TechArt_Magnum"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Volkswagen_Karmann_Ghia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Volkswagen_New_Compact_Coup\u00e9"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Audi_RS_6"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Audi_RS_4"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Veritas_(automobile)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Volkswagen_Type_2_(T3)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mercedes-Benz_Vito"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/BMW_M6__Second_generation_E63/E64__1"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Plymouth_Voyager"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/MAN_NDxx3F"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/BMW_303__BMW_315/1,_BMW_319/1__1"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ruf_CTR"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Volkswagen_Beetle"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ford_P7"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Volkswagen_Bras\u00edlia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Opel_Kadett__D__1"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Volkswagen_Amarok"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Opel_Omega__B1__1"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mercedes_15/70/100_PS"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Volkswagen_Jetta"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Opel_Admiral"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Opel_Manta"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lloyd_300"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Volkswagen_Corrado"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/BMW_303__BMW_309__1"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/BMW_i3"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/BMW_5_Series_(E60)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Volkswagen_Transporter_(T4)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mercedes-Benz_SL-Class_(R129)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Messerschmitt_KR175"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/MAN_Lion's_Chassis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ford_Scorpio__First_generation__1"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mercedes-Benz_A-Class__W176__1"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mercedes-Benz_GL-Class"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Opel_RAK_e"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Opel_Kadett"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ford_Escort_(Europe)__Fifth_generation__1"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ruf_BTR"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mercedes-Benz_320A"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Volkswagen_Transporter_(T5)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Volkswagen_K70"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Volkswagen_Gol"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/MAN_Lion's_City"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mercedes-Benz_MB100"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Volkswagen_Taigun"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Volkswagen_Caddy"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Porsche_Carrera_GT"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Opel_Omega__V8_prototypes__1"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Volkswagen_Type_2__T1__1"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/MAN_NL202"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Opel_Kadett__E__1"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/9ff_GT9"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bentley_Continental_Flying_Spur_(2005)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/BMW_3_Series_(E90)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mercedes-Benz_Econic"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Volkswagen_Phideon"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Volkswagen_CC"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Opel_Olympia_Rekord"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mercedes_24/100/140_PS"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Maybach_57_and_62"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mercedes-Benz_Citan"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/BMW_7_Series_(F01)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ford_Taunus_P1"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Audi_Type_SS"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Heinkel_Kabine"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Audi_R8__V10_\u2013_Frontansicht,_13._M\u00e4rz_2011,_Wuppert__1"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ford_Taunus_P6"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/MAN_NLxx3F"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ford_Taunus_P2"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ford_Taunus_P3"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mercedes-Benz_Actros"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ford_Taunus_P4"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ford_Taunus_P5"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Opel_Kapit\u00e4n"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Isdera_Imperator_108i"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mercedes-Benz_S-Class_(C217)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Opel_Insignia__2003_Insignia_Concept__1"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Volkswagen_Scirocco"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/TMG_EV_P001"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mercedes-Benz_Silver_Lightning"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Volkswagen_Polo_Mk3"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Volkswagen_Polo_Mk2"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Volkswagen_Polo_Mk5"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Volkswagen_Polo_Mk4"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/BMW_7_Series_(G11)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Volkswagen_Schwimmwagen"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/BMW_i8"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Volkswagen_Lavida"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ford_Taunus_G93A"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Opel_GT"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Trabant"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Neoplan_Skyliner"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/BMW_7_Series_(E38)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mercedes-Benz_F-Cell"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mercedes-Benz_380_(1933)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mercedes-Benz_F125"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Volkswagen_Passat_Lingyu__Volkswagen_Passat_Lingyu__1"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mercedes-Benz_CLK_GTR"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Audi_A2"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Volkswagen_K\u00fcbelwagen"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Opel_GT__GT__1"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mercedes-AMG_GT"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mercedes-Benz_CLA-Class"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Opel_Speedster__Opel_ECO_Speedster__1"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lloyd_400"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Audi_A5__8T__1"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Volkswagen_Golf"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Opel_Flextreme_GT/E"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/B\u00fcssing_A5P"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ruf_CTR2"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ford_Eifel"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dodge_Viper"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/BMW_M5__BMW_E34_M5__1"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mercedes-Benz_G-Class"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Opel_Cascada"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mercedes-Benz_SLS_AMG"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Opel_Senator__B__1"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ford_Focus_Electric"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Saturn_Vue__Second_generation__1"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/MAN_SL200"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/MAN_SL202"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Benz_10/30_PS"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Opel_Flextreme"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/BMW_M3__E30__1"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Volkswagen_CrossBlue"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Opel_(Olympia)_Rekord_P1"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Opel_Rekord__Series_E__1"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mercedes-Benz_S-Class"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Opel_Regent"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/BMW_M3__F80__1"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/BMW_M5__BMW_E39_M5__1"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mercedes-Maybach_6"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mercedes-Benz_B-Class"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Volkswagen_Concept_D"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/BMW_8_Series"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Citro\u00ebn_Traction_Avant"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Volkswagen_Concept_A"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Volkswagen_Tiguan"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Opel_Senator"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Blitzen_Benz"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Opel_1.8_litre"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/BMW_New_Class"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mercedes-Benz_300_SL"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Benz_Velo"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Opel_2.0_litre"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Goliath_Pioneer"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Opel_Sintra"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bentley_Continental_Flying_Spur_(2005)__Flying_Spur__1"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ford_Model_A_(1927\u201331)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chrysler_Cirrus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Neoplan_N4009"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Borgward_Hansa_1500"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Volkswagen_Sharan"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mercedes-Benz_9G-Tronic_transmission"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Opel_Antara"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/BMW_7_Series_(E32)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Opel_Calibra"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Opel_Rekord_P2"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Porsche_Mission_E"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Opel_Kadett_A"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Opel_Kadett_C"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Opel_Kadett_B"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cadillac_Catera"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Audi_Front"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mercedes-Benz_SL-Class"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Volkswagen_Citi_Golf"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Volkswagen_1-litre_car"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/BMW_M5__BMW_E28_M5__1"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Volkswagen_Phaeton"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ford_Cougar"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mercedes-Benz_CLS-Class"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Opel_Senator__A__1"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Merkur_XR4Ti"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ford_Scorpio"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Volkswagen_181"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mercedes-Benz_7G-Tronic_transmission"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mercedes-Benz_C-Class_(W205)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mercedes-Benz_W191"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Volkswagen_Lupo"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Volkswagen_Beetle_(A5)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/BMW_6_Series_(E63)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/BMW_5_Series_(F10)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/BMW_4_Series_(F32)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Maybach_Zeppelin"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mercedes-Benz_260_D"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Brabus_C_V8"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jeep_Wrangler"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Opel_Blitz"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ford_Taunus_TC"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mercedes-Benz_CLS-Class__W218__1"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Volkswagen_Polo_G40"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Neoplan_Transliner"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mercedes-Benz_W180"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mercedes-Benz_C-Class_(W204)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Volkswagen_Taro"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sachsenring_P240"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Opel_Patent_Motor_Car"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mercedes-Benz_Sprinter"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Opel_Insignia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mercedes-Benz_W189"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mercedes-Benz_W188"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mercedes-Benz_W187"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/MAN_24.3x0"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Unimog_435"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mercedes-Benz_W186"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Opel_Astra"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Opel_Slalom"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/BMW_5_Series_(F10)__BMW_F10_M5__1"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/BMW_3_Series_(E36)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Audi_Le_Mans_quattro"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mercedes-Benz_M110_engine"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Goliath_GP700"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mercedes-Benz_C-Class_(W203)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mercedes-Benz_F700"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Opel_Monza"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mercedes-Benz_W136"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Campeonato_Brasileiro_de_Marcas_e_Pilotos"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Volkswagen_Up"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mercedes-Benz_R107_and_C107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mercedes-Benz_4G-Tronic_transmission"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Borgward_B_611"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mercedes-Benz_NG"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Volkswagen_ARVW"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/BMW_3/20"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fiat_508"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mercedes-Benz_W123"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/BMW_7_Series_(E65)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Opel_Ascona__B__1"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ford_Escort_(Europe)__Second_generation__1"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Opel_Signum"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mercedes-Benz_W126"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/GM_HydroGen3"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Volkswagen_Passat_(B1)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mercedes-Benz_W124"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chrysler_Crossfire"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Trabant_601"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mercedes-Benz_W128"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Volkswagen_Touran"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Opel_Rekord_Series_E__1__1"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mercedes-Benz_O405"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mercedes-Benz_Ponton"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Opel_Rekord_Series_B"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Opel_Rekord_Series_C"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Opel_Rekord_Series_D"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Opel_Rekord_Series_E"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/MAN_NG272(2)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Wartburg_1.3"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Volkswagen_Iltis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mercedes-Benz_CL-Class"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Opel_Rekord_Series_A"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mercedes-Benz_GLK-Class"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mercedes-Benz_W153"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Opel_10/40_PS"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Opel_Ascona__C__1"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Opel_Rekord_Series_E__2__1"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Neoplan_N4016"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Volkswagen_Golf_Mk7"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Volkswagen_Golf_Mk6"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ford_Escort_(Europe)__First_generation__1"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Opel_Diplomat"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/BMW_M6__Third_generation_F12/F13__1"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mercedes-Benz_W140"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mercedes-Benz_W143"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Artega_GT"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mercedes-Benz_W142"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Volkswagen_Golf_Mk1"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Volkswagen_Golf_Mk5"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Volkswagen_Golf_Mk4"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Porsche_Macan"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Volkswagen_Golf_Mk3"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mercedes-Benz_5G-Tronic_transmission"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Volkswagen_Golf_Mk2"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Brabus_Bullit"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Volkswagen_EA489_Basistransporter"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mercedes-Benz_W21"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mercedes-Benz_S-Class_(W222)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dodge_Stratus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mercedes-Benz_SLK-Class_(R172)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Brabus_E_V12"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mercedes-Benz_Vario"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/BMW_M5__BMW_E60_M5__1"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ford_Consul__Granada_Mark_I_based__1"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mercedes-Benz_Bionic"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Opel_Ascona__A__1"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Opel_Adam"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Porsche_550"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Volkswagen_Kommandeurswagen"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/BMW_2_Series_(F22)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mercedes-Benz_W18"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mercedes-Benz_500E"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mercedes-Benz_W15"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Volkswagen_Passat_(B6)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Audi_R8"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mercedes-Benz_500K"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/BMW_303"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/BMW_1_Series_(E87)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mercedes-Benz_S-Class_(W221)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mercedes-Benz_W11"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mercedes-Benz_600"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mercedes-Benz_W10"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Opel_K-180"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Volkswagen_Type_4"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mercedes-Benz_C-Class"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Merkur_Scorpio"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Audi_Type_P"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Audi_Type_R"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Opel_1.3_litre"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Audi_Type_T"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Volkswagen_Type_2"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Volkswagen_Type_3"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Audi_Type_G"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Volkswagen_T-Roc"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Audi_Type_K"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Audi_Type_M"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mercedes-Benz_W201"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mercedes-Benz_W08"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Audi_S5"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Audi_S4"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/E-Wolf_e2"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Audi_S6"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Audi_Type_A"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Volkswagen_Passat_(B5)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Audi_Type_B"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mercedes-Benz_W03"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Audi_Type_C"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ruf_Rt_12"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mercedes-Benz_W02"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Audi_Type_D"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Opel_Trixx"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Audi_Type_E"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mercedes-Benz_S-Class_(W220)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Opel_Tigra"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Brabus_Rocket"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mercedes-Benz_SLK-Class_(R170)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Smart_Fortwo"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Opel_Rekord"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/BMW_2_Series_Active_Tourer"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mercedes-Benz_W112"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mercedes-Benz_W111"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mercedes-Benz_F800"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mercedes-Benz_W110"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mercedes-Benz_E-Class"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Neoplan_Megaliner"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mercedes-Benz_W116"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mercedes-Benz_W114"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mercedes-Benz_W113"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ruf_RGT"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Volkswagen_Passat_(B4)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mercedes-Benz_BlueZERO"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/BMW_328"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/BMW_327"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mercedes-Benz_W31"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CityEl"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Borgward_Hansa_2400"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Borgward_Isabella"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/BMW_320"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Opel_Zafira"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Opel_Olympia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Opel_10/30_(10/35)_PS"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ruf_RK_Coupe"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Opel_Kadett__I__1"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mercedes-Benz_W105"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mercedes-Benz_W108"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/BMW_M5__BMW_F10_M5__1"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Germany", "surface form": "Germany"}], "relations": [{"URI": "http://dbpedia.org/ontology/management", "surface form": "cars"}, {"URI": "http://dbpedia.org/ontology/author", "surface form": "produced"}]}, {"id": "135", "answertype": "date", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "When did Michael Jackson die?", "keywords": "Michael Jackson, die"}], "query": {"sparql": "SELECT DISTINCT ?date WHERE { <http://dbpedia.org/resource/Michael_Jackson> <http://dbpedia.org/ontology/deathDate> ?date }"}, "answers": [{"head": {"vars": ["date"]}, "results": {"bindings": [{"date": {"type": "literal", "value": "2009-6-25"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Michael_Jackson", "surface form": "Michael Jackson"}], "relations": [{"URI": "http://dbpedia.org/ontology/deathDate", "surface form": "die"}]}, {"id": "50", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "What is the highest volcano in Africa?", "keywords": "highest, volcano, Africa"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Volcano> ; <http://dbpedia.org/ontology/locatedInArea> ?area . ?area dct:subject dbc:Countries_in_Africa . ?uri <http://dbpedia.org/ontology/elevation> ?elevation } ORDER BY DESC(?elevation) LIMIT 1"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mount_Kilimanjaro"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Africa", "surface form": "Africa"}], "relations": [{"URI": "http://dbpedia.org/ontology/head", "surface form": "highest volcano"}]}, {"id": "39", "answertype": "resource", "aggregation": true, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Which poet wrote the most books?", "keywords": "poet, most, books"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/occupation> <http://dbpedia.org/resource/Poet> . ?x <http://dbpedia.org/ontology/author> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Book> . } ORDER BY DESC(COUNT(?x)) OFFSET 0 LIMIT 1"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jules_Verne"}}]}}], "entities": [], "relations": [{"URI": "http://dbpedia.org/ontology/author", "surface form": "poet"}, {"URI": "http://dbpedia.org/ontology/composer", "surface form": "wrote"}, {"URI": "http://dbpedia.org/ontology/volume", "surface form": "books"}]}, {"id": "83", "answertype": "resource", "aggregation": false, "onlydbo": false, "hybrid": false, "question": [{"language": "en", "string": "Give me all gangsters from the prohibition era.", "keywords": "gangsters, prohibition era"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dct: <http://purl.org/dc/terms/> PREFIX dbc: <http://dbpedia.org/resource/Category:> PREFIX dbr: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { ?uri dbo:occupation dbr:Gangster ; dct:subject dbc:Prohibition-era_gangsters }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Louis_Buchalter"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gus_Winkler"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Salvatore_D'Aquila"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dean_O'Banion"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mike_Genna"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Joe_Masseria"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vito_Bonventre"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ciro_Terranova"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bugsy_Siegel"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Al_Capone"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Roger_Touhy"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/William_Egan_(gangster)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bugs_Moran"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Louis_Campagna"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lucky_Luciano"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Owney_Madden"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nicolo_Schiro"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fred_Burke"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Leo_Vincent_Brothers"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Salvatore_Maranzano"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/John_%22Pudgy%22_Dunn"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ignazio_Lupo"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Gangsters_of_the_Frontier", "surface form": "Gangsters"}], "relations": [{"URI": "http://dbpedia.org/ontology/time", "surface form": "prohibition era"}]}, {"id": "71", "answertype": "resource", "aggregation": false, "onlydbo": false, "hybrid": false, "question": [{"language": "en", "string": "Give me all spacecrafts that flew to Mars.", "keywords": "spacecrafts, flew to, Mars"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbc: <http://dbpedia.org/resource/Category:> PREFIX dct: <http://purl.org/dc/terms/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?s WHERE { ?s dct:subject dbc:Mars_rovers ; rdf:type ?type FILTER ( ?type IN (dbo:Satellite, dbo:ArtificialSatellite) ) }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/2020_Chinese_Mars_Mission"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mars_Science_Laboratory"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Curiosity_(rover)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/MELOS"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mars_Exploration_Rover"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Spirit_(rover)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/ExoMars_(rover)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mars_2020"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Astrobiology_Field_Laboratory"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mars_2"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mars_Pathfinder"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sojourner_(rover)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Opportunity_(rover)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mars_Astrobiology_Explorer-Cacher"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mars_3"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Spacecraft", "surface form": "spacecrafts"}, {"URI": "http://dbpedia.org/resource/Mars", "surface form": "Mars"}], "relations": [{"URI": "http://dbpedia.org/ontology/circulation", "surface form": "flew"}]}, {"id": "213", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Show me all Czech movies.", "keywords": "Czech movies"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Film> ; <http://dbpedia.org/ontology/country> <http://dbpedia.org/resource/Czech_Republic> }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Red_Baron_(2008_film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rebelov\u00e9"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Goat_Story"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Last_Train_(2006_film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Ninth_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Goat_Story_2"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Illusionist_(2006_film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hard_to_Be_a_God_(2013_film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Body_Without_Soul"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Divided_We_Fall_(film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Witnesses_(film_series)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ro(c)k_podvra\u0165\u00e1k\u016f"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Magical_Duvet"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tobruk_(2008_film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Choking_Hazard"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bach's_Fight_for_Freedom"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Brothers_Grimm_(film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Life_and_Extraordinary_Adventures_of_Private_Ivan_Chonkin"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cosy_Dens"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bad_Company_(2002_film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/One_Night_in_One_City"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Cycle_(2009_film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Year_of_the_Devil"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Oliver_Twist_(2005_film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/ROMing"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Not_Angels_But_Angels"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Shoes_(2012_film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sk\u0159\u00edtek"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/V\u00e1clav_(film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Visitors:_Bastille_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/\u017delary"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Golet_v_\u00fadol\u00ed"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Solomon_Kane_(film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Janosik._Prawdziwa_historia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lea_(film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/In_the_Mirror_of_Maya_Deren"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Babicka_(2003_film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Krut\u00e9_radosti"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pusinky"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Shadow_over_Prague"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/All_My_Loved_Ones"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Pagan_Queen"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kooky"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Normal_(2009_film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Snake_Brothers"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Little_Otik"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Stolen_Kosovo"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Something_Like_Happiness"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Revenge_of_the_Whore"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Czech_Republic", "surface form": "Czech movies"}, {"URI": "http://dbpedia.org/resource/The_Movies_(film)", "surface form": "Czech movies"}], "relations": [{"URI": "http://dbpedia.org/ontology/show", "surface form": "show"}, {"URI": "http://dbpedia.org/ontology/country", "surface form": ""}]}, {"id": "209", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Give me all taikonauts.", "keywords": "taikonauts"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { { ?uri a <http://dbpedia.org/ontology/Astronaut> ; <http://dbpedia.org/ontology/nationality> <http://dbpedia.org/resource/People's_Republic_of_China> } UNION { ?uri a <http://dbpedia.org/ontology/Astronaut> ; <http://dbpedia.org/ontology/nationality> <http://dbpedia.org/resource/China> } }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tao_Jiali"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nie_Haisheng"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fei_Junlong"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Zhai_Zhigang"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Zhang_Xiaoguang"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chen_Dong_(astronaut)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jing_Haipeng"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Astronaut", "surface form": "Taikonauts"}], "relations": []}, {"id": "105", "answertype": "resource", "aggregation": true, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Which countries have more than ten volcanoes?", "keywords": "countries, more than ten volcanoes"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x a <http://dbpedia.org/ontology/Volcano> ; <http://dbpedia.org/ontology/locatedInArea> ?uri . ?uri a <http://dbpedia.org/ontology/Country> } GROUP BY ?uri HAVING ( COUNT(?x) > 10 )"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ecuador"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/El_Salvador"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Guatemala"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Japan"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bolivia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Russia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ethiopia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Colombia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/United_States"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Argentina"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Indonesia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chile"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Papua_New_Guinea"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Countries_of_the_United_Kingdom", "surface form": "countries"}, {"URI": "http://dbpedia.org/resource/Volcanoes_National_Park", "surface form": "volcanoes"}], "relations": []}, {"id": "52", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Give me all movies with Tom Cruise.", "keywords": "movies, tom, cruise"}], "query": {"sparql": "PREFIX res: <http://dbpedia.org/resource/> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Film { ?uri prop:starring res:Tom_Cruise } UNION { ?uri onto:starring res:Tom_Cruise } OPTIONAL { ?uri rdfs:label ?string FILTER ( lang(?string) = \"en\" ) } }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/All_the_Right_Moves_(film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Collateral_(film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Interview_with_the_Vampire_(film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Outsiders_(film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Far_and_Away"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Last_Samurai"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Top_Gun"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Risky_Business"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/A_Few_Good_Men"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Color_of_Money"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Mummy_(2017_film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jerry_Maguire"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Legend_(1985_film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vanilla_Sky"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Valkyrie_(film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Knight_and_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lions_for_Lambs"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mission:_Impossible_(film_series)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cocktail_(1988_film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mission:_Impossible_(film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Born_on_the_Fourth_of_July_(film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Magnolia_(film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Firm_(1993_film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Minority_Report_(film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rain_Man"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Losin'_It"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Tom_Cruise", "surface form": "Tom Cruise"}], "relations": [{"URI": "http://dbpedia.org/ontology/film", "surface form": "movies"}]}, {"id": "102", "answertype": "date", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "When did Dracula's creator die?", "keywords": "Dracula, creator, die"}], "query": {"sparql": "SELECT DISTINCT xsd:date(?date) WHERE { <http://dbpedia.org/resource/Count_Dracula> <http://dbpedia.org/ontology/creator> ?x . ?x <http://dbpedia.org/ontology/deathDate> ?date. }"}, "answers": [{"head": {"vars": ["date"]}, "results": {"bindings": [{"date": {"type": "literal", "value": "1912-04-20"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Count_Dracula", "surface form": "Dracula"}], "relations": [{"URI": "http://dbpedia.org/property/producer", "surface form": " creator"}, {"URI": "http://dbpedia.org/ontology/deathDate", "surface form": "die"}]}, {"id": "21", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Who created English Wikipedia?", "keywords": "created, english, wikipedia"}], "query": {"sparql": "PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT ?uri WHERE { <http://dbpedia.org/resource/Wikipedia> onto:author ?uri }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jimmy_Wales"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Larry_Sanger"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/English_Wikipedia", "surface form": "English Wikipedia"}], "relations": [{"URI": "http://dbpedia.org/ontology/author", "surface form": "created"}]}, {"id": "34", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Give me all female German chancellors.", "keywords": "German chancellor, female"}], "query": {"sparql": "PREFIX res: <http://dbpedia.org/resource/> PREFIX dbp: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Chancellor_of_Germany dbp:incumbent ?uri }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Angela_Merkel"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/List_of_German_female_artists", "surface form": "female German chancellors"}], "relations": []}, {"id": "145", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Who owns Aldi?", "keywords": "own, Aldi"}], "query": {"sparql": "PREFIX res: <http://dbpedia.org/resource/> PREFIX dbp: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Aldi dbp:founders ?uri }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Theo_Albrecht"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Karl_Albrecht"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Aldi", "surface form": "Aldi"}], "relations": [{"URI": "http://dbpedia.org/ontology/family", "surface form": "owns"}]}, {"id": "154", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Which books were written by Danielle Steel?", "keywords": "books, written, danielle, steel"}], "query": {"sparql": "PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX foaf: <http://xmlns.com/foaf/0.1/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT ?uri WHERE { ?uri rdf:type onto:Book ; onto:author <http://dbpedia.org/resource/Danielle_Steel> }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Thurston_House_(novel)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Message_from_Nam"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Daddy_(novel)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Toxic_Bachelors"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_House_(novel)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Five_Days_in_Paris"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/H.R.H._(novel)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Passion's_Promise"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Honor_Thyself"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/A_Good_Woman_(novel)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Amazing_Grace_(novel)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Betrayal_(Steel_novel)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/A_Perfect_Stranger"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fine_Things"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Matters_of_the_Heart_(novel)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Zoya_(novel)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Miracle_(novel)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Big_Girl_(novel)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Coming_Out_(novel)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Silent_Honor"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Accident_(novel)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Season_of_Passion"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ransom_(Steel_novel)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mixed_Blessings_(novel)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jewels_(novel)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Southern_Lights_(novel)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Wanderlust_(Steel_novel)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Full_Circle_(novel)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/One_Day_at_a_Time_(novel)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sunset_in_St._Tropez"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Echoes_(Steel_novel)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Gift_(Steel_novel)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Crossings_(Steel_novel)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/No_Greater_Love_(novel)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Impossible_(novel)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Second_Chance_(Steel_novel)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Special_Delivery_(novel)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Family_Album_(novel)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Now_and_Forever_(novel)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rogue_(novel)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hotel_Vendome_(novel)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Friends_Forever_(novel)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Safe_Harbour_(novel)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kaleidoscope_(novel)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sisters_(Steel_novel)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bungalow_2"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Family_Ties_(novel)"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Danielle_Steel", "surface form": "Danielle Steel"}], "relations": [{"URI": "http://dbpedia.org/ontology/volume", "surface form": "books"}, {"URI": "http://dbpedia.org/ontology/writer", "surface form": "written"}]}, {"id": "198", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Who was influenced by Socrates?", "keywords": "influenced, Socrated"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/influencedBy> <http://dbpedia.org/resource/Socrates> }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Peter_Kreeft"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Epictetus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Seyhan_Kurt"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Allan_Bloom"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Diogenes_of_Sinope"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Georg_Wilhelm_Friedrich_Hegel"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lucian"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Euclid_of_Megara"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pyrrho"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/John_Henry_Newman__Western_philosophy__1"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Niccol\u00f2_Machiavelli"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Aristippus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Edmund_Burke"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Traian_Br\u0103ileanu"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Karl_Popper"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hannah_Arendt"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Aristotle"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ya\u015far_Nuri_\u00d6zt\u00fcrk"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Plato"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Antisthenes"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Leo_Strauss"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/S\u00f8ren_Kierkegaard"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Socrates", "surface form": "Socrates"}], "relations": [{"URI": "http://dbpedia.org/ontology/influenced", "surface form": "influenced"}]}, {"id": "162", "answertype": "number", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "How deep is Lake Chiemsee?", "keywords": "Lake Chiemsee, depth"}], "query": {"sparql": "SELECT DISTINCT ?n WHERE { <http://dbpedia.org/resource/Chiemsee> <http://dbpedia.org/ontology/maximumDepth> ?n }"}, "answers": [{"head": {"vars": ["c"]}, "results": {"bindings": [{"c": {"type": "literal", "value": "72.7"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Chiemsee", "surface form": "Lake Chiemsee"}], "relations": [{"URI": "http://dbpedia.org/ontology/capital", "surface form": "deep"}]}, {"id": "212", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Which companies work in the aerospace industry as well as in medicine?", "keywords": "company, aerospace industry, medicine"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { ?uri a dbo:Company ; dbo:industry dbr:Aerospace ; dbo:industry dbr:Medical }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/ATI_425_Titanium_Alloy"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Radiall"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Companies_listed_on_the_New_York_Stock_Exchange_(J)", "surface form": "companies"}, {"URI": "http://dbpedia.org/resource/Medicine", "surface form": "medicine"}], "relations": [{"URI": "http://dbpedia.org/ontology/service", "surface form": "work"}, {"URI": "http://dbpedia.org/property/industry", "surface form": "aerospace industry"}]}, {"id": "96", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Which professional surfers were born on the Philippines?", "keywords": "professional surfer, born, Philippines"}], "query": {"sparql": "PREFIX dbr: <http://dbpedia.org/resource/> PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { ?uri dbo:occupation dbr:Surfer ; dbo:birthPlace res:Philippines }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Marcus_Adoro"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Philippines", "surface form": "Philippines"}], "relations": [{"URI": "http://dbpedia.org/property/authority", "surface form": "professional surfers"}, {"URI": "http://dbpedia.org/ontology/birthPlace", "surface form": "born"}]}, {"id": "40", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Who were the parents of Queen Victoria?", "keywords": "parents, Queen Victoria"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Queen_Victoria dbo:parent ?uri }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Princess_Victoria_of_Saxe-Coburg-Saalfeld"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Prince_Edward,_Duke_of_Kent_and_Strathearn"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Queen_Victoria", "surface form": "Queen Victoria"}], "relations": [{"URI": "http://dbpedia.org/ontology/parent", "surface form": "parents"}]}, {"id": "79", "answertype": "boolean", "aggregation": false, "onlydbo": false, "hybrid": false, "question": [{"language": "en", "string": "Are there any castles in the United States?", "keywords": "castles, United States"}], "query": {"sparql": "PREFIX dct: <http://purl.org/dc/terms/> PREFIX dbc: <http://dbpedia.org/resource/Category:> ASK WHERE { ?uri dct:subject dbc:Castles_in_the_United_States }"}, "answers": [{"head": {}, "results": {}, "boolean": true}], "entities": [{"URI": "http://dbpedia.org/resource/United_States", "surface form": "United States"}], "relations": [{"URI": "http://dbpedia.org/ontology/class", "surface form": "castles"}]}, {"id": "141", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Which languages are spoken in Estonia?", "keywords": "language, spoken, Estonia"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/spokenIn> <http://dbpedia.org/resource/Estonia> }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Laiuse_Romani_language"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Estonian_Sign_Language"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Seto_dialect"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Russian_Sign_Language"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Baltic_Romani"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/V\u00f5ro_language"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Estonian_language"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Modern_Swedish"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Estonia", "surface form": "Estonia"}], "relations": [{"URI": "http://dbpedia.org/ontology/language", "surface form": "languages"}, {"URI": "http://dbpedia.org/ontology/spokenIn", "surface form": "spoken"}]}, {"id": "80", "answertype": "resource", "aggregation": false, "onlydbo": false, "hybrid": false, "question": [{"language": "en", "string": "Give me a list of all critically endangered birds.", "keywords": "list, critically endangered birds"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dct: <http://purl.org/dc/terms/> PREFIX dbc: <http://dbpedia.org/resource/Category:> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri ?p WHERE { ?uri rdf:type dbo:Bird { ?uri dbo:conservationStatus \"CR\" } UNION { ?uri dct:subject dbc:Critically_endangered_animals } }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fatu_Hiva_monarch"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rota_white-eye"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Seychelles_paradise_flycatcher"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/White-eyed_river_martin"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Giant_ibis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pink-headed_duck"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Okinawa_woodpecker"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Carrizal_seedeater"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Makira_woodhen"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bahama_oriole"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Amsterdam_albatross"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mauritius_olive_white-eye"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bryan's_shearwater"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tahiti_monarch"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Christmas_frigatebird"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Waved_albatross"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Medium_tree_finch"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/White-bellied_heron"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Swift_parrot"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Blue-winged_racket-tail"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sumatran_ground_cuckoo"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chinese_crested_tern"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sangihe_shrikethrush"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Floreana_mockingbird"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/\u02bbAkohekohe"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hoary-throated_spinetail"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Millerbird"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Blue-throated_macaw"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Uluguru_bushshrike"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Blue-banded_kingfisher"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Zapata_rail"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Banggai_crow"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fiji_petrel"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dusky_starfrontlet"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Stresemann's_bristlefront"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Socorro_mockingbird"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Siau_scops_owl"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/S\u00e3o_Tom\u00e9_grosbeak"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Slender-billed_curlew"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cherry-throated_tanager"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/New_Caledonian_rail"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Brazilian_merganser"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Grenada_dove"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cone-billed_tanager"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mangrove_finch"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Taita_thrush"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Blue-fronted_lorikeet"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ivory-billed_woodpecker"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Red-vented_cockatoo"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Indian_vulture"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sociable_lapwing"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Red-headed_vulture"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/R\u00fcppell's_vulture"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Helmeted_hornbill"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Santa_Marta_wren"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Siberian_crane"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/White-collared_kite"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Balearic_shearwater"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/S\u00e3o_Tom\u00e9_fiscal"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Laysan_duck"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Taita_apalis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Yellow-crested_cockatoo"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Red-throated_lorikeet"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Marquesan_kingfisher"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Antioquia_brush_finch"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Northern_bald_ibis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Grey-breasted_parakeet"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Puaiohi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Black_stilt"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Maui_parrotbill"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kaua\u02bbi_nukupu\u02bbu"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pernambuco_pygmy_owl"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mangareva_kingfisher"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Juan_Fern\u00e1ndez_firecrown"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Golden_white-eye"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Long-billed_forest_warbler"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/White-winged_guan"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Magenta_petrel"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Coxen's_fig_parrot"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/California_condor"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sulu_hornbill"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Flores_hawk-eagle"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alagoas_foliage-gleaner"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nihoa_millerbird"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Spoon-billed_sandpiper"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/S\u00e3o_Tom\u00e9_ibis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jerdon's_courser"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Raso_lark"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Colorful_puffleg"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hooded_vulture"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Western_ground_parrot"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/R\u00e9union_cuckooshrike"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Black-hooded_coucal"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tooth-billed_pigeon"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chestnut-capped_piha"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rio_Branco_antbird"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sangihe_white-eye"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jatayu_Conservation_Breeding_Centre,_Pinjore__CR__1"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gough_finch"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sulu_bleeding-heart"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Munchique_wood_wren"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/New_Caledonian_owlet-nightjar"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/\u2018Akeke\u2018e"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Black-breasted_puffleg"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chatham_shag"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Isabela_oriole"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Javan_green_magpie"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Karthala_scops_owl"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Blue-billed_curassow"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Malherbe's_parakeet"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mindoro_bleeding-heart"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Junin_grebe"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chilean_woodstar"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Madagascan_fish_eagle"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Horned_curassow"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cerulean_paradise_flycatcher"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Anjouan_scops_owl"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Great_Indian_bustard"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Masafuera_rayadito"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nightingale_reed_warbler"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Baer's_pochard"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Edwards's_pheasant"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gorgeted_puffleg"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Black-winged_starling"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Forest_owlet"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Walden's_hornbill"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Townsend's_shearwater"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Beck's_petrel"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Blue-bearded_helmetcrest"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/White-backed_vulture"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/White-rumped_vulture"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sira_curassow"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/\u02bbAkikiki"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Glaucous_macaw"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bengal_florican"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Philippine_eagle"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gran_Canaria_blue_chaffinch"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cebu_flowerpecker"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pohnpei_starling"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Black-chinned_monarch"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Blue-crowned_laughingthrush"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Djibouti_francolin"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bali_myna"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mariana_crow"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bugun_liocichla"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Negros_fruit_dove"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alagoas_antwren"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Palila"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Orange-bellied_parrot"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/White-shouldered_ibis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rio_de_Janeiro_antwren"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Puerto_Rican_amazon"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cozumel_thrasher"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Royal_cinclodes"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Semper's_warbler"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Silvery_pigeon"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Polynesian_ground_dove"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nihoa_finch"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Madagascan_pochard"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sapphire-bellied_hummingbird"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bogot\u00e1_sunangel"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Niceforo's_wren"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Purple-winged_ground_dove"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mascarene_petrel"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/New_Caledonian_lorikeet"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Saipan_reed_warbler"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ridgway's_hawk"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Slender-billed_vulture"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Maui_nukupu\u02bbu"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Negros_bleeding-heart"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Crow_honeyeater"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Trinidad_piping_guan"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/White-bellied_cinclodes"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Regent_honeyeater"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Moheli_scops_owl"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tristan_albatross"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Saint_Helena_plover"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Montserrat_oriole"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gal\u00e1pagos_petrel"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cuban_kite"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/R\u00fcck's_blue_flycatcher"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Blue-eyed_ground_dove"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Short-crested_coquette"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Iquitos_gnatcatcher"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Araripe_manakin"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/White-chested_white-eye"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chatham_pigeon"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Niau_kingfisher"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hooded_grebe"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/New_Zealand_storm_petrel"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fuertes's_parrot"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mara\u00f1\u00f3n_spinetail"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Liberian_greenbul"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Urrao_antpitta"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pr\u00edncipe_thrush"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kinglet_calyptura"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/White-headed_vulture"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/White-winged_flufftail"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Endangered_Species_(H.A.W.K._album)", "surface form": "Endangered"}], "relations": [{"URI": "http://dbpedia.org/ontology/principal", "surface form": "critically"}, {"URI": "http://dbpedia.org/ontology/date", "surface form": "birds"}]}, {"id": "159", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Which countries are connected by the Rhine?", "keywords": "Rhine, country"}], "query": {"sparql": "PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> PREFIX dbp: <http://dbpedia.org/property/> PREFIX dbo: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { {<http://dbpedia.org/resource/Rhine> dbo:country ?uri } UNION {dbr:Rhine dbp:country ?uri} }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Liechtenstein"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Switzerland"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kingdom_of_France"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Austria"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Netherlands"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Germany"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Countries_of_the_United_Kingdom", "surface form": "countries"}, {"URI": "http://dbpedia.org/resource/Rhine", "surface form": "Rhine"}], "relations": [{"URI": "http://dbpedia.org/ontology/related", "surface form": "connected"}]}, {"id": "107", "answertype": "resource", "aggregation": false, "onlydbo": false, "hybrid": false, "question": [{"language": "en", "string": "Who was the father of Queen Elizabeth II?", "keywords": "father, Queen Elizabeth II"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT * WHERE { res:Elizabeth_II dbo:parent ?uri . ?uri <http://xmlns.com/foaf/0.1/gender> \"male\"@en }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/George_VI"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Elizabeth_II", "surface form": "Queen Elizabeth II"}], "relations": [{"URI": "http://dbpedia.org/ontology/parent", "surface form": "father"}]}, {"id": "163", "answertype": "resource", "aggregation": false, "onlydbo": false, "hybrid": false, "question": [{"language": "en", "string": "Give me all chemical elements.", "keywords": "chemical elements"}], "query": {"sparql": "PREFIX dct: <http://purl.org/dc/terms/> PREFIX dbc: <http://dbpedia.org/resource/Category:> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX owl: <http://www.w3.org/2002/07/owl#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type owl:Thing ; dct:subject dbc:Chemical_elements }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gallium"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Iron"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Magnesium"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nobelium"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Caesium"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Xenon"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Zirconium"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Aluminium"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Neon"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Potassium"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Einsteinium"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sodium"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lawrencium"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Molybdenum"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bismuth"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nickel"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ununseptium"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Thulium"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rhenium"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rubidium"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tellurium"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Scandium"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tungsten"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Americium"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Germanium"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ununtrium"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cerium"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hydrogen"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vanadium"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Palladium"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Boron"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gadolinium"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Praseodymium"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Iridium"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ruthenium"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hassium"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Erbium"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Iodine"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Radium"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Seaborgium"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Technetium"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Arsenic"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Radon"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Astatine"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lithium"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Carbon"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Titanium"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Uranium"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Neptunium"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fluorine"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Plutonium"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nitrogen"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tantalum"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Protactinium"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Darmstadtium"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chromium"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Krypton"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Platinum"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Zinc"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Oxygen"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Argon"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chemical_element"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Francium"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sulfur"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Samarium"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Holmium"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dubnium"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Osmium"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Indium"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Phosphorus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cobalt"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chlorine"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Symbol_(chemistry)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hafnium"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gold"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bohrium"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dysprosium"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lead"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Beryllium"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Meitnerium"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Californium"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Barium"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cadmium"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ytterbium"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Berkelium"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Roentgenium"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Polonium"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Thallium"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Helium"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Yttrium"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lanthanum"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rhodium"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Thorium"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Niobium"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Flerovium"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mercury_(element)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Curium"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Calcium"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Silicon"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Europium"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ununoctium"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Copernicium"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Selenium"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tin"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Silver"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Mystery_of_Matter_(film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mendelevium"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Neodymium"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fermium"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Manganese"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rutherfordium"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bromine"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ununpentium"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Actinium"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Antimony"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Strontium"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Terbium"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lutetium"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Copper"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Sand_casting", "surface form": "chemical elements"}], "relations": []}, {"id": "211", "answertype": "resource", "aggregation": false, "onlydbo": false, "hybrid": false, "question": [{"language": "en", "string": "Give me all American presidents of the last 20 years.", "keywords": "American presidents, last 20 years"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbp: <http://dbpedia.org/property/> PREFIX dct: <http://purl.org/dc/terms/> PREFIX dbc: <http://dbpedia.org/resource/Category:> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Person ; dct:subject dbc:Presidents_of_the_United_States ; dbo:activeYearsEndDate ?termEnd FILTER ( ( year(now()) - year(?termEnd) ) <= 20 ) }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/George_W._Bush"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bill_Clinton"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Barack_Obama"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Organization_of_American_States", "surface form": "American presidents"}, {"URI": "http://dbpedia.org/resource/American_Presidents:_Life_Portraits", "surface form": "American presidents"}, {"URI": "http://dbpedia.org/resource/20", "surface form": "20"}], "relations": [{"URI": "http://dbpedia.org/ontology/country", "surface form": ""}]}, {"id": "51", "answertype": "date", "aggregation": false, "onlydbo": false, "hybrid": false, "question": [{"language": "en", "string": "When is the movie Worst Case Scenario going to be in cinemas in the Netherlands?", "keywords": "movie, Worst Case Scenario, cinema, Netherlands"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> PREFIX dbr: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX foaf: <http://xmlns.com/foaf/0.1/> SELECT DISTINCT ?rel WHERE { <http://dbpedia.org/resource/Worst_Case_Scenario_(film)> ?p ?o ; dbo:releaseDate ?rel FILTER contains(lcase(str(?o)), \"netherlands\") }"}, "answers": [{"head": {"vars": ["date"]}, "results": {"bindings": [{"date": {"type": "literal", "value": "2008-01-30"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Worst-case_scenario", "surface form": "movie Worst Case Scenario"}, {"URI": "http://dbpedia.org/resource/Netherlands", "surface form": "Netherlands"}], "relations": [{"URI": "http://dbpedia.org/ontology/picture", "surface form": "cinemas"}]}, {"id": "144", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Whom did Lance Bass marry?", "keywords": "wife, Lance Bass"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { {<http://dbpedia.org/resource/Lance_Bass> dbo:spouse ?uri} UNION {?uri dbo:spouse <http://dbpedia.org/resource/Lance_Bass>} }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Michael_Turchin"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Lance_Bass", "surface form": "Lance Bass"}], "relations": [{"URI": "http://dbpedia.org/ontology/spouse", "surface form": "marry"}]}, {"id": "167", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Which subsidiary of TUI Travel serves both Glasgow and Dublin?", "keywords": "subsidiary, TUI Travel, serve, Glasgow, Dublin"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/TUI_Travel> <http://dbpedia.org/ontology/subsidiary> ?uri . ?uri <http://dbpedia.org/ontology/targetAirport> <http://dbpedia.org/resource/Glasgow_International_Airport> ; <http://dbpedia.org/ontology/targetAirport> <http://dbpedia.org/resource/Dublin_Airport> }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Thomson_Airways"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Glasgow_Airport", "surface form": "Glasgow"}, {"URI": "http://dbpedia.org/resource/Dublin_Airport", "surface form": "Dublin"}], "relations": [{"URI": "http://dbpedia.org/ontology/subsidiary", "surface form": "subsidiary"}, {"URI": "http://dbpedia.org/ontology/order", "surface form": "serves"}]}, {"id": "131", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "What languages are spoken in Pakistan?", "keywords": "languages, Pakistan"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Pakistan> <http://dbpedia.org/ontology/language> ?uri }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gawar-Bati_language"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/English_language"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Balochi_language"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Urdu"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Balti_language"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Punjabi_language"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kashmiri_language"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sindhi_language"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Domaaki_language"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Brahui_language"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Khowar_language"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kalash_language"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dameli_language"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Burushaski"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pashto_language"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Shina_language"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Pakistan", "surface form": "Pakistan"}], "relations": [{"URI": "http://dbpedia.org/ontology/language", "surface form": "languages"}, {"URI": "http://dbpedia.org/ontology/spokenIn", "surface form": "spoken"}]}, {"id": "120", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Who is the daughter of Bill Clinton married to?", "keywords": "Bill Clinton, daughter, married"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> PREFIX dbp: <http://dbpedia.org/property/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { dbr:Bill_Clinton dbo:child ?child . ?child dbo:spouse ?uri . ?uri rdfs:label ?string }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Marc_Mezvinsky"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Bill_Clinton", "surface form": "Bill Clinton"}], "relations": [{"URI": "http://dbpedia.org/ontology/child", "surface form": "daughter"}, {"URI": "http://dbpedia.org/ontology/spouse", "surface form": "married"}]}, {"id": "164", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Who was on the Apollo 11 mission?", "keywords": "involved people, Apollo 11 mission"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Apollo_11> <http://dbpedia.org/property/crewMembers> ?uri }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Buzz_Aldrin"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Neil_Armstrong"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Michael_Collins_(astronaut)"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Apollo_11", "surface form": "Apollo 11 mission"}], "relations": []}, {"id": "88", "answertype": "number", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "What is the wavelength of Indigo?", "keywords": "wavelength, indigo"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?n WHERE { dbr:Indigo dbo:wavelength ?n }"}, "answers": [{"head": {"vars": ["c"]}, "results": {"bindings": [{"c": {"type": "literal", "value": "4.5e-07"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Indigo", "surface form": "Indigo"}], "relations": [{"URI": "http://dbpedia.org/ontology/wavelength", "surface form": "wavelength"}]}, {"id": "151", "answertype": "string", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Give me all B-sides of the Ramones.", "keywords": "Ramones, B-sides"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX dbp: <http://dbpedia.org/property/> SELECT DISTINCT ?string WHERE { ?x dbo:musicalArtist res:Ramones ; dbo:bSide ?string }"}, "answers": [{"head": {"vars": ["string"]}, "results": {"bindings": [{"string": {"type": "literal", "value": "\"No-One Could Ever Love You More\" (Norway)"}}, {"string": {"type": "literal", "value": "\"Babysitter\""}}, {"string": {"type": "literal", "value": "Censorshit"}}, {"string": {"type": "literal", "value": "\"I Don't Care\""}}, {"string": {"type": "literal", "value": "\"Go Home Ann\" (12\" only)"}}, {"string": {"type": "literal", "value": "\"Gee Girl\""}}, {"string": {"type": "literal", "value": "\"Miss Joan And Mr. Sam\""}}, {"string": {"type": "literal", "value": "\"Do You Wanna Dance?\""}}, {"string": {"type": "literal", "value": "\"California Sun\" / \"I Dont Wanna Walk Around With You\" (live)"}}, {"string": {"type": "literal", "value": "\"Daytime Dilemma (Dangers of Love)\""}}, {"string": {"type": "literal", "value": "\"Saturday Night Out\""}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/The_B-Sides", "surface form": "B-sides of the Ramones"}], "relations": []}, {"id": "63", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Who was called Scarface?", "keywords": "who , called, Scarface"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> SELECT ?uri WHERE { ?uri dbo:alias ?alias FILTER contains(lcase(?alias), \"scarface\") }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Scarface_(rapper)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Al_Capone"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Scarface", "surface form": "Scarface"}], "relations": [{"URI": "http://dbpedia.org/ontology/alias", "surface form": "called"}]}, {"id": "27", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Which rivers flow into the North Sea?", "keywords": "rivers, flow, North Sea"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/River> ; <http://dbpedia.org/ontology/riverMouth> <http://dbpedia.org/resource/North_Sea> }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ems_(river)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/River_Crouch"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Asheldham_Brook"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/River_Stour,_Suffolk"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/River_Forth"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/River_South_Esk"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Weser"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Elbe"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Elliot_Water"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/North_Sea_Canal"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/River_Tay"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/River_Tweed"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Eider_(river)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Oude_Rijn_(Utrecht_and_South_Holland)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Barry_Burn"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/River_Thames"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rhine"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/North_Sea", "surface form": "North Sea"}], "relations": [{"URI": "http://dbpedia.org/ontology/operator", "surface form": "rivers"}, {"URI": "http://dbpedia.org/property/float", "surface form": "flow"}]}, {"id": "156", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Where is Fort Knox located?", "keywords": "where , Fort Knox, located"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Fort_Knox> <http://dbpedia.org/ontology/location> ?uri. ?uri a <http://dbpedia.org/ontology/Place>. }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kentucky"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Fort_Knox", "surface form": "Fort Knox"}], "relations": [{"URI": "http://dbpedia.org/property/location", "surface form": "located"}]}, {"id": "207", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Which daughters of British earls died at the same place they were born at?", "keywords": "daughter, British earl, die, same, place, born"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX yago: <http://dbpedia.org/class/yago/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type yago:WikicatDaughtersOfBritishEarls ; dbo:birthPlace ?x ; dbo:deathPlace ?y FILTER ( ?x = ?y ) }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lady_Augusta_Murray"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Eleanor_Holland,_Countess_of_Salisbury"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Joan_FitzGerald,_Countess_of_Carrick"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Eleanor_Beauchamp,_Duchess_of_Somerset"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Agnes_Keith,_Countess_of_Moray"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Katherine_Neville,_Baroness_Hastings"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mary_Elphinstone,_Lady_Elphinstone"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Diana_Russell,_Duchess_of_Bedford"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Joan_of_Kent"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ela_of_Salisbury,_3rd_Countess_of_Salisbury"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Anne_Hyde"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Isabel_de_Clare,_4th_Countess_of_Pembroke"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lady_Brigid_Guinness"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Daughters_of_the_Dust", "surface form": "daughters"}, {"URI": "http://dbpedia.org/resource/United_Kingdom", "surface form": "British earls"}, {"URI": "http://dbpedia.org/resource/Earls_Barton", "surface form": "British earls"}], "relations": [{"URI": "http://dbpedia.org/property/deathPlace", "surface form": "died"}, {"URI": "http://dbpedia.org/ontology/place", "surface form": "place"}, {"URI": "http://dbpedia.org/ontology/birthPlace", "surface form": "born"}, {"URI": "http://dbpedia.org/ontology/country", "surface form": ""}]}, {"id": "24", "answertype": "number", "aggregation": true, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "How many emperors did China have?", "keywords": "How many emperors, China"}], "query": {"sparql": "SELECT COUNT(DISTINCT ?uri AS ?uri) WHERE { ?uri <http://dbpedia.org/property/title> <http://dbpedia.org/resource/Emperor_of_China> . }"}, "answers": [{"head": {"vars": ["c"]}, "results": {"bindings": [{"c": {"type": "literal", "value": "245"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/China", "surface form": "China"}], "relations": [{"URI": "http://dbpedia.org/ontology/leader", "surface form": "emperors"}]}, {"id": "133", "answertype": "string", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "What are the names of the Teenage Mutant Ninja Turtles?", "keywords": "names, Teenage Mutant Ninja Turtles"}], "query": {"sparql": "PREFIX foaf:<http://xmlns.com/foaf/0.1/> SELECT DISTINCT ?s WHERE { <http://dbpedia.org/resource/Teenage_Mutant_Ninja_Turtles> <http://dbpedia.org/property/members> ?x . ?x foaf:givenName ?s }"}, "answers": [{"head": {"vars": ["string"]}, "results": {"bindings": [{"string": {"type": "literal", "value": "Leonardo"}}, {"string": {"type": "literal", "value": "Raphael"}}, {"string": {"type": "literal", "value": "Donatello"}}, {"string": {"type": "literal", "value": "Michelangelo"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Teenage_Mutant_Ninja_Turtles", "surface form": "Teenage Mutant Ninja Turtles"}], "relations": [{"URI": "http://dbpedia.org/ontology/athletics", "surface form": "names"}]}, {"id": "103", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Where does Piccadilly start?", "keywords": "Piccadilly, start"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/routeStart> <http://dbpedia.org/resource/Piccadilly> }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dover_Street"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Piccadilly", "surface form": "Piccadilly"}], "relations": [{"URI": "http://dbpedia.org/ontology/routeStart", "surface form": "start"}]}, {"id": "165", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "What is the name of the university where Obama's wife studied?", "keywords": "school name, Obama's wife, study"}], "query": {"sparql": "SELECT DISTINCT ?s WHERE { <http://dbpedia.org/resource/Barack_Obama> <http://dbpedia.org/ontology/spouse> ?x . ?x <http://dbpedia.org/ontology/almaMater> ?s }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Harvard_Law_School"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Princeton_University"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/University_of_Alabama", "surface form": "Obama"}], "relations": [{"URI": "http://dbpedia.org/property/name", "surface form": "name"}, {"URI": "http://dbpedia.org/ontology/university", "surface form": "university"}, {"URI": "http://dbpedia.org/property/spouse", "surface form": " wife"}, {"URI": "http://dbpedia.org/ontology/office", "surface form": "studied"}]}, {"id": "108", "answertype": "date", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "When did Paraguay proclaim its independence?", "keywords": "Paraguay, proclaim, independence"}], "query": {"sparql": "SELECT DISTINCT ?date WHERE { <http://dbpedia.org/resource/Paraguay> <http://dbpedia.org/ontology/foundingDate> ?date }"}, "answers": [{"head": {"vars": ["date"]}, "results": {"bindings": [{"date": {"type": "literal", "value": "1811-05-14"}}, {"date": {"type": "literal", "value": "1811-05-15"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Paraguay", "surface form": "Paraguay"}, {"URI": "http://dbpedia.org/resource/Independence", "surface form": "independence"}], "relations": [{"URI": "http://dbpedia.org/ontology/state", "surface form": "proclaim"}]}, {"id": "15", "answertype": "number", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "How short is the shortest active NBA player?", "keywords": "How short, shortest active player, NBA"}], "query": {"sparql": "SELECT DISTINCT ?n WHERE { ?x a <http://dbpedia.org/ontology/BasketballPlayer> ; <http://dbpedia.org/ontology/league> <http://dbpedia.org/resource/National_Basketball_Association> ; <http://dbpedia.org/ontology/height> ?n FILTER NOT EXISTS { ?x <http://dbpedia.org/ontology/activeYearsEndYear> ?d } } ORDER BY ASC(?n) OFFSET 0 LIMIT 1"}, "answers": [{"head": {"vars": ["c"]}, "results": {"bindings": [{"c": {"type": "literal", "value": "1.7526"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/National_Basketball_Association", "surface form": "NBA"}, {"URI": "http://dbpedia.org/resource/Shortest_job_next", "surface form": "shortest active player"}], "relations": [{"URI": "http://dbpedia.org/ontology/thumbnail", "surface form": "short"}]}, {"id": "45", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Where did Abraham Lincoln die?", "keywords": "Abraham , Lincoln, die"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> SELECT DISTINCT ?uri WHERE { res:Abraham_Lincoln dbo:deathPlace ?uri }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Washington,_D.C."}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Petersen_House_(Washington,_D.C.)"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Abraham_Lincoln", "surface form": "Abraham Lincoln"}], "relations": [{"URI": "http://dbpedia.org/ontology/deathDate", "surface form": "die"}]}, {"id": "82", "answertype": "date", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "When was Jack Wolfskin founded?", "keywords": "Jack Wolfskin, founded"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT xsd:date(?year) WHERE { res:Jack_Wolfskin dbo:foundingYear ?year }"}, "answers": [{"head": {"vars": ["date"]}, "results": {"bindings": [{"date": {"type": "literal", "value": "1981-01-01"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Jack_Wolfskin", "surface form": "Jack Wolfskin"}], "relations": [{"URI": "http://dbpedia.org/ontology/foundingYear", "surface form": "founded"}]}, {"id": "9", "answertype": "resource", "aggregation": false, "onlydbo": false, "hybrid": false, "question": [{"language": "en", "string": "In which city is the headquarter of Air China?", "keywords": "city, headquarter, Air China"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Air_China> <http://dbpedia.org/ontology/headquarter> ?uri . ?uri a <http://dbpedia.org/class/yago/City108524735> }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Beijing"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Air_China", "surface form": "Air China"}], "relations": [{"URI": "http://dbpedia.org/ontology/city", "surface form": "city"}, {"URI": "http://dbpedia.org/ontology/headquarter", "surface form": "headquarter"}]}, {"id": "201", "answertype": "date", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "What is the founding year of the brewery that produces Pilsner Urquell?", "keywords": "Pilsner Urquell, brewery, founding year"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> SELECT DISTINCT xsd:date(?num) WHERE { <http://dbpedia.org/resource/Pilsner_Urquell> <http://dbpedia.org/property/brewery> ?uri . ?uri dbo:foundingYear ?num }"}, "answers": [{"head": {"vars": ["date"]}, "results": {"bindings": [{"date": {"type": "literal", "value": "1842-01-01"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Pilsner_Urquell", "surface form": "Pilsner Urquell"}], "relations": [{"URI": "http://dbpedia.org/ontology/foundingYear", "surface form": "founding"}, {"URI": "http://dbpedia.org/ontology/manufacturer", "surface form": "brewery"}, {"URI": "http://dbpedia.org/ontology/manufacturer", "surface form": "produces"}]}, {"id": "171", "answertype": "date", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "When did the Boston Tea Party take place?", "keywords": "Boston Tea Party, take place"}], "query": {"sparql": "SELECT DISTINCT ?d WHERE { <http://dbpedia.org/resource/Boston_Tea_Party> <http://dbpedia.org/property/date> ?d }"}, "answers": [{"head": {"vars": ["date"]}, "results": {"bindings": [{"date": {"type": "literal", "value": "1773-12-16"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Boston_Tea_Party", "surface form": "Boston Tea Party"}], "relations": [{"URI": "http://dbpedia.org/ontology/place", "surface form": "place"}]}, {"id": "182", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Which animals are critically endangered?", "keywords": "animal, critically endangered"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Animal> ; <http://dbpedia.org/ontology/conservationStatus> \"CR\" }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alycaeus_balingensis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Riverine_rabbit"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Heliogomphus_nietneri"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Monopterus_desilvai"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Typhlogarra_widdowsoni"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Haplochromis_sp._'rainbow_sheller'"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Theodoxus_altenai"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Short_Samoan_tree_snail"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Seychelles_paradise_flycatcher"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/New_Caledonian_long-eared_bat"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chinese_giant_salamander"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Haplochromis_brownae"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Armenian_tortoise"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Achatinella_stewartii"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Orange-footed_pimpleback_mussel"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bulimulus_eschariferus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bulimulus_reibischi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hucho_bleekeri"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Antiguan_racer"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dendrotriton_cuchumatanus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Makira_woodhen"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Colophon_cassoni"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Psilorhynchus_tenura"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Northwest_African_cheetah"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pseudophoxinus_syriacus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Opisthostoma_decrespignyi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mauritius_olive_white-eye"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bryan's_shearwater"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Christmas_frigatebird"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Medium_tree_finch"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Aeolian_wall_lizard"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Conolophus_marthae"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lyriothemis_defonsekai"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Swift_parrot"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tomichia_tristis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Atelopus_onorei"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sumatran_ground_cuckoo"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Northern_river_shark"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chinese_crested_tern"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Plectrohyla_hartwegi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Parhoplophryne_usambarica"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lord_Howe_flax_snail"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Smoothback_angelshark"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pilalo_tree_frog"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Floreana_mockingbird"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Winged_mapleleaf"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Atelopus_eusebiodiazi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/\u02bbAkohekohe"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hong_Kong_grouper"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Azuero_spider_monkey"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Drepanosticta_montana"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mount_Kahuzi_climbing_mouse"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Millerbird"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bonytail_chub"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Uluguru_bushshrike"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Parachondrostoma_arrigonis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Plectrohyla_cembra"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Trachycystis_placenta"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/El_Hierro_giant_lizard"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Atelopus_muisca"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Angel_Island_mouse"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Partulina_dubia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Longcomb_sawfish"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Knipowitschia_mrakovcici"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dusky_starfrontlet"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cerion_nanus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vipera_wagneri"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Partula_langfordi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Eupropacris_abbreviata"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Achatinella_fuscobasis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Margarya_monodi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rio_Carauta_stubfoot_toad"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/S\u00e3o_Tom\u00e9_grosbeak"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bulimulus_duncanus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Slender-billed_curlew"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Myaka_(fish)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Colophon_berrisfordi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Orphan_salamander"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/San_Lorenzo_mouse"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bythiospeum_pfeifferi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Haplochromis_martini"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Haplochromis_aelocephalus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Brazilian_merganser"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Plectrohyla_celata"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Anabarilius_qiluensis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Santa_Monica_shieldback_katydid"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cone-billed_tanager"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Coregonus_trybomi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Haplochromis_crassilabris"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Islamia_hadei"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chuuk_flying_fox"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gray-shanked_douc"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Red-tailed_black_shark"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Idunella_sketi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Haplochromis_xenostoma"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kunming_catfish"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kanab_ambersnail"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fat_Guam_partula"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Taita_thrush"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Elegant_frog"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fiji_crested_iguana"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Blue-fronted_lorikeet"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Homoeodera_major"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Barbodes_flavifuscus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ivory-billed_woodpecker"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Zhou's_box_turtle"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cobitis_bilseli"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cookeconcha_contorta"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Atelopus_oxyrhynchus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kapcypridopsis_barnardi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Atelopus_minutulus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Acanthodactylus_harranensis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Flat_pigtoe"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Indian_vulture"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chinamococh_stream_frog"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Haplochromis_apogonoides"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Red-headed_vulture"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sunda_pangolin"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Euchondrus_ramonensis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rhabdalestes_leleupi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bedotia_sp._nov._'Manombo'"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Perbrinckia_glabra"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Largefin_pupfish"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ptychohyla_dendrophasma"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Synodontis_dekimpei"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/White-collared_kite"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hemistomia_yalayu"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chinese_sturgeon"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Striped_smooth-hound"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Plectrohyla_pachyderma"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Opanara_depasoapicata"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cyprinus_micristius"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Plectrohyla_calthula"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Brookesia_desperata"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Franklin's_bumblebee"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Boucardicus_fortistriatus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/West_African_wild_dog"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Taita_shrew"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Phoxinellus_dalmaticus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Scutiger_maculatus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Southern_Vietnamese_box_turtle"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Anisogomphus_solitaris"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Western_Nimba_toad"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Baja_Verapaz_salamander"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Geoscincus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bulimulus_tanneri"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Atelopus_peruensis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Labeo_lankae"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Wake's_hidden_salamander"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Albericus_siegfriedi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Phelsuma_pronki"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Betta_spilotogena"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Long-billed_forest_warbler"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Daggernose_shark"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Arabian_leopard"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ecnomiohyla_salvaje"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Paratilapia_sp._nov._'Vevembe'"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Clanwilliam_sandfish"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rio_Grande_monkeyface"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Speleoperipatus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Atelopus_balios"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bulimulus_sp._nov._'josevillani'"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/California_condor"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Philochortus_zolii"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Flores_hawk-eagle"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Muisk_vole"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Atelopus_seminiferus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Endodonta_apiculata"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lepidochrysops_lotana"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Angonoka_tortoise"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Barbodes_herrei"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Haematopinus_oliveri"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Red-finned_blue-eye"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Raso_lark"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Amur_leopard"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hooded_vulture"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Austrocordulia_leonardi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bulimulus_sp._nov._'krameri'"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Siau_Island_tarsier"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kaiser's_spotted_newt"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Acanthodactylus_mechriguensis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Arkansia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cecilioides_eulima"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dwarf_pebblesnail"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Seychelles_sheath-tailed_bat"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sangihe_white-eye"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cardioglossa_trifasciata"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Raorchestes_chlorosomma"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Conturbatia_crenata"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gough_finch"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Samoana_hamadryas"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pita_skate"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Munchique_wood_wren"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Black_mudalia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Opanara_perahuensis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pseudoniphargus_grandimanus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Boucardicus_fidimananai"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Yellow-headed_box_turtle"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Aaadonta_constricta_constricta"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Drepanosticta_submontana"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Plectrohyla_thorectes"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cachorrito_cabezon"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chatham_shag"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Haplochromis_guiarti"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cocoharpinia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Isabela_oriole"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sulawesi_forest_turtle"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Aphanius_richardsoni"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bermuda_rock_skink"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Atelopus_lynchi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Austrodontura_castletoni"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dark_pigtoe"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Manusela_mosaic-tailed_rat"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Schistura_papulifera"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Golden_mantella"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mindoro_bleeding-heart"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Junin_grebe"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Black_crested_gibbon"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chilean_woodstar"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Madagascan_fish_eagle"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Belgrandiella_styriaca"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cozumel_harvest_mouse"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cerulean_paradise_flycatcher"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cyclura_cychlura_figginsi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ingolfiella_longipes"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Brown_spider_monkey"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Eastern_long-beaked_echidna"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Paghman_stream_salamander"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cumberland_monkeyface_pearly_mussel"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rough_pigtoe_pearly_mussel"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ogasawarana_habei"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Copan_stream_frog"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sphaerophysa_dianchiensis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Prodontria_lewisi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dianchi_bullhead"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Partula_clara"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Opanara_duplicidentata"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Baer's_pochard"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Paraclinus_walkeri"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cyclura_ricordi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Edwards's_pheasant"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Black-winged_starling"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bulimulus_jacobi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Plectrohyla_ephemera"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Stomatepia_mongo"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ayumodoki"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Paretroplus_menarambo"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ganges_shark"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Uluguru_Mountain_Grasshopper"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Forest_owlet"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Colophon_montisatris"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Louisiana_pearlshell"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Woylie"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ellinopyg\u00f3steos"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Atelopus_coynei"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kurdistan_spotted_newt"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Odorrana_wuchuanensis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Beck's_petrel"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Blue-bearded_helmetcrest"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ac\u0131g\u00f6l_toothcarp"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/White-rumped_vulture"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Taylor's_salamander"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Coosa_moccasinshell"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cyclura_carinata_bartschi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Blue-eyed_spotted_cuscus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/\u02bbAkikiki"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Maltese_skate"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vaquita"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gammarus_desperatus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Monterrey_platyfish"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Megalagrion_nesiotes"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Baiji"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Speleoithona_bermudensis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Yanbaru_whiskered_bat"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lampedusa_(gastropod)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Isla_Bonita_tree_frog"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Trochoidea_pseudojacosta"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ancylus_ashangiensis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Atelopus_famelicus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Longest_climbing_salamander"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pondicherry_shark"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Northern_Sumatran_rhinoceros"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Murray_cod"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Atelopus_monohernandezii"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Scarlet_harlequin_toad"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Achatinella_fulgens"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fissi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Glabrennea_silhouettensis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Negros_fruit_dove"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Phyllomedusa_ayeaye"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lygodactylus_williamsi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chiloglanis_ruziziensis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ilin_Island_cloudrunner"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Salvelinus_profundus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Flattened_musk_turtle"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Haplochromis_percoides"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Poropuntius_chonglingchungi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fijian_monkey-faced_bat"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rio_de_Janeiro_antwren"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Belgrandiella_parreyssii"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Atelopus_patazensis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Miami_blue"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Puerto_Rican_amazon"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Xerosecta_giustii"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dryococelus_australis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nymphargus_anomalus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Laminella_sanguinea"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Clarias_cavernicola"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Aru_flying_fox"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Achatinella_sowerbyana"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Haplochromis_sp._'small_obesoid'"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bulimulus_ochsneri"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Caledoconcha_carnosa"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Haplochromis_dichrourus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Haplochromis_annectidens"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bythinella_markovi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Semper's_warbler"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Silvery_pigeon"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Laubuka_caeruleostigmata"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Megalagrion_molokaiense"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sulphur_molly"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Arytropteris_pondo"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Azuero_howler"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Broadspotted_molly"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Coptodon_flava"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Leptaxis_vetusa"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Puntius_deccanensis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Achatinella_bellula"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gulf_moccasinshell"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cyclura_nubila_caymanensis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Talaud_bear_cuscus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Zempoaltepec_deer_mouse"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Leiolopisma_alazon"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Transkeidectes_multidentis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Betta_miniopinna"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/New_Caledonian_lorikeet"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rhizosomichthys_totae"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Twee_River_redfin"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Trichonis_blenny"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Japanese_sturgeon"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Atelopus_galactogaster"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nsess"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ridgway's_hawk"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pungu"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Myanmar_snub-nosed_monkey"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hemistomia_crosseana"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Boninagrion_ezoin"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Aaadonta_fuscozonata_depressa"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sinhalestes_orientalis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Haplochromis_sp._'Kyoga_flameback'"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pseudophoxinus_zeregi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Omphalotropis_plicosa"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lake_Patzcuaro_salamander"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fly_River_water_rat"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lamotte's_roundleaf_bat"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Doumergue's_fringe-fingered_lizard"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tristan_albatross"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Belgrandiella_austriana"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Upland_combshell"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Totoaba"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tepehuan_shiner"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chornaya_tubenose_goby"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Arinia_dentifera"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fluvidona_petterdi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Graecoanatolica_brevis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cuban_kite"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chilostoma_crombezi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/R\u00fcck's_blue_flycatcher"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Blue-eyed_ground_dove"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Black_dorcopsis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Javan_leopard"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alzoniella_iberopyrenaica"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tropical_pocket_gopher"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hemistomia_shostakovichi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Craugastor_cruzi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Plectrohyla_calvicollina"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Betta_persephone"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Geckoella_jeyporensis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Araripe_manakin"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/White-chested_white-eye"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Trioza_barrettae"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Abrau_sprat"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Devils_Hole_pupfish"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Locust_coqui"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kroombit_tinker_frog"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Speleophria_bivexilla"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Adrianichthys_kruyti"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Black-headed_spider_monkey"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Delminichthys_jadovensis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sir_David's_long-beaked_echidna"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dexteria"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Scinax_alcatraz"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Adclarkia_dawsonensis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Phrynocephalus_horvathi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Baw_Baw_frog"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lesser_electric_ray"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Liberian_greenbul"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chondrostoma_fahirae"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fine-rayed_pigtoe_pearly_mussel"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hadramphus_tuberculatus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Irrawaddy_river_shark"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Anderson's_salamander"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pelasgus_laconicus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pale_lilliput_naiad"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Barkudia_insularis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/White-headed_vulture"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dahl's_toad-headed_turtle"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Edgbaston_goby"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mictocaris"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Draparnaudia_subnecata"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rota_white-eye"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Atelopus_mandingues"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Atelopus_walkeri"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Atelopus_andinus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Giant_ibis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Roti_Island_snake-necked_turtle"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cophotis_dumbara"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Salenski's_shrew"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Arubolana_aruboides"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mixe_tree_frog"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Clarence_galaxias"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Granular_salamander"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/San_Esteban_Island_mouse"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Holozoster_ovalis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Haplochromis_sp._'backflash_cryptodon'"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lily_Shoals_elimia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Macromia_flinti"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Stocky_pebblesnail"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Biomphalaria_barthi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Erepta_stylodon"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hampala_lopezi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Harmogenanina_implicata"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Southern_pigtoe"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rhysoconcha_variumbilicata"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Megalobulimus_grandis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Quadrate_pebblesnail"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Galaxias_fuscus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cobitis_stephanidisi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Achatinella_taeniolata"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Saint_Croix_ground_lizard"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Largemouth_shiner"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Monte_Escondido_salamander"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dwarf_sturgeon"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Partulina_confusa"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Amji's_salamander"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sangihe_shrikethrush"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/La_Palma_giant_lizard"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alabama_lamp_naiad"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mount_Coke_false_shieldback"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Atelopus_planispina"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Southern_acorn_riffle_shell"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Orangia_maituatensis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cophyla_berara"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Black_clubshell"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Javan_slow_loris"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Golden-mantled_tree-kangaroo"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Perbrinckia_gabadagei"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Narrow-ridged_finless_porpoise"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Drepanosticta_austeni"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Biak_giant_rat"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Blue-banded_kingfisher"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Zingel_asper"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Discus_guerinianus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Balkan_lynx"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Zapata_rail"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Encheloclarias_kelioides"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Parhippolyte_sterreri"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Giant_salmon_carp"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Saimaa_ringed_seal"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Black-spotted_cuscus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Charco_Palma_pupfish"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Spider_tortoise"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Stresemann's_bristlefront"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Oedipina_altura"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gymnocephalus_ambriaelacus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Corroboree_frog"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dwarf_pygmy_goby"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Indochinese_box_turtle"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tumbala_climbing_rat"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/New_Caledonian_rail"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Delta_green_ground_beetle"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Liophis_cursor"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Convex_horseshoe_bat"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Delicate_deer_mouse"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tettigidea_empedonepia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Papaloapan_chub"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Anodonthyla_vallani"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Isla_De_La_Juventud_tree_hutia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gilbert's_potoroo"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Northern_hairy-nosed_wombat"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Labeo_potail"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Achatinella_concavospira"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Isthmohyla_rivularis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Zingis_radiolata"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pethia_pookodensis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/James_River_spinymussel"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Emperor_rat"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/One-striped_opossum"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cloud_forest_salamander"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Achatinella_lorata"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cumberlandian_combshell"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Amphilophus_zaliosus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Shortnose_cisco"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pygmy_sculpin"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Western_long-beaked_echidna"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mirinaba_curytibana"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Thickshell_pondsnail"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Zygonychidium_gracile"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/San_Quintin_kangaroo_rat"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Curassanthura_bermudensis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Squatina_squatina"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Helmeted_hornbill"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Santa_Marta_wren"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Siberian_crane"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Orinoco_crocodile"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Staghorn_coral"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pan's_box_turtle"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Popta's_buntingi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Balearic_shearwater"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mesonoemacheilus_herrei"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Western_chimpanzee"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Taita_apalis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Yellow-crested_cockatoo"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Litoria_castanea"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Graecoanatolica_anatolica"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Red-throated_lorikeet"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Yellow-tailed_woolly_monkey"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gonyostomus_goniostomus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Leka_keppe"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Risiocnemis_seidenschwarzi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Colombian_spider_monkey"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Plectrohyla_avia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Plectrohyla_sabrina"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Natal_shyshark"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bombus_suckleyi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pennant's_colobus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/June_sucker"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Streptocephalus_moorei"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Prairie_sphinx_moth"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Somali_wild_ass"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kaua\u02bbi_nukupu\u02bbu"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Arinia_boreoborneensis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ethiopian_amphibious_rat"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Horalabiosa_arunachalami"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dryas_monkey"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Craugastor_olanchano"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alburnus_nasreddini"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Juan_Fern\u00e1ndez_firecrown"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Golden_white-eye"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gharial"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Paroedura_lohatsara"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Libellula_angelina"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bythiospeum_cisterciensorum"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Proischnura_polychromatica"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Coosa_pebblesnail"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Coxen's_fig_parrot"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sulu_hornbill"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Euastacus_maidae"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Oreocnemis_phoenix"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Shiny_pigtoe"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bulimulus_eos"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Heavenly_hill_rat"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Common_sawfish"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bedotia_tricolor"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tomichia_natalensis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bokermannohyla_izecksohni"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jerdon's_courser"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pagai_Island_macaque"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Colorful_puffleg"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Allan's_lerista"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Opanara_altiapica"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Speleophria_scottodicarloi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Zoogoneticus_tequila"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Trochochlamys_ogasawarana"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/R\u00e9union_cuckooshrike"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Appalachian_monkey-face_pearly_mussel"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Eisentraut's_mouse_shrew"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mount_Oku_hylomyscus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/River_pipefish"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Spermophorides_lascars"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Northern_river_terrapin"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Black_bearded_saki"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Atelopus_lozanoi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bulimulus_deridderi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Painted_clubshell"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/De_Winton's_golden_mole"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Australian_freshwater_limpet"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alabama_cavefish"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tenkile"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dinagat_bushy-tailed_cloud_rat"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hemistomia_xaracuu"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Atelopus_varius"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Garra_ghorensis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mantidactylus_pauliani"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Haplochromis_argenteus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Javan_green_magpie"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Coptodon_deckerti"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Karthala_scops_owl"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Blind_cave_loach"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/San_Cristobal_shrew"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vancouver_Island_marmot"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chapultepec_splitfin"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Malherbe's_parakeet"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pseudophoxinus_egridiri"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Yunnan_box_turtle"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Coptodon_thysi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Telestes_fontinalis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Delacour's_langur"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Opanara_caliculata"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Syr_Darya_sturgeon"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Western_swamp_turtle"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hemisaga_elongata"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tar_River_spiny_mussel"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Aaadonta_irregularis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Great_Indian_bustard"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mautodontha_ceuthma"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cracking_pearlymussel"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Atelopus_angelito"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/San_Jos\u00e9_Island_kangaroo_rat"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Black-eared_mantella"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hylomantis_lemur"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sarotherodon_linnellii"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Telestes_turskyi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bulimulus_hirsutus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ruatara_koarana"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lantzia_carinata"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pacific_degu"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Haplochromis_sp._'Rusinga_oral_sheller'"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bothrops_alcatraz"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Solitary_fruit-eating_bat"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pantanodon_sp._nov._'Manombo'"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dendropsophus_amicorum"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Walden's_hornbill"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Townsend's_shearwater"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Haplochromis_sp._'parvidens-like'"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alexteroon_jynx"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Club_naiad"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Leptodactylus_magistris"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Achatinella_pulcherrima"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Craugastor_angelicus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Appalachian_elktoe"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bulimulus_adelphus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ctenosaura_oaxacana"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Banded_dune_snail"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Atelopus_exiguus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Venezuelan_yellow_frog"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/White-backed_vulture"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pseudochazara_cingovskii"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/European_sea_sturgeon"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Red-crowned_roofed_turtle"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Isthmohyla_calypsa"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bengal_florican"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Philippine_eagle"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Edwardsina_tasmaniensis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Haplochromis_sp._'ruby'"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Blue-crowned_laughingthrush"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Delicate-skinned_salamander"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Leptodactylus_fallax"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Palila"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Thorius_minutissimus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Caseolus_subcalliferus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Iberolacerta_martinezricai"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Barbatula_eregliensis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Oreochromis_variabilis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Black-eared_flying_fox"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Poso_bungu"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Barbodes_wynaadensis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Oncorhynchus_masou_formosanus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Barbodes_bovanicus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Partula_guamensis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ceylonthelphusa_callista"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Barbodes_katolo"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Haplochromis_teegelaari"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cyprinus_fuxianensis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Polynesian_ground_dove"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Platyops"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bulimulus_chemitzioides"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Glabrennea_thomasseti"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Partula_affinis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Partula_otaheitana"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bavarian_pine_vole"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bellamya_liberiana"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Siphonaria_compressa"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Haplochromis_dentex"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Northern_glider"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/White_River_spinedace"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Glass_blue-eye"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ogasawarana_metamorpha"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chinhai_spiny_newt"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Aplocheilichthys_sp._nov._'Baringo'"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Atelopus_nicefori"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bedotia_sp._nov._'Sambava'"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Slender-billed_vulture"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bulimulus_galapaganus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Atelopus_arthuri"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Achatinella_pupukanioe"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Reig's_tuco-tuco"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Paracyclopia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Regent_honeyeater"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Atelopus_erythropus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/S\u00e3o_Tom\u00e9_shrew"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fat_threeridge"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cumberland_pigtoe"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Knipowitschia_ephesi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chinese_bahaba"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Puebla_deer_mouse"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Skulpin"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Speckled_pocketbook"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Montserrat_oriole"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Haplochromis_vonlinnei"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Northern_brown_howler"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Christmas_Island_forest_skink"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Achatinella_turgida"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Barbodes_disa"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Napaeus_isletae"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kangaroo_Island_dunnart"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Montserrat_galliwasp"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Millepora_boschmai"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Boucardicus_simplex"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tetrathemis_ruwensoriensis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Colostethus_dunni"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Melanomys_zunigae"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Atlas_pebblesnail"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bulimulus_habeli"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/David's_tiger"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Atelopus_boulengeri"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kululu"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bleeding_toad"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Leiostyla_heterodon"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pygmy_three-toed_sloth"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pine_forest_stream_frog"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Barbodes_truncatulus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Guadalcanal_rat"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cotton-top_tamarin"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Spengler's_freshwater_mussel"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Atelopus_sernai"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Epioblasma_torulosa"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/El_Cusuco_salamander"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Elattoneura_leucostigma"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Oki_salamander"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Negev_Tortoise"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Craugastor_milesi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hainan_black_crested_gibbon"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Asian_narrow-headed_softshell_turtle"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alburnus_vistonicus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mara\u00f1\u00f3n_spinetail"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Urrao_antpitta"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Eleutherodactylus_rufescens"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Achatinella_decipiens"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fraternal_snail"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Continental_Divide_tree_frog"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Piedmont_anomalous_blue"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Branchinella_lithaca"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Euastacus_jagara"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Yangtze_giant_softshell_turtle"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Diplommatina_cacuminulus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Golden_coqu\u00ed"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Aquadulcaris_pheronyx"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Konye"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bouvier's_red_colobus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gansu_shrew"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bulimulus_adserseni"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Xenopus_lenduensis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fatu_Hiva_monarch"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bog_turtle"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Galaxias_fontanus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Xenocypris_yunnanensis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Islamia_bendidis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Celestus_warreni"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Samoana_cramptoni"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Burt's_deer_mouse"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lemniscia_galeata"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Madagascan_big-headed_turtle"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bahama_oriole"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Culebra_Island_giant_anole"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Neopasiphae_simplicior"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lake_Lerma_salamander"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Barbodes_manalak"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Homoeodera_scolytoides"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Krabi_mouth-brooding_betta"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mantiqueira_Atlantic_tree-rat"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Waved_albatross"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dickey's_deer_mouse"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Colophon_primosi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Eungella_torrent_frog"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Coptodon_gutturosa"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Blue-winged_racket-tail"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Isthmohyla_insolita"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Achatinella_curta"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Oreochromis_jipe"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Central_American_river_turtle"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Haplochromis_nanoserranus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Barbodes_lanaoensis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Atelopus_nanay"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Anabarilius_andersoni"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Thoracistus_arboreus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Delta_smelt"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Diamond_darter"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Boninthemis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ogasawarana_rex"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cardioglossa_alsco"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Saint_Vincent_blacksnake"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Azraq_toothcarp"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hoary-throated_spinetail"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cobitis_puncticulata"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Blue-throated_macaw"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Neritina_tiassalensis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hemistomia_lacinia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Griffiniana_duplessisae"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ammobates_dusmeti"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sharp_snouted_day_frog"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sakhalin_sturgeon"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Laubuka_insularis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kleinmann's_tortoise"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Banggai_crow"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Atelopus_pachydermus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vipera_darevskii"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Beddomeia_tumida"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bedotia_albomarginata"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bulimulus_sp._nov._'tuideroyi'"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Achatinella_mustelina"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Socorro_mockingbird"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Beluga_(sturgeon)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pseudoeurycea_rex"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chile_Darwin's_frog"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lake_Victoria_deepwater_catfish"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Carpentarian_rock_rat"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cherry-throated_tanager"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Haplochromis_macrognathus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bythinella_turca"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tonkin_snub-nosed_monkey"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Golden-bellied_capuchin"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Plectrohyla_hazelae"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Arakan_forest_turtle"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Armenian_whiskered_bat"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Haplochromis_sp._nov._'Amboseli'"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Caquet\u00e1_titi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Grenada_dove"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tchangmargarya_yangtsunghaiensis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Maya_mouse"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Discula_testudinalis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pseudoeurycea_robertsi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Atelopus_pedimarmoratus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pygmy_pebblesnail"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Plectrohyla_chrysopleura"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Zilchogyra_paulistana"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Coptodon_bythobates"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Himalayan_brown_bear"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tyrrhenaria_ceratina"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Archey's_frog"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Helicostyla_smargadina"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Leiostyla_simulator"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sumatran_rhinoceros"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Encheloclarias_curtisoma"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Red-vented_cockatoo"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cherax_tenuimanus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Acanthobrama_hadiyahensis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Brazilian_guitarfish"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chrysoritis_cotrelli"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Greek_lamprey"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Madascincus_arenicola"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Valencia_toothcarp"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Booroolong_frog"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chiapan_climbing_rat"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Craugastor_emleni"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Philippine_naked-backed_fruit_bat"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/R\u00fcppell's_vulture"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Coenagriocnemis_insulare"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Samoana_decussatula"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bermudamysis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mecistogaster_pronoti"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nicaraguan_spider_monkey"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Haplochromis_ishmaeli"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/S\u00e3o_Tom\u00e9_fiscal"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Laysan_duck"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Heliogomphus_lyratus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Atelopus_ebenoides"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Russian_sturgeon"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Northern_muriqui"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pseudoeurycea_brunnata"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Frost's_arboreal_alligator_lizard"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Idiostatus_middlekaufi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Northern_bald_ibis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Puaiohi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Plectrohyla_chryses"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Black_stilt"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alburnus_timarensis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Coptodon_spongotroktis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Philautus_jacobsoni"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pachypanchax_sakaramyi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Opisthostoma_inornatum"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Achatinella_leucorraphe"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Isthmohyla_tica"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cumberland_bean_pearly_mussel"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mekong_giant_catfish"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bulimulus_curtus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/European_mink"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pernambuco_pygmy_owl"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kristin's_false_shieldback"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Iberocypris_palaciosi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Glyptothorax_kashmirensis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bulimulus_indefatigabilis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Flores_shrew"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tennessee_pebblesnail"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Aaadonta_constricta_babelthuapi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Scardinius_scardafa"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hawksbill_sea_turtle"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Leptodactylus_silvanimbus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tenerife_speckled_lizard"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Persian_sturgeon"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rhytida_oconnori"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dikume"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Acanthagrion_taxaense"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/White-winged_guan"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Black_mogurnda"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Guanujo_stubfoot_toad"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Magenta_petrel"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Haplochromis_beadlei"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Opisthostoma_mirabile"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hasarius_mahensis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Salinas_chub"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pig-tailed_langur"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alagoas_foliage-gleaner"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Greater_monkey-faced_bat"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Squalius_cappadocicus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ixtl\u00e1n_deer_mouse"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/S\u00e3o_Tom\u00e9_ibis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cnemaspis_anaikattiensis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Drepanosticta_hilaris"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hemistomia_gorotitei"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Western_ground_parrot"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pachysaga_strobila"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Amu_Darya_sturgeon"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Samoana_bellula"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Malabar_large-spotted_civet"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gonospira_duponti"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Iberochondrostoma_almacai"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bythiospeum_tschapecki"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Black-hooded_coucal"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Catalina_mountain_snail"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sibon_merendonensis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rio_Branco_antbird"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bulmer's_fruit_bat"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Popenaias_popeii"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/New_Caledonian_owlet-nightjar"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Haplochromis_victorianus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Valencia_letourneuxi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Peppered_tree_frog"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Barbodes_amarus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pickersgill's_reed_frog"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Belgrandiella_mimula"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Partula_calypso"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Samoana_strigata"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Plectrohyla_psarosema"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Brune's_tryonia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hubbsina_turneri"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Selous'_zebra"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Northern_white-cheeked_gibbon"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Partula_martensiana"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bulimulus_saeronius"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Procaris_chacei"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Giant_pangasius"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Flat-backed_spider_tortoise"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gulella_puzeyi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Horned_curassow"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Oreochromis_esculentus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Marstonia_ozarkensis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alchichica_silverside"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Perbrinckia_scitula"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Wimmer's_shrew"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Clinothelphusa"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Belgrandia_varica"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Masafuera_rayadito"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Barbodes_baoulan"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ecuadorian_capuchin"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Opisthopatus_roseus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Opisthostoma_fraternum"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Handley's_slender_opossum"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bocaccio_rockfish"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nightingale_reed_warbler"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/False_canyon_mouse"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Capoeta_pestai"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Aaadonta_fuscozonata_fuscozonata"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lycodon_chrysoprateros"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ptychochromis_insolitus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Haplochromis_sp._'black_cryptodon'"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chalcides_ebneri"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Amastra_rubens"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pseudophoxinus_maeandricus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Purple_bean"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Northern_white_rhinoceros"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Procambarus_delicatus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lake_Wanam_rainbowfish"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Austrogammarus_australis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Widemouth_gambusia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chiloglanis_polyodon"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Grossuana_thracica"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Opisthostoma_vermiculum"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Opisthostoma_otostoma"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lucifuga_simile"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Barbus_euboicus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Adetomyrma_venatrix"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kondoconcha_othnius"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Maui's_dolphin"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alburnus_mandrensis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Barbara_Brown's_titi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ameerega_ingeri"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mexican_howler"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Xenotyphlops_grandidieri"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Barbodes_pachycheilus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pondoland_cannibal_snail"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Barbodes_clemensi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sira_curassow"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Roig's_tuco-tuco"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Glaucous_macaw"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Brookesia_bonsi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pethia_bandula"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Burchell's_redfin"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Anabarilius_yangzonensis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cebu_flowerpecker"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Achatinella_lila"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Carolina_heelsplitter"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cyclura_pinguis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pohnpei_starling"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Armoured_frog"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Samoana_burchi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tropidoptera_heliciformis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Djibouti_francolin"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bali_myna"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Enggano_rat"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sitalcicus_incertus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hoge's_side-necked_turtle"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jamaican_flower_bat"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vietnamese_three-striped_box_turtle"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Iglica_gratulabunda"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Southern_kidneyshell"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ixalodectes_flectocercus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Haplochromis_mylergates"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Big_pocket_gopher"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Calumma_tarzan"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bolivian_chinchilla_rat"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bermudagidiella"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nelson's_woodrat"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Obovaria_haddletoni"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Atelopus_halihelos"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Opanara_areaensis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rosy_bitterling"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hyporthodus_nigritus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pindu"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tantilla_tritaeniata"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bastard_sturgeon"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ochlockonee_moccasinshell"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Micromacromia_miraculosa"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Craugastor_coffeus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jamaican_greater_funnel-eared_bat"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Marstonia_castor"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Conasauga_logperch"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Starry_sturgeon"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/White-headed_langur"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Haplochromis_microdon"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Web-footed_coqu\u00ed"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nihoa_finch"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Madagascan_pochard"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sentani_rainbowfish"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sapphire-bellied_hummingbird"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Niceforo's_wren"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Atelopus_chocoensis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mascarene_petrel"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hemistomia_neku"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hypselobarbus_thomassi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Saipan_reed_warbler"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Helan_Shan_pika"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lake_Oku_clawed_frog"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Caecocypris_basimi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Colombian_woolly_monkey"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Zarciadero_web-footed_salamander"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fluted_pebblesnail"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Maui_nukupu\u02bbu"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Homoeodera_edithia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Atelopus_pictiventris"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bradytriton_silus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rodrigues_flying_fox"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cachorrito_de_mezquital"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lanistes_neritoides"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Crow_honeyeater"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rhinocypha_ogasawarensis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Achatinella_viridans"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Belgrandiella_pelerei"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Theba_arinagae"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Western_purple-faced_langur"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/White-bellied_cinclodes"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nectophrynoides_wendyae"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Golden_vizcacha_rat"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ornate_sleeper-ray"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kaapori_capuchin"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chapa_pygmy_dormouse"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Leiostyla_cassida"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mesonerilla_prospera"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mortlock_flying_fox"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gwyniad"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cuban_greater_funnel-eared_bat"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Elizabeth_Springs_goby"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Achatinella_swiftii"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Social_tuco-tuco"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Barbodes_resimus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pseudoeurycea_smithi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Platycypha_amboniensis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Salmo_ezenami"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Coptodon_bakossiorum"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Geometric_tortoise"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bulimulus_sculpturatus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gobio_hettitorum"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Giant_barb"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hyridella_glenelgensis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tropidophis_hendersoni"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Margarita_Island_kangaroo_rat"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Slevin's_mouse"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tomichia_cawstoni"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Brown-headed_spider_monkey"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/McCord's_box_turtle"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hooded_grebe"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/New_Zealand_storm_petrel"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Morelet's_tree_frog"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Synemon_plana"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Iberochondrostoma_oretanum"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Allotoca_maculata"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Montane_monkey-faced_bat"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sri_Lankan_relict_ant"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Roatan_coral_snake"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Micro_frog"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Microhyla_karunaratnei"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Coregonus_bavaricus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Varicorhinus_ruandae"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bruneau_hot_springsnail"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vietnamese_pond_turtle"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Coahuilix_de_hubbs_snail"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jamaican_iguana"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Black_rhinoceros"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Plectrohyla_acanthodes"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Niger_Delta_red_colobus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Yellowbelly_voiceless_tree_frog"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Eastern_black_crested_gibbon"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Oxylapia_polli"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rolling_pebblesnail"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/La_Gomera_giant_lizard"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pink-headed_duck"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Trithemis_nigra"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Okinawa_woodpecker"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Trigonostigma_somphongsi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sinocyclocheilus_grahami"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nike's_squeaker"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Perote_mouse"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Heliogomphus_ceylonicus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Variegated_mogurnda"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Copan_brook_frog"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Carrizal_seedeater"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ixalotriton_parva"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Amsterdam_albatross"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Atelopus_subornatus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/White_warty-back_pearly_mussel"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mountain_galaxias"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tahiti_monarch"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/West_African_lion"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Razorback_sucker"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cyclura_rileyi_cristata"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/White-bellied_heron"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Atelopus_mindoensis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Systomus_compressiformis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Haplochromis_barbarae"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mautodontha_boraborensis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Actinella_obserata"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Parapsilorhynchus_prateri"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nimbaphrynoides_liberiensis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Golden_coin_turtle"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cambarus_zophonastes"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Magdalena_River_turtle"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Elvira_rat"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Amastra_micans"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Opanara_fosbergi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Spencer's_river_tree_frog"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lake_Pedder_planarian"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Siamese_tigerfish"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Achatinella_byronii"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Clarias_maclareni"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Coptodon_bemini"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cuatro_Cienegas_softshell"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Barbodes_tras"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/South-central_black_rhinoceros"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Atelopus_chrysocorallus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Atelopus_mucubajiensis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Partula_emersoni"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fanshell"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Painted_terrapin"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kipunji"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Smalltooth_sawfish"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fiji_petrel"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Plains_coqui"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Siau_scops_owl"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Plectrohyla_pycnochila"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bizarre-nosed_chameleon"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tylognathus_festai"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lake_Chala_tilapia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Superagui_lion_tamarin"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Penitent_mussel"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Acheron_spring_goby"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Orcula_fuchsi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Peter's_tube-nosed_bat"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mangrove_finch"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Amastra_cylindrica"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hydrotarsus_compunctus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Coptodon_imbriferna"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/K\u0131z\u0131l\u0131rmak_toothcarp"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Poncelet's_giant_rat"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Honduran_brook_frog"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Schizothorax_grahami"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bonin_flying_fox"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dromedary_naiad"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Oyster_mussel"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Muennink's_spiny_rat"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Leucocharis_pancheri"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Wicker_ancylid"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sociable_lapwing"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Celebes_crested_macaque"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Knipowitschia_mermere"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Barbodes_palata"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Salmo_carpio"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nanodectes_bulbicercus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Short-furred_Atlantic_tree-rat"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hemicycla_saulcyi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alcorn's_pocket_gopher"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Otjikoto_tilapia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Samoana_meyeri"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pachliopta_jophon"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Marquesan_kingfisher"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Amastra_spirizona"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kikuzato's_brook_snake"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Antioquia_brush_finch"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Grey-breasted_parakeet"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Namdapha_flying_squirrel"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Eastern_black_rhinoceros"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alabama_sturgeon"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Maui_parrotbill"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Belalanda_chameleon"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Scardinius_graecus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Moapa_dace"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hypselobarbus_pulchellus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Laubuka_varuna"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Siamese_crocodile"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Oreochromis_chungruruensis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rhodeus_smithii"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pleurocera_ampla"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dlinza_Forest_pinwheel"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Burmese_star_tortoise"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Islamia_trichoniana"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bay_checkerspot_butterfly"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Samoana_fragilis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Megalobulimus_proclivis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gyraulus_cockburni"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mangareva_kingfisher"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Procambarus_morrisi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bulimulus_lycodus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ixalotriton_niger"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Partula_leucothoe"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Xenopus_itombwensis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Calico_grouper"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Coptodon_snyderae"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Leora's_stream_salamander"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Achatinella_cestus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Atelopus_guitarraensis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Spine-fingered_tree_frog"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Preuss's_red_colobus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nihoa_millerbird"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sumatran_elephant"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Opanara_bitridentata"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Spoon-billed_sandpiper"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Quadrula_mitchelli"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Atlantic_goliath_grouper"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Campo_Grande_tree_frog"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nothomyrmecia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Megalagrion_leptodemas"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gulella_salpinx"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Elkhorn_coral"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Opanara_megomphala"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pseudoeurycea_exspectata"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ptychochromoides_vondrozo"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tooth-billed_pigeon"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Samoana_dryas"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chestnut-capped_piha"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kaluga_(fish)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Black-spotted_false_shieldback"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jatayu_Conservation_Breeding_Centre,_Pinjore__CR__1"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sulu_bleeding-heart"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lamprologus_kungweensis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cambarus_aculabrum"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Samoana_oreas"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Radiated_tortoise"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Plectrohyla_quecchi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chinese_pangolin"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Palaemonetes_cummingi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/\u2018Akeke\u2018e"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/European_eel"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cyclura_rileyi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Partula_taeniata"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Black-breasted_puffleg"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sarawak_surili"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Procambarus_attiguus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Plectrohyla_ixil"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Karpathos_frog"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Blue-billed_curassow"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gastrotheca_lauzuricae"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Northern_riffleshell"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cryptobatrachus_nicefori"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Spotted_handfish"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alzoniella_marianae"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Achatinella_phaeozona"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Oedipina_paucidentata"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Graecoanatolica_conica"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tylomelania_kruimeli"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sawback_angelshark"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Anjouan_scops_owl"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hyla_chlorostea"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nemacheilus_dori"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Colostethus_jacobuspetersi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Johora_singaporensis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Achatinella_vulpina"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Exerodonta_perkinsi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Haplochromis_flavipinnis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pseudophilotes_sinaicus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Delminichthys_krbavensis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kondana_soft-furred_rat"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Barbus_ruasae"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Armsia_petasus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Magazine_Mountain_middle-toothed_snail"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gorgeted_puffleg"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bothrops_insularis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Oblong_rocksnail"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mexican_spider_monkey"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Anilany_helenae"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Heliconius_nattereri"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Paludomus_ajanensis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Aipysurus_apraefrontalis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Orthochromis_uvinzae"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rondo_dwarf_galago"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Monzon's_hidden_salamander"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Plectrohyla_siopela"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bythinella_gloeeri"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Karomo"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Radioconus_goeldi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hauffenia_lucidulus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sylvilagus_palustris_hefneri"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ctenosaura_bakeri"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pyrrhosoma_elisabethae"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Atelopus_glyphus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bulimulus_sp._nov._'nilsodhneri'"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vermilion_darter"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Atelopus_nepiozomus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cozumel_raccoon"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sakhalin_taimen"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Atelopus_reticulatus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Achatinella_bulimoides"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cave_squeaker"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Centrolene_gemmatum"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Andaman_shrew"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Harenna_shrew"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Maspalomas_bow-legged_grasshopper"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/San_Jos\u00e9_brush_rabbit"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gorgan_salamander"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Veragua_stubfoot_toad"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jardinella_colmani"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gran_Canaria_blue_chaffinch"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Haplochromis_michaeli"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chalchalero_vizcacha_rat"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Haplochromis_perrieri"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Damba_mipentina"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Plectrohyla_guatemalensis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Plectrohyla_cyanomma"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Black-chinned_monarch"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Atelopus_eusebianus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mariana_crow"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pacifastacus_fortis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rhytida_clarki"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bugun_liocichla"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alagoas_antwren"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Belgrandiella_ganslmayri"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Orange-bellied_parrot"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/White-shouldered_ibis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Golf_stick_pearly_mussel"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Diplommatina_madaiensis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alosa_vistonica"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bulimulus_achatellinus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Haplochromis_latifasciatus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cozumel_thrasher"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ingerana_charlesdarwini"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Green_and_red_venter_harlequin_toad"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Birdwing_pearlymussel"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Atelopus_petersi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Takifugu_chinensis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Royal_cinclodes"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Samoana_attenuata"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Varicorhinus_platystomus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Andean_catfish"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Telestes_polylepis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ilyodon_whitei"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Abe's_salamander"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ogasawarana_chichijimana"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Santamartamys"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chinanteco_deer_mouse"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cuatrocienegas_killifish"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lampedusa_melitensis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Northern_tinker_frog"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nototriton_lignicola"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Slender-snouted_crocodile"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Haplochromis_heusinkveldi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gulickia_alexandri"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Abronia_campbelli"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Socorro_springsnail"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bogot\u00e1_sunangel"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Opaque_pebblesnail"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Killarney_shad"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Purple-winged_ground_dove"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Asiatic_cheetah"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Danube_delta_dwarf_goby"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Opisthostoma_jucundum"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Crotalus_durissus_unicolor"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Iriomote_cat"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Streptocephalus_gracilis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bay_Lycian_salamander"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Be'er_Sheva_fringe-fingered_lizard"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Astatotilapia_sp._'dwarf_bigeye_scraper'"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Haplochromis_longirostris"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Romanichthys_valsanicola"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Iberochondrostoma_lusitanicum"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Apache_trout"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Negros_bleeding-heart"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Indolestes_boninensis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Meladema_imbricata"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sclater's_shrew"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Trinidad_piping_guan"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Philippine_crocodile"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Callulina_dawida"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Barbatula_simavica"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Salmo_platycephalus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Moheli_scops_owl"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Trondo_mainty"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cottus_rondeleti"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Opisthostoma_perspectivum"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Turks_and_Caicos_rock_iguana"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hemistomia_whiteleggei"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Saint_Helena_plover"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gal\u00e1pagos_petrel"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Giant_sea_bass"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Atelopus_petriruizi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Leadbeater's_possum"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Amanipodagrion"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rhinolophus_hilli"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Arinia_oviformis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Marsican_brown_bear"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Short-crested_coquette"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kemp's_ridley_sea_turtle"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Oaxacan_yellow_tree_frog"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Blond_capuchin"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Elongate_bitterling"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Iquitos_gnatcatcher"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Drepanosticta_adami"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Schayera_baiulus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cowan's_mantella"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Flatjaw_minnow"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chevron-spotted_brown_frog"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Geocrinia_alba"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Draparnaudia_anniae"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Christmas_Island_pipistrelle"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nicobar_shrew"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cyprinus_barbatus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nelson's_small-eared_shrew"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jenkins'_shrew"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Niau_kingfisher"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Islamia_graeca"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rio_Mayo_titi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Plectrohyla_crassa"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Arinia_simplex"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cuban_crocodile"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bulimulus_wolfi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Belgrandiella_bachkovoensis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Haplochromis_granti"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cerro_Pital_salamander"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Aprasia_aurita"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fuertes's_parrot"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Helenoconcha_relicta"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Aipysurus_foliosquama"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Homoeodera_elateroides"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Centrolene_ballux"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pene_galilaea"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tetrathemis_denticauda"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pr\u00edncipe_thrush"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kinglet_calyptura"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Crotalus_catalinensis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Boophis_williamsi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Woundfin"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gobio_delyamurei"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bulimulus_sp._nov._'vanmoli'"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Radiolate_partula"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Haplochromis_cassius"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/White-winged_flufftail"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Endangered_Species_(H.A.W.K._album)", "surface form": "Endangered"}], "relations": [{"URI": "http://dbpedia.org/ontology/animal", "surface form": "animals"}, {"URI": "http://dbpedia.org/ontology/principal", "surface form": "critically"}]}, {"id": "13", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Which politicians were married to a German?", "keywords": "politician, married, German"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Politician> ; <http://dbpedia.org/ontology/spouse> ?spouse { ?spouse <http://dbpedia.org/ontology/birthPlace> <http://dbpedia.org/resource/Germany> } UNION { ?spouse <http://dbpedia.org/ontology/birthPlace> ?p . ?p <http://dbpedia.org/ontology/country> <http://dbpedia.org/resource/Germany> } }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sahra_Wagenknecht"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Karl_Carstens"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gesine_Schwan"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Richard_von_Weizs\u00e4cker"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Erich_Honecker"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Johannes_Rau"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Duke_Adolf_Friedrich_of_Mecklenburg"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Florence_Prag_Kahn"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Walter_Ulbricht"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Otto_of_Stolberg-Wernigerode"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Isidor_Straus"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Politicians_of_The_Wire", "surface form": "politicians"}, {"URI": "http://dbpedia.org/resource/Germany", "surface form": "German"}, {"URI": "http://dbpedia.org/resource/German", "surface form": "German"}], "relations": [{"URI": "http://dbpedia.org/ontology/spouse", "surface form": "married"}, {"URI": "http://dbpedia.org/ontology/country", "surface form": ""}, {"URI": "http://dbpedia.org/ontology/country", "surface form": ""}]}, {"id": "114", "answertype": "number", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "How big is the earth's diameter?", "keywords": "earth, diameter"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT (( xsd:double(?radius) * 2 ) AS ?diameter) WHERE { res:Earth dbo:meanRadius ?radius }"}, "answers": [{"head": {"vars": ["c"]}, "results": {"bindings": [{"c": {"type": "literal", "value": "1.2742e+07"}}]}}], "entities": [], "relations": [{"URI": "http://dbpedia.org/ontology/ground", "surface form": "earth"}, {"URI": "http://dbpedia.org/ontology/diameter", "surface form": " diameter"}]}, {"id": "92", "answertype": "boolean", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Is the wife of President Obama called Michelle?", "keywords": "wife, president, obama, called, michelle"}], "query": {"sparql": "PREFIX res: <http://dbpedia.org/resource/> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> PREFIX onto: <http://dbpedia.org/ontology/> ASK WHERE { res:Barack_Obama onto:spouse ?spouse . ?spouse rdfs:label ?name FILTER regex(?name, \"Michelle\") }"}, "answers": [{"head": {}, "results": {}, "boolean": true}], "entities": [{"URI": "http://dbpedia.org/resource/Barack_Obama", "surface form": "Obama"}], "relations": [{"URI": "http://dbpedia.org/property/spouse", "surface form": "wife"}, {"URI": "http://dbpedia.org/ontology/guest", "surface form": "called"}]}, {"id": "194", "answertype": "resource", "aggregation": false, "onlydbo": false, "hybrid": false, "question": [{"language": "en", "string": "Which U.S. state has the abbreviation MN?", "keywords": "U.S. state, abbreviation, MN"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a yago:WikicatStatesOfTheUnitedStates ; <http://dbpedia.org/property/postalabbreviation> \"MN\"^^<http://www.w3.org/1999/02/22-rdf-syntax-ns#langString> }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Minnesota"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/United_States", "surface form": "US"}, {"URI": "http://dbpedia.org/resource/MN", "surface form": "MN"}], "relations": [{"URI": "http://dbpedia.org/ontology/abbreviation", "surface form": "abbreviation"}]}, {"id": "175", "answertype": "date", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "When did Muhammad die?", "keywords": "Muhammad, die"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT xsd:date(?date) WHERE { res:Muhammad dbo:deathDate ?date }"}, "answers": [{"head": {"vars": ["date"]}, "results": {"bindings": [{"date": {"type": "literal", "value": "0632-06-08"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Muhammad", "surface form": "Muhammad"}], "relations": [{"URI": "http://dbpedia.org/ontology/deathDate", "surface form": "die"}]}, {"id": "26", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "What is the atmosphere of the Moon composed of?", "keywords": "atmosphere, Moon, composed of"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Moon> <http://dbpedia.org/property/atmosphereComposition> ?uri }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Helium"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Neon"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Potassium"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Radon"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sodium"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Argon"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hydrogen"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Moon", "surface form": "Moon"}], "relations": [{"URI": "http://dbpedia.org/property/background", "surface form": "atmosphere"}, {"URI": "http://dbpedia.org/ontology/musicComposer", "surface form": "composed"}]}, {"id": "60", "answertype": "string", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Who is the governor of Texas?", "keywords": "governor, Texas"}], "query": {"sparql": "PREFIX res: <http://dbpedia.org/resource/> PREFIX dbp: <http://dbpedia.org/property/> SELECT DISTINCT ?string WHERE { res:Texas dbp:governor ?string }"}, "answers": [{"head": {"vars": ["string"]}, "results": {"bindings": [{"string": {"type": "literal", "value": "Greg Abbott"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Texas", "surface form": "Texas"}], "relations": [{"URI": "http://dbpedia.org/ontology/governor", "surface form": "governor"}]}, {"id": "110", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Which movies did Kurosawa direct?", "keywords": "film, direct, Kurosawa"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT ?uri WHERE { ?uri rdf:type dbo:Film ; dbo:director res:Akira_Kurosawa }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Idiot_(1951_film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dreams_(1990_film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Bad_Sleep_Well"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Hidden_Fortress"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Throne_of_Blood"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Drunken_Angel"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kagemusha"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dersu_Uzala_(1975_film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rhapsody_in_August"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sanshiro_Sugata"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Seven_Samurai"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sanjuro"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sanshiro_Sugata_Part_II"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Scandal_(1950_film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/One_Wonderful_Sunday"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Most_Beautiful"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Quiet_Duel"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Madadayo"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/High_and_Low_(1963_film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ikiru"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Those_Who_Make_Tomorrow"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dodes'ka-den"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Red_Beard"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rashomon"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Yojimbo_(film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Stray_Dog_(film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Horse_(1941_film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/No_Regrets_for_Our_Youth"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Lower_Depths_(1957_film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ran_(film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Men_Who_Tread_on_the_Tiger's_Tail"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/I_Live_in_Fear"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Akira_Kurosawa", "surface form": "Kurosawa"}], "relations": [{"URI": "http://dbpedia.org/ontology/film", "surface form": "movies"}, {"URI": "http://dbpedia.org/ontology/director", "surface form": "direct"}]}, {"id": "206", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "What was the name of the famous battle in 1836 in San Antonio?", "keywords": "famous battle, 1836, San Antonio"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?uri WHERE { ?uri a dbo:MilitaryConflict ; dbo:place dbr:San_Antonio ; dbo:date ?date FILTER ( ?date > \"1835-12-31T00:00:00Z\"^^xsd:dateTime ) FILTER ( ?date <= \"1836-12-31T00:00:00Z\"^^xsd:dateTime ) }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Battle_of_the_Alamo"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/1836", "surface form": "1836"}, {"URI": "http://dbpedia.org/resource/San_Antonio", "surface form": "San Antonio"}], "relations": [{"URI": "http://dbpedia.org/property/name", "surface form": "name"}, {"URI": "http://dbpedia.org/ontology/motto", "surface form": "famous battle"}]}, {"id": "97", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Give me the official websites of actors of the television show Charmed.", "keywords": "official, websites, actors, television, charmed"}], "query": {"sparql": "PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX foaf: <http://xmlns.com/foaf/0.1/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Charmed> onto:starring ?actors . ?actors foaf:homepage ?uri }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://www.briankrause.us"}}, {"uri": {"type": "uri", "value": "http://www.alyssa.com"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Charmed", "surface form": "television show Charmed"}], "relations": [{"URI": "http://dbpedia.org/ontology/officialLanguage", "surface form": "official websites"}, {"URI": "http://dbpedia.org/ontology/background", "surface form": "actors"}]}, {"id": "20", "answertype": "number", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "How many calories does a baguette have?", "keywords": "calories, baguette"}], "query": {"sparql": "SELECT DISTINCT ?n WHERE { <http://dbpedia.org/resource/Baguette> <http://dbpedia.org/property/calories> ?n }"}, "answers": [{"head": {"vars": ["c"]}, "results": {"bindings": [{"c": {"type": "literal", "value": "263"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Baguette", "surface form": "baguette"}], "relations": [{"URI": "http://dbpedia.org/property/calories", "surface form": "calories"}]}, {"id": "169", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Give me all libraries established before 1400.", "keywords": "libraries, established, before 1400"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Library> ; <http://dbpedia.org/property/established> ?year FILTER ( ?year < 1400 ) }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nanpura_Parsi_Library"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Austrian_National_Library"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Merton_College_Library"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Library_of_Pergamum"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mother_Irene_Gill_Memorial_Library"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Library_of_Ashurbanipal"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cambridge_University_Library"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_and_University_Library_of_the_Republika_Srpska"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Library_of_Alexandria"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Almeida_Garrett_Library"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Heidelberg_University_Library"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Maughan_Library"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Libraries_in_Brighton_and_Hove", "surface form": "libraries"}, {"URI": "http://dbpedia.org/resource/1400", "surface form": "1400"}], "relations": [{"URI": "http://dbpedia.org/ontology/established", "surface form": "established"}]}, {"id": "38", "answertype": "resource", "aggregation": false, "onlydbo": false, "hybrid": false, "question": [{"language": "en", "string": "Give me all Frisian islands that belong to the Netherlands.", "keywords": "Frisian island, Netherlands"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX yago: <http://dbpedia.org/class/yago/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type yago:WikicatFrisianIslands ; dbo:country res:Netherlands }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Frisian_Islands"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Frisian_Islands", "surface form": "Frisian islands"}, {"URI": "http://dbpedia.org/resource/Netherlands_Antilles_at_the_2007_Pan_American_Games", "surface form": "Netherlands"}], "relations": [{"URI": "http://dbpedia.org/property/rank", "surface form": "belong"}]}, {"id": "192", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Which museum exhibits The Scream by Munch?", "keywords": "museum, Scream, Munch"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:The_Scream dbo:museum ?uri }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Gallery_(Norway)"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/The_Scream", "surface form": "The Scream by Munch"}], "relations": [{"URI": "http://dbpedia.org/ontology/museum", "surface form": "museum"}, {"URI": "http://dbpedia.org/ontology/sport", "surface form": "exhibits"}]}, {"id": "78", "answertype": "date", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "When was the De Beers company founded?", "keywords": "De Beers company, founded"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT xsd:date(?date) WHERE { res:De_Beers dbo:foundingYear ?date }"}, "answers": [{"head": {"vars": ["date"]}, "results": {"bindings": [{"date": {"type": "literal", "value": "1888-01-01"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/De_Beers", "surface form": "De Beers company"}], "relations": [{"URI": "http://dbpedia.org/ontology/foundedBy", "surface form": "founded"}]}, {"id": "19", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Who became president after JFK died?", "keywords": "president, after JFK death"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/John_F._Kennedy> <http://dbpedia.org/property/presidentEnd> ?x . ?uri <http://dbpedia.org/property/presidentStart> ?x; a <http://dbpedia.org/ontology/Person>. }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lyndon_B._Johnson"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/John_F._Kennedy", "surface form": "JFK"}], "relations": [{"URI": "http://dbpedia.org/ontology/president", "surface form": "president"}, {"URI": "http://dbpedia.org/ontology/deathDate", "surface form": "died"}]}, {"id": "190", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Who are the parents of the wife of Juan Carlos I?", "keywords": "Juan Carlos I, wife, parents"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Juan_Carlos_I_of_Spain dbo:spouse ?x . ?x dbo:parent ?uri }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Frederika_of_Hanover"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Paul_of_Greece"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/I", "surface form": "I"}, {"URI": "http://dbpedia.org/resource/Juan_Carlos_I_of_Spain", "surface form": "Juan Carlos"}], "relations": [{"URI": "http://dbpedia.org/ontology/parent", "surface form": "parents"}, {"URI": "http://dbpedia.org/ontology/spouse", "surface form": "wife"}]}, {"id": "174", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Who is the novelist of the work a song of ice and fire?", "keywords": "a song of ice and fire, novelist"}], "query": {"sparql": "PREFIX dbr: <http://dbpedia.org/resource/> PREFIX dbp: <http://dbpedia.org/property/> SELECT ?Novelist WHERE { dbr:A_Song_of_Ice_and_Fire dbp:author ?Novelist }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/George_R._R._Martin"}}]}}], "entities": [], "relations": [{"URI": "http://dbpedia.org/ontology/author", "surface form": "novelist"}, {"URI": "http://dbpedia.org/ontology/service", "surface form": "work"}, {"URI": "http://dbpedia.org/ontology/anthem", "surface form": "song"}, {"URI": "http://dbpedia.org/ontology/frozen", "surface form": "ice"}]}, {"id": "189", "answertype": "string", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "In which studio did the Beatles record their first album?", "keywords": "Beatles, record, first album, studio"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbp: <http://dbpedia.org/property/> PREFIX dbr: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> PREFIX db: <http://dbpedia.org/> SELECT ?studio WHERE { ?album dbo:artist dbr:The_Beatles ; rdf:type dbo:Album ; dbo:releaseDate ?date ; dbp:studio ?studio } ORDER BY ASC(?date) LIMIT 1"}, "answers": [{"head": {"vars": ["string"]}, "results": {"bindings": [{"string": {"type": "literal", "value": "EMI Studios, London"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Beatles_VI", "surface form": "Beatles"}], "relations": [{"URI": "http://dbpedia.org/property/studio", "surface form": "studio"}, {"URI": "http://dbpedia.org/ontology/recordLabel", "surface form": "record"}, {"URI": "http://dbpedia.org/ontology/album", "surface form": "album"}]}, {"id": "152", "answertype": "resource", "aggregation": false, "onlydbo": false, "hybrid": false, "question": [{"language": "en", "string": "Which beer brewing companies are located in North-Rhine Westphalia?", "keywords": "brewing companies, North rhine Westphalia"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dct: <http://purl.org/dc/terms/> PREFIX dbc: <http://dbpedia.org/resource/Category:> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT ?company WHERE { ?company dct:subject dbc:Companies_based_in_North_Rhine-Westphalia ; rdf:type dbo:Brewery }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Veltins"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Krombacher_Brauerei"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Diebels"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Warsteiner"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Museum_of_Beer_and_Brewing", "surface form": "beer brewing companies"}, {"URI": "http://dbpedia.org/resource/North_Rhine-Westphalia", "surface form": "North-Rhine Westphalia"}], "relations": [{"URI": "http://dbpedia.org/property/stand", "surface form": "located"}]}, {"id": "94", "answertype": "date", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "When did princess Diana die?", "keywords": "date, princess Diana, died"}], "query": {"sparql": "SELECT DISTINCT xsd:date(?d) WHERE { <http://dbpedia.org/resource/Diana,_Princess_of_Wales> <http://dbpedia.org/ontology/deathDate> ?d }"}, "answers": [{"head": {"vars": ["date"]}, "results": {"bindings": [{"date": {"type": "literal", "value": "1997-08-31"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Diana,_Princess_of_Wales", "surface form": "princess Diana"}], "relations": [{"URI": "http://dbpedia.org/ontology/deathDate", "surface form": "die"}]}, {"id": "8", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Who founded Intel?", "keywords": "Intel, founded"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Intel> <http://dbpedia.org/property/founders> ?uri }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Robert_Noyce"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gordon_Moore"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Intel", "surface form": "Intel"}], "relations": [{"URI": "http://dbpedia.org/ontology/foundingYear", "surface form": "founded"}]}, {"id": "95", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Who is the youngest player in the Premier League?", "keywords": "player, Premier League, youngest"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { ?uri dbo:team ?team . ?league dbo:league res:Premier_League . ?league dbo:team ?team . ?uri dbo:birthDate ?date } ORDER BY DESC(?date) LIMIT 1"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ernie_Pinkney"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Premier_League", "surface form": "Premier League"}], "relations": [{"URI": "http://dbpedia.org/ontology/participant", "surface form": "player"}]}, {"id": "119", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Which instruments does Cat Stevens play?", "keywords": "Cat Stevens, instrument"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Cat_Stevens> <http://dbpedia.org/ontology/instrument> ?uri }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Baldwin_Piano_Company"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gibson_ES-335"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mandolin"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mellotron"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Epiphone_Casino"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fender_Telecaster"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gibson_Everly_Brothers_Flattop"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rhodes_piano"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gibson_J-200"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ovation_Guitar_Company"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Cat_Stevens", "surface form": "Cat Stevens"}], "relations": [{"URI": "http://dbpedia.org/property/instrument", "surface form": "instruments"}, {"URI": "http://dbpedia.org/ontology/starring", "surface form": "play"}]}, {"id": "115", "answertype": "number", "aggregation": true, "onlydbo": false, "hybrid": false, "question": [{"language": "en", "string": "How many rivers and lakes are in South Carolina?", "keywords": "rivers, lakes, South Carolina"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dct: <http://purl.org/dc/terms/> PREFIX dbc: <http://dbpedia.org/resource/Category:> PREFIX dbr: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT (COUNT(DISTINCT ?uri) AS ?count) WHERE { { ?uri dbo:location dbr:South_Carolina ; rdf:type dbo:Lake } UNION { ?uri dct:subject dbc:Rivers_and_streams_of_South_Carolina } }"}, "answers": [{"head": {"vars": ["c"]}, "results": {"bindings": [{"c": {"type": "literal", "value": "15"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/South_Carolina", "surface form": "South Carolina"}], "relations": [{"URI": "http://dbpedia.org/ontology/river", "surface form": "rivers"}, {"URI": "http://dbpedia.org/ontology/lake", "surface form": "lakes"}]}, {"id": "116", "answertype": "resource", "aggregation": false, "onlydbo": false, "hybrid": false, "question": [{"language": "en", "string": "Who was called Rodzilla?", "keywords": "called, Rodzilla"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://xmlns.com/foaf/0.1/nick> \"Rodzilla\"@en }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rodney_Blake"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Rodzilla", "surface form": "Rodzilla"}], "relations": [{"URI": "http://dbpedia.org/ontology/alias", "surface form": "called"}]}, {"id": "138", "answertype": "resource", "aggregation": false, "onlydbo": false, "hybrid": false, "question": [{"language": "en", "string": "Give me the capitals of all countries in Africa.", "keywords": "Africa, country, capital"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbc: <http://dbpedia.org/resource/Category:> PREFIX dct: <http://purl.org/dc/terms/> SELECT DISTINCT ?uri WHERE { ?country dct:subject dbc:Countries_in_Africa ; dbo:capital ?uri }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ouagadougou"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mbabane"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kigali"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bissau"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Juba"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Khartoum"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Addis_Ababa"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Libreville"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lilongwe"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nairobi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Djibouti_(city)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lom\u00e9"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Freetown"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Maseru"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bujumbura"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Malabo"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bangui"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mogadishu"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dakar"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Laayoune"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tunis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Harare"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Accra"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Brazzaville"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lusaka"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/S\u00e3o_Tom\u00e9"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rabat"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cape_Town"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Conakry"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Asmara"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Yaound\u00e9"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tifariti"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Monrovia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Niamey"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Yamoussoukro"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bloemfontein"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lobamba"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Porto-Novo"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Victoria,_Seychelles"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Abidjan"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cairo"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tripoli"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/N'Djamena"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bamako"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Antananarivo"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Maputo"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Luanda"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Moroni,_Comoros"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Praia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kinshasa"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pretoria"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Abuja"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Algiers"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nouakchott"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Windhoek"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hargeisa"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Banjul"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dodoma"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Port_Louis"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Countries_of_the_United_Kingdom", "surface form": "countries"}, {"URI": "http://dbpedia.org/resource/Africa", "surface form": "Africa"}], "relations": [{"URI": "http://dbpedia.org/ontology/principal", "surface form": "capitals"}]}, {"id": "177", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Which bridges are of the same type as the Manhattan Bridge?", "keywords": "bridge, same type, Manhattan Bridge"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX dbr: <http://dbpedia.org/resource/> SELECT DISTINCT ?bridge WHERE { dbr:Manhattan_Bridge dbo:type ?type . ?bridge dbo:type ?type ; rdf:type dbo:Bridge }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Claiborne_Pell_Newport_Bridge"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Xihoumen_Bridge"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/\u00cele_d'Orl\u00e9ans_Bridge"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Yichang_Yangtze_River_Highway_Bridge"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chain_Bridge_(Budapest)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Forth_Road_Bridge"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tajik\u2013Afghan_bridge_at_Tem-Demogan"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Beipan_River_Guanxing_Highway_Bridge"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Liede_Bridge"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ask\u00f8y_Bridge"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Yangmingtan_Bridge"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hammersmith_Bridge"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Simon_Kenton_Memorial_Bridge"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fatih_Sultan_Mehmet_Bridge"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fort_Steuben_Bridge"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bear_Mountain_Bridge"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Arapuni_Suspension_Bridge"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Malacca_Strait_Bridge__Malacca_Strait_Bridge__1"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Millennium_Bridge,_London"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Two_Cent_Bridge"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Thousand_Islands_Bridge"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Market_Street_Bridge_(Steubenville)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lokkaren_Bridge"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Daly's_bridge"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fort_Edmonton_Footbridge"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hal_W._Adams_Bridge"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Albert_Bridge,_London"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Peak_Walk"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Samora_Machel_Bridge"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fyksesund_Bridge"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kurushima-Kaiky\u014d_Bridge"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Namhae_Bridge"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Huangpu_Bridge"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ozimek_Suspension_Bridge"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Menai_Suspension_Bridge"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gwangandaegyo"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Xiling_Yangtze_River_Bridge"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Zunyi_Bridge"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Williamsburg_Bridge"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tamar_Bridge"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bridge_for_Kids"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bosphorus_Bridge"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Shantou_Bay_Bridge"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/\u00c7anakkale_1915_Bridge"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Choluteca_Bridge"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Throgs_Neck_Bridge"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Clifton_Suspension_Bridge"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kuala_Krai_Bridge"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Innoshima_Bridge"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bronx\u2013Whitestone_Bridge"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hennepin_Avenue_Bridge"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gjemnessund_Bridge"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hampden_Bridge_(Kangaroo_Valley)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Oster\u00f8y_Bridge"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Manhattan_Bridge"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Niagara_Falls_Suspension_Bridge"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Angers_Bridge"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Howrah_Bridge"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kvalsund_Bridge"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Yavuz_Sultan_Selim_Bridge"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tancarville_Bridge"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Elisabeth_Bridge_(Budapest)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bidwell_Bar_Bridge"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kattel_Bridge"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gateway_Bridge_(Illinois\u2013Iowa)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Stord_Bridge"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Royal_Gorge_Bridge__Royal_Gorge_Bridge__1"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Grand_Tower_Pipeline_Bridge"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Osman_Gazi_Bridge"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Aizhai_Bridge"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/25_de_Abril_Bridge"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Andy_Warhol_Bridge"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lawas_Bridge"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Roebling's_Delaware_Aqueduct"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Waldo\u2013Hancock_Bridge"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/San_Francisco\u2013Oakland_Bay_Bridge"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hakuch\u014d_Bridge"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ambassador_Bridge"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/St._Johns_Bridge"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Thu\u1eadn_Ph\u01b0\u1edbc_Bridge"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chesapeake_Bay_Bridge"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/A._Murray_MacKay_Bridge"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Erfjord_Bridge"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Otowi_Suspension_Bridge"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Anthony_Wayne_Bridge"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Yeongjong_Bridge"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Varodd_Bridge"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Golden_Gate_Bridge"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/N\u00e6r\u00f8ysund_Bridge"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Carquinez_Bridge"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/U.S._Grant_Bridge"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hakata\u2013\u014cshima_Bridge"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Allen_Street_Bridge_disaster"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Waco_Suspension_Bridge"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dazi_Bridge"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/H\u00f6ga_Kusten_Bridge"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fourth_Nanjing_Yangtze_Bridge"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sidu_River_Bridge"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Satok_Bridge"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Amu_Darya_Pipeline_Bridge"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Luding_Bridge"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mount_Hope_Bridge"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kutai_Kartanegara_Bridge"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pierre_Laporte_Bridge"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Semey_Bridge"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sewells_Road_Bridge"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tacoma_Narrows_Bridge_(1950)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hercilio_Luz_Bridge"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Humber_Bridge"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chain_Bridge_(Massachusetts)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Emmerich_Rhine_Bridge"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Yi_Sun-sin_Bridge"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Walter_Taylor_Bridge"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/South_Tenth_Street_Bridge"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Riegelsville_Bridge"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Matadi_Bridge"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kingston\u2013Port_Ewen_Suspension_Bridge"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jim_Stynes_Bridge"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Puente_Colgante_(Manila)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Brooklyn_Bridge"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Runyang_Yangtze_River_Bridge"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Roberto_Clemente_Bridge"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rombak_Bridge"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/\u014cnaruto_Bridge"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hirado_Bridge"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/EG_LNG_Pipeline_Suspension_Bridge"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pingsheng_Bridge"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Humen_Pearl_River_Bridge"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Great_Belt_Fixed_Link"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Beaver_Bridge_(Arkansas)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tjeldsund_Bridge"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Haicang_Bridge"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mid-Hudson_Bridge"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Seaway_International_Bridge"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vincent_Thomas_Bridge"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/\u00c4lvsborg_Bridge"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lions_Gate_Bridge"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Yangluo_Yangtze_River_Bridge"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Triborough_Bridge"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Beipan_River_Hukun_Expressway_Bridge"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kangaroo_Point_Bridge"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hardanger_Bridge"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Puente_de_Occidente"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nicholas_Chain_Bridge"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jiangyin_Yangtze_River_Bridge"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tajik\u2013Afghan_Friendship_Bridge"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tacoma_Narrows_Bridge_(1940)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Akashi_Kaiky\u014d_Bridge"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pont_d'Aquitaine"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lumberville\u2013Raven_Rock_Bridge"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Angus_L._Macdonald_Bridge"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/B\u00f8mla_Bridge"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Guy_West_Bridge"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lysefjord_Bridge"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Severn_Bridge"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Wheeling_Suspension_Bridge"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mackinac_Bridge"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sotra_Bridge"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ogdensburg\u2013Prescott_International_Bridge"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Porthill_Bridge"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Manhattan_Bridge", "surface form": "Manhattan Bridge"}], "relations": [{"URI": "http://dbpedia.org/ontology/abstract", "surface form": "bridges"}, {"URI": "http://dbpedia.org/ontology/type", "surface form": "type"}]}, {"id": "101", "answertype": "number", "aggregation": true, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "How many companies were founded by the founder of Facebook?", "keywords": "companies, founded by, founder, Facebook"}], "query": {"sparql": "SELECT (COUNT(DISTINCT ?x) AS ?c) WHERE { <http://dbpedia.org/resource/Facebook> <http://dbpedia.org/ontology/foundedBy> ?uri . ?x <http://dbpedia.org/ontology/foundedBy> ?uri }"}, "answers": [{"head": {"vars": ["c"]}, "results": {"bindings": [{"c": {"type": "literal", "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/Facebook", "surface form": "Facebook"}], "relations": [{"URI": "http://dbpedia.org/ontology/foundingYear", "surface form": "founded"}, {"URI": "http://dbpedia.org/ontology/founder", "surface form": "founder"}]}, {"id": "14", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Show me hiking trails in the Grand Canyon where there's no danger of flash floods.", "keywords": "hiking trails, Grand Canyon, no danger of flash floods"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/trailheads> <http://dbpedia.org/resource/Grand_Canyon> FILTER NOT EXISTS { ?uri <http://dbpedia.org/property/hazards> <http://dbpedia.org/resource/Flash_flood> } }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bright_Angel_Trail"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Hiking", "surface form": "hiking trails"}, {"URI": "http://dbpedia.org/resource/Grand_Canyon", "surface form": "Grand Canyon"}], "relations": [{"URI": "http://dbpedia.org/ontology/show", "surface form": "show"}, {"URI": "http://dbpedia.org/ontology/leader", "surface form": "danger"}, {"URI": "http://dbpedia.org/ontology/band", "surface form": "flash floods"}]}, {"id": "87", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Which book has the most pages?", "keywords": "book, the most pages"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Book ; dbo:numberOfPages ?n } ORDER BY DESC(?n) OFFSET 0 LIMIT 1"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Tolkien_Reader"}}]}}], "entities": [], "relations": [{"URI": "http://dbpedia.org/ontology/volume", "surface form": "book"}]}, {"id": "148", "answertype": "resource", "aggregation": false, "onlydbo": false, "hybrid": false, "question": [{"language": "en", "string": "What is the largest state in the United States?", "keywords": "largest state, United States"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dct: <http://purl.org/dc/terms/> PREFIX dbc: <http://dbpedia.org/resource/Category:> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT ?uri WHERE { ?uri dct:subject dbc:States_of_the_United_States ; rdf:type dbo:AdministrativeRegion ; dbo:areaTotal ?area } ORDER BY DESC(?area) OFFSET 0 LIMIT 1"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alaska"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/United_States", "surface form": "United States"}], "relations": [{"URI": "http://dbpedia.org/ontology/areaTotal", "surface form": "largest"}]}, {"id": "43", "answertype": "resource", "aggregation": false, "onlydbo": false, "hybrid": false, "question": [{"language": "en", "string": "Give me the websites of companies with more than 500000 employees.", "keywords": "website, company, employee, more than 500000"}], "query": {"sparql": "PREFIX foaf: <http://xmlns.com/foaf/0.1/> PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> SELECT distinct ?web WHERE { ?sub dbo:numberOfEmployees ?obj . ?sub foaf:homepage ?web FILTER( xsd:integer(?obj) > 500000 ) . }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "https://www.usps.com/"}}, {"uri": {"type": "uri", "value": "http://www.baytexenergy.com/"}}, {"uri": {"type": "uri", "value": "http://www.petrochina.com.cn/ptr/"}}, {"uri": {"type": "uri", "value": "http://www.koelnmesse.com"}}, {"uri": {"type": "uri", "value": "http://www.umw.com.my"}}, {"uri": {"type": "uri", "value": "http://www.molmed.com/"}}, {"uri": {"type": "uri", "value": "http://en.mvd.ru"}}, {"uri": {"type": "uri", "value": "http://www.sgcc.com.cn/ywlm/default.shtml"}}, {"uri": {"type": "uri", "value": "http://www.moe.gov.my/"}}, {"uri": {"type": "uri", "value": "http://volkswagenag.com"}}, {"uri": {"type": "uri", "value": "http://www.tcs.com/"}}, {"uri": {"type": "uri", "value": "http://www.umw.com.my/"}}, {"uri": {"type": "uri", "value": "http://www.oxy.com"}}, {"uri": {"type": "uri", "value": "http://www.peopleready.com"}}, {"uri": {"type": "uri", "value": "http://www.issworld.com/"}}, {"uri": {"type": "uri", "value": "http://www.foxconn.com"}}, {"uri": {"type": "uri", "value": "http://www.defense.gov"}}, {"uri": {"type": "uri", "value": "http://www.yum.com/"}}, {"uri": {"type": "uri", "value": "http://www.carverbank.com"}}, {"uri": {"type": "uri", "value": "http://www.chinapost.com.cn"}}, {"uri": {"type": "uri", "value": "http://www.molmed.com/financial-reports?language=en"}}, {"uri": {"type": "uri", "value": "http://www.marykay.com/"}}, {"uri": {"type": "uri", "value": "http://www.cpgroupglobal.com"}}, {"uri": {"type": "uri", "value": "http://www.errt.org/"}}, {"uri": {"type": "uri", "value": "http://www.mod.gov.pk/"}}, {"uri": {"type": "uri", "value": "http://www.baytexenergy.com"}}, {"uri": {"type": "uri", "value": "http://lindenlab.com/"}}, {"uri": {"type": "uri", "value": "http://www.tesco.com"}}, {"uri": {"type": "uri", "value": "http://www.tcs.com"}}, {"uri": {"type": "uri", "value": "http://www.permasteelisagroup.com/"}}, {"uri": {"type": "uri", "value": "http://rostec.ru/en/"}}, {"uri": {"type": "uri", "value": "http://en.mvd.ru/"}}, {"uri": {"type": "uri", "value": "http://www.bundespost.de/"}}, {"uri": {"type": "uri", "value": "http://www.cnpc.com.cn/en/"}}, {"uri": {"type": "uri", "value": "http://www.bahriatown.com/"}}, {"uri": {"type": "uri", "value": "http://www.tata.com/"}}, {"uri": {"type": "uri", "value": "http://www.indianrailways.gov.in"}}, {"uri": {"type": "uri", "value": "http://www.avic.com/en"}}, {"uri": {"type": "uri", "value": "http://www.nuffnang.com"}}, {"uri": {"type": "uri", "value": "http://www.telent.com/"}}, {"uri": {"type": "uri", "value": "http://www.moiegypt.gov.eg/english"}}, {"uri": {"type": "uri", "value": "http://www.indianrailways.gov.in/"}}, {"uri": {"type": "uri", "value": "http://g4s.com"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Websites_blocked_in_Pakistan", "surface form": "websites"}, {"URI": "http://dbpedia.org/resource/Companies_listed_on_the_New_York_Stock_Exchange_(J)", "surface form": "companies"}], "relations": [{"URI": "http://dbpedia.org/ontology/numberOfEmployees", "surface form": "500000 employees"}]}, {"id": "179", "answertype": "resource", "aggregation": false, "onlydbo": false, "hybrid": false, "question": [{"language": "en", "string": "What were the names of the three ships by Columbus?", "keywords": "three ships, used, Columbus"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dct: <http://purl.org/dc/terms/> PREFIX dbc: <http://dbpedia.org/resource/Category:> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT ?uri WHERE { ?uri rdf:type dbo:Ship ; dct:subject dbc:Christopher_Columbus ; dct:subject dbc:Exploration_ships }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Santa_Mar\u00eda_(ship)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pinta_(ship)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ni\u00f1a"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Columbus", "surface form": "Columbus"}], "relations": [{"URI": "http://dbpedia.org/ontology/title", "surface form": "names"}, {"URI": "http://dbpedia.org/ontology/shipBeam", "surface form": "ships"}]}]} \ No newline at end of file +{ + "dataset": { "id": "qald-9-test-multilingual" }, + "questions": [ + { + "id": "99", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "What is the time zone of Salt Lake City?", + "keywords": "Salt Lake City, time zone" + } + ], + "query": { + "sparql": "PREFIX res: <http://dbpedia.org/resource/> PREFIX dbp: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Salt_Lake_City <http://dbpedia.org/ontology/timeZone> ?uri }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mountain_Time_Zone" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Salt_Lake_City", + "surface form": "Salt Lake City" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/timeZone", + "surface form": "time zone" + } + ] + }, + { + "id": "98", + "answertype": "resource", + "aggregation": false, + "onlydbo": false, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Who killed Caesar?", + "keywords": "who , killed, Caesar" + } + ], + "query": { + "sparql": "PREFIX dct: <http://purl.org/dc/terms/> PREFIX dbc: <http://dbpedia.org/resource/Category:> SELECT DISTINCT ?uri WHERE { ?uri dct:subject dbc:Assassins_of_Julius_Caesar }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Marcus_Junius_Brutus_the_Younger" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gaius_Cassius_Parmensis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lucius_Minucius_Basilus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gaius_Cassius_Longinus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Decimus_Junius_Brutus_Albinus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Servilius_Casca" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tillius_Cimber" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lucius_Cornelius_Cinna_(suffect_consul)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Quintus_Antistius_Labeo" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Caesar_(game)", + "surface form": "Caesar" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/billed", + "surface form": "killed" + } + ] + }, + { + "id": "86", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "What is the highest mountain in Germany?", + "keywords": "highest, mountain, germany" + } + ], + "query": { + "sparql": "PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT ?uri WHERE { ?uri rdf:type onto:Mountain ; onto:elevation ?elevation ; onto:locatedInArea <http://dbpedia.org/resource/Germany> } ORDER BY DESC(?elevation) LIMIT 1" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Zugspitze" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Germany", + "surface form": "Germany" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/elevation", + "surface form": "highest mountain" + } + ] + }, + { + "id": "84", + "answertype": "resource", + "aggregation": false, + "onlydbo": false, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Which American presidents were in office during the Vietnam War?", + "keywords": "American presidents, office, Vietnam War" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX dct: <http://purl.org/dc/terms/> PREFIX dbc: <http://dbpedia.org/resource/Category:> SELECT ?uri WHERE { ?uri dct:subject dbc:Presidents_of_the_United_States . res:Vietnam_War dbo:commander ?uri }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/John_F._Kennedy" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lyndon_B._Johnson" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Richard_Nixon" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Organization_of_American_States", + "surface form": "American presidents" + }, + { + "URI": "http://dbpedia.org/resource/Abimael_Guzm\u00e1n", + "surface form": "American presidents" + }, + { + "URI": "http://dbpedia.org/resource/Vietnam_War", + "surface form": "Vietnam War" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/office", + "surface form": "office" + }, + { "URI": "http://dbpedia.org/ontology/country", "surface form": "" } + ] + }, + { + "id": "81", + "answertype": "resource", + "aggregation": false, + "onlydbo": false, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Butch Otter is the governor of which U.S. state?", + "keywords": "U.S. state, governor, Butch Otter" + } + ], + "query": { + "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/class/yago/WikicatStatesOfTheUnitedStates> ; <http://dbpedia.org/property/governor> <http://dbpedia.org/resource/Butch_Otter> }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Idaho" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Butch_Otter", + "surface form": "butch Otter" + }, + { + "URI": "http://dbpedia.org/resource/United_States", + "surface form": "US" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/governor", + "surface form": "governor" + } + ] + }, + { + "id": "73", + "answertype": "number", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "How many gold medals did Michael Phelps win at the 2008 Olympics?", + "keywords": "Michael Phelps, gold medals, 2008 Olpympics" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> SELECT Count(?sub) as ?c WHERE { ?sub dbo:goldMedalist dbr:Michael_Phelps . filter (contains (str(?sub), \"2008\") && contains (str(?sub), \"Olympics\")) }" + }, + "answers": [ + { + "head": { "vars": ["c"] }, + "results": { + "bindings": [{ "c": { "type": "literal", "value": "8" } }] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Michael_Phelps", + "surface form": "Michael Phelps" + }, + { + "URI": "http://dbpedia.org/resource/2008_Summer_Olympics", + "surface form": "2008 Olympics" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/goldMedalist", + "surface form": "gold medals" + }, + { "URI": "http://dbpedia.org/ontology/award", "surface form": "win" } + ] + }, + { + "id": "66", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Which artists were born on the same date as Rachel Stevens?", + "keywords": "artist, born same date, Rachel Stevens" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { ?uri a dbo:Artist . dbr:Rachel_Stevens dbo:birthDate ?birthdate . ?uri dbo:birthDate ?birthdate }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gizem_Saka" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cameron_Cartio" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vesna_Pisarovi\u0107" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Rachel_Stevens", + "surface form": "Rachel Stevens" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/property/artist", + "surface form": "artists" + }, + { + "URI": "http://dbpedia.org/ontology/birthPlace", + "surface form": "born" + } + ] + }, + { + "id": "64", + "answertype": "string", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "What is the profession of Frank Herbert?", + "keywords": "profession, frank, herbert" + } + ], + "query": { + "sparql": "PREFIX dbpedia2: <http://dbpedia.org/property/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?string WHERE { res:Frank_Herbert dbpedia2:occupation ?string }" + }, + "answers": [ + { + "head": { "vars": ["string"] }, + "results": { + "bindings": [ + { "string": { "type": "literal", "value": "Novelist" } } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Frank_Herbert", + "surface form": "Frank Herbert" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/profession", + "surface form": "profession" + } + ] + }, + { + "id": "6", + "answertype": "boolean", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Are Taiko some kind of Japanese musical instrument?", + "keywords": "Taiko, some kind of, Japanese musical instrument" + } + ], + "query": { + "sparql": "ASK WHERE { <http://dbpedia.org/resource/Taiko> a <http://dbpedia.org/class/yago/WikicatJapaneseMusicalInstruments> }" + }, + "answers": [{ "head": {}, "results": {}, "boolean": true }], + "entities": [ + { "URI": "http://dbpedia.org/resource/Taiko", "surface form": "Taiko" }, + { + "URI": "http://dbpedia.org/resource/Japan", + "surface form": "Japanese musical instrument" + }, + { + "URI": "http://dbpedia.org/resource/Musical_instrument", + "surface form": "Japanese musical instrument" + } + ], + "relations": [ + { "URI": "http://dbpedia.org/ontology/country", "surface form": "" } + ] + }, + { + "id": "56", + "answertype": "number", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "How many seats does the home stadium of FC Porto have?", + "keywords": "How many seats, stadium of FC Porto" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbp: <http://dbpedia.org/property/> PREFIX dbr: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> PREFIX db: <http://dbpedia.org/> SELECT ?capacity WHERE { { dbr:FC_Porto dbo:ground ?ground . ?ground dbo:capacity ?capacity } UNION { dbr:FC_Porto dbo:ground ?ground . ?ground dbp:capacity ?capacity } }" + }, + "answers": [ + { + "head": { "vars": ["c"] }, + "results": { + "bindings": [{ "c": { "type": "literal", "value": "52000" } }] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/FC_Porto", + "surface form": "stadium of FC Porto" + } + ], + "relations": [ + { "URI": "http://dbpedia.org/property/seat", "surface form": "seats" }, + { + "URI": "http://dbpedia.org/ontology/ground", + "surface form": "home stadium" + } + ] + }, + { + "id": "49", + "answertype": "resource", + "aggregation": true, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Which frequent flyer program has the most airlines?", + "keywords": "frequent flyer program, most airlines" + } + ], + "query": { + "sparql": "SELECT ?uri WHERE { ?airline <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Airline> . ?airline <http://dbpedia.org/property/frequentFlyer> ?uri. } GROUP BY ?uri ORDER BY DESC(COUNT(DISTINCT ?airline)) OFFSET 0 LIMIT 1" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Miles_&_More" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Frequent-flyer_program", + "surface form": "frequent flyer program" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/icaoAirlineCode", + "surface form": "airlines" + } + ] + }, + { + "id": "44", + "answertype": "resource", + "aggregation": false, + "onlydbo": false, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Which European countries have a constitutional monarchy?", + "keywords": "European country, constitutional monarchy" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dct: <http://purl.org/dc/terms/> PREFIX dbc: <http://dbpedia.org/resource/Category:> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?uri WHERE { ?uri dct:subject dbc:Countries_in_Europe ; dbo:governmentType dbr:Constitutional_monarchy }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sweden" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Liechtenstein" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Belgium" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Denmark" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Europe", + "surface form": "European countries" + }, + { + "URI": "http://dbpedia.org/resource/List_of_fictional_European_countries", + "surface form": "European countries" + }, + { + "URI": "http://dbpedia.org/resource/Constitutional_monarchy", + "surface form": "constitutional monarchy" + } + ], + "relations": [ + { "URI": "http://dbpedia.org/ontology/country", "surface form": "" } + ] + }, + { + "id": "42", + "answertype": "resource", + "aggregation": true, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Which countries have places with more than two caves?", + "keywords": "country, place, cave, more than two" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?cave rdf:type dbo:Cave ; dbo:location ?uri . ?uri rdf:type dbo:Country } GROUP BY ?uri HAVING ( COUNT(?cave) > 2 )" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/India" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Philippines" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Japan" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Greece" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Spain" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Turkey" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vietnam" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/United_States" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Australia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Italy" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Republic_of_Ireland" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Venezuela" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mexico" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Georgia_(country)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Austria" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Germany" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Slovenia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gibraltar" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Serbia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/France" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Abkhazia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jamaica" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/China" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/South_Africa" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Brazil" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Azerbaijan" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Countries_of_the_United_Kingdom", + "surface form": "countries" + }, + { + "URI": "http://dbpedia.org/resource/Caves_of_Aggtelek_Karst_and_Slovak_Karst", + "surface form": "caves" + } + ], + "relations": [ + { "URI": "http://dbpedia.org/ontology/place", "surface form": "places" } + ] + }, + { + "id": "4", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Which airports are located in California, USA?", + "keywords": "airport, located, California, USA" + } + ], + "query": { + "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Airport> { ?uri <http://dbpedia.org/ontology/location> <http://dbpedia.org/resource/California> } UNION { ?uri <http://dbpedia.org/ontology/city> <http://dbpedia.org/resource/California> } UNION { ?uri <http://dbpedia.org/ontology/city> ?city . ?city <http://dbpedia.org/ontology/isPartOf> <http://dbpedia.org/resource/California> } UNION { ?uri <http://dbpedia.org/ontology/operator> <http://dbpedia.org/resource/California> } }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Alpine_County_Airport" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Buchanan_Field_Airport" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Flabob_Airport" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Banning_Municipal_Airport" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Delano_Municipal_Airport" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lake_Tahoe_Airport" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chowchilla_Airport" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Inyokern_Airport" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tehachapi_Municipal_Airport" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Monterey_Regional_Airport" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Baker_Airport" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/New_Jerusalem_Airport" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Palm_Springs_International_Airport" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lost_Hills_Airport" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/General_William_J._Fox_Airfield" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ontario_International_Airport" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/French_Valley_Airport" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Butte_Valley_Airport" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Eastern_Sierra_Regional_Airport" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kingdon_Airpark" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Adamson_Landing_Field" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tijuana_International_Airport" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/W._R._Byron_Airport" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Scott_Valley_Airport" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Shelter_Cove_Airport" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Santa_Barbara_Municipal_Airport" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Holtville_Airport" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Needles_Airport" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Roy_Williams_Airport" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Corning_Municipal_Airport_(California)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Corona_Municipal_Airport" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gansner_Field" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Eagle_Field_(airport)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Fresno_Chandler_Executive_Airport" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rosamond_Skypark" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/San_Bernardino_International_Airport" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chemehuevi_Valley_Airport" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Oakdale_Airport" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Perris_Valley_Airport" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Eureka_Municipal_Airport_(California)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/San_Diego_International_Airport" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Santa_Paula_Airport" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Colusa_County_Airport" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Frazier_Lake_Airpark" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Imperial_County_Airport" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mefford_Field_Airport" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Turlock_Municipal_Airport" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sacramento_Executive_Airport" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Riverside_Municipal_Airport" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Apple_Valley_Airport_(California)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Santa_Ynez_Airport" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Susanville_Municipal_Airport" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Stockton_Metropolitan_Airport" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Poso_Airport" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cloverdale_Municipal_Airport" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mammoth_Yosemite_Airport" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Naval_Outlying_Field_San_Nicolas_Island" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/San_Gabriel_Valley_Airport" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lampson_Field" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bonny_Doon_Village_Airport" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/William_Robert_Johnston_Municipal_Airport" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Fall_River_Mills_Airport" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/O'Sullivan_Army_Heliport" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/California_City_Municipal_Airport" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Moffett_Federal_Airfield" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lompoc_Airport" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ukiah_Municipal_Airport" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Merced_Regional_Airport" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Livermore_Municipal_Airport" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Modesto_City\u2013County_Airport" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cameron_Airpark" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Alturas_Municipal_Airport" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Santa_Ana_Army_Air_Base" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chiriaco_Summit_Airport" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bryant_Field_(airport)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Weed_Airport" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Shafter_Airport" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Happy_Camp_Airport" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Van_Nuys_Airport" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Haigh_Field_Airport" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Taft_Airport" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pine_Mountain_Lake_Airport" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sacramento_Mather_Airport" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mesa_Del_Rey_Airport" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Paradise_Skypark" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Barstow-Daggett_Airport" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Meadows_Field_Airport" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Firebaugh_Airport" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Los_Angeles_International_Airport" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Weaverville_Airport" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Boonville_Airport_(California)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rogers_Field" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sutter_County_Airport" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Salinas_Municipal_Airport" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Visalia_Municipal_Airport" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Yucca_Valley_Airport" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hayfork_Airport" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chico_Municipal_Airport" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Elk_Grove_Airport" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dinsmore_Airport_(California)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sonoma_Skypark" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Corcoran_Airport" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kern_Valley_Airport" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Del_Norte_County_Airport" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Blythe_Airport" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Borges\u2013Clarksburg_Airport" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Fresno_Yosemite_International_Airport" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Angwin\u2013Parrett_Field" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Palo_Alto_Airport" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rio_Vista_Municipal_Airport" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Crystal_Airport_(California)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Woodlake_Airport" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/San_Francisco_International_Airport" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Yolo_County_Airport" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Naval_Air_Weapons_Station_China_Lake" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Oroville_Municipal_Airport" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Amador_County_Airport" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Stanford_Health_Care__Stanford_Hospital__1" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hyampom_Airport" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/John_Wayne_Airport" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Trinity_Center_Airport" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Truckee_Tahoe_Airport" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cedarville_Airport" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hancock_Field_(California)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ocean_Ridge_Airport" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/California_Valley_Airport" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Willits_Municipal_Airport" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Fallbrook_Community_Airpark" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nervino_Airport" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bakersfield_Municipal_Airport" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sacramento_International_Airport" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/El_Mirage_Field" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Willows-Glenn_County_Airport" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/New_Cuyama_Airport" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mountain_Valley_Airport" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Trona_Airport" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Southern_California_Logistics_Airport" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Yuba_County_Airport" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Borrego_Valley_Airport" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Exeter_Airport_(California)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Eckert_Field_Airport" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Agua_Caliente_Airport" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Siskiyou_County_Airport" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Placerville_Airport" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Santa_Cruz_Island_Airport" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Healdsburg_Municipal_Airport" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Redding_Municipal_Airport" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Watsonville_Municipal_Airport" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Twentynine_Palms_Airport" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Douthitt_Strip" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Desert_Center_Airport" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Montgomery_Field_Airport" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sierra_Sky_Park_Airport" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Brackett_Field" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Blue_Canyon\u2013Nyack_Airport" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Wasco_Airport" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Independence_Airport" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Elk_Hills-Buttonwillow_Airport" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Inyo_County_Airport" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/California_Pines_Airport" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Georgetown_Airport_(California)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Benton_Field" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hoopa_Airport" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Round_Valley_Airport" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sierraville_Dearwater_Airport" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Garberville_Airport" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cliff_Hatfield_Memorial_Airport" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Oceanside_Municipal_Airport" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Reedley_Municipal_Airport" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pixley_Airport" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Trinidad_State_Beach" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Catalina_Airport" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sequoia_Field_Airport" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Arcata-Eureka_Airport" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hayward_Executive_Airport" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Meadowlark_Airport" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lone_Pine_Airport" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Oxnard_Airport" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ocotillo_Airport" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hemet-Ryan_Airport" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Porterville_Municipal_Airport" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ruth_Airport" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rankin_Field" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Santa_Maria_Public_Airport" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hesperia_Airport" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Salton_Sea_Airport" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Little_River_Airport" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Oceano_County_Airport" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Concord_Naval_Weapons_Station" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tulelake_Municipal_Airport" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/San_Jos\u00e9_International_Airport" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nut_Tree_Airport" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sonny_Bono_Salton_Sea_National_Wildlife_Refuge" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Oakland_International_Airport" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/McClellan_Airfield" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/San_Carlos_Airport_(California)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Brown_Field_Municipal_Airport" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dunsmuir_Municipal-Mott_Airport" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rio_Vista_Airport" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ranchaero_Airport" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Whiteman_Airport" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Adin_Airport" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Madera_Municipal_Airport" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Grey_Butte_Field_Airport" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Palmdale_Regional_Airport" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Auburn_Municipal_Airport_(California)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Brawley_Municipal_Airport" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Calexico_International_Airport" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/United_States", + "surface form": "USA" + }, + { + "URI": "http://dbpedia.org/resource/California,_Cincinnati", + "surface form": "California," + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/targetAirport", + "surface form": "airports" + }, + { + "URI": "http://dbpedia.org/ontology/place", + "surface form": "located" + } + ] + }, + { + "id": "37", + "answertype": "string", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "What are the nicknames of San Francisco?", + "keywords": "San Francisco, nickname" + } + ], + "query": { + "sparql": "PREFIX res: <http://dbpedia.org/resource/> PREFIX dbp: <http://dbpedia.org/property/> PREFIX foaf:<http://xmlns.com/foaf/0.1/> SELECT DISTINCT ?string WHERE { res:San_Francisco foaf:nick ?string }" + }, + "answers": [ + { + "head": { "vars": ["string"] }, + "results": { + "bindings": [ + { + "string": { + "type": "literal", + "value": "The City; The City by the Bay; Fog City; San Fran;Frisco (locally disparaged); The City that Knows How (past); Baghdadby the Bay (past); The Paris of the West" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/San_Francisco", + "surface form": "San Francisco" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/mascot", + "surface form": "nicknames" + } + ] + }, + { + "id": "32", + "answertype": "string", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "What is Angela Merkel\u2019s birth name?", + "keywords": "birth name, Angela Merkel" + } + ], + "query": { + "sparql": "PREFIX res: <http://dbpedia.org/resource/> PREFIX dbp: <http://dbpedia.org/property/> SELECT DISTINCT ?string WHERE { res:Angela_Merkel dbp:birthName ?string }" + }, + "answers": [ + { + "head": { "vars": ["string"] }, + "results": { + "bindings": [ + { + "string": { + "type": "literal", + "value": "Angela Dorothea Kasner" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Name_at_birth", + "surface form": "Angela Merkel\u2019s birth name" + } + ], + "relations": [] + }, + { + "id": "31", + "answertype": "string", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Who is the mayor of Berlin?", + "keywords": "Berlin, mayor" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Berlin dbp:leader ?uri }" + }, + "answers": [ + { + "head": { "vars": ["string"] }, + "results": { + "bindings": [ + { + "string": { "type": "literal", "value": "Michael M\u00fcller" } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Berlin", + "surface form": "Berlin" + } + ], + "relations": [ + { "URI": "http://dbpedia.org/ontology/mayor", "surface form": "mayor" } + ] + }, + { + "id": "29", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Which countries in the European Union adopted the Euro?", + "keywords": "European Union, country, adopt, Euro" + } + ], + "query": { + "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Country> { ?uri <http://dbpedia.org/ontology/currency> <http://dbpedia.org/resource/Euro> } UNION { ?uri <http://dbpedia.org/property/currencyCode> \"EUR\"@en } }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Basque_Country_(greater_region)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Serbia_and_Montenegro" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kingdom_of_Wallachia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Autonomous_Province_of_Kosovo_and_Metohija" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Baltic_states" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/French_Southern_and_Antarctic_Lands" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Twente" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Greece" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Netherlands" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Spain" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/\u00celes_des_Saintes" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Saint_Barth\u00e9lemy" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Akrotiri_and_Dhekelia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/European_Union" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Republic_of_Saugeais" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Republic_of_Ireland" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/French_overseas_departments_and_territories" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Macedonia_(region)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Austria" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Luxembourg" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/San_Marino" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cyprus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ad\u00e9lie_Land" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Germany" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Luhansk_People's_Republic" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lithuania" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Andorra" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Slovenia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Saint_Pierre_and_Miquelon" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tromelin_Island" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kerguelen_Islands" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Latvia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vatican_City" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Finland" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/France" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/United_Nations_Interim_Administration_Mission_in_Kosovo" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Third_Hellenic_Republic" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kosovo" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Monaco" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Montenegro" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Estonia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Portugal" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Collectivity_of_Saint_Martin" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Belgium" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/French_Fifth_Republic" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Countries_of_the_United_Kingdom", + "surface form": "countries" + }, + { + "URI": "http://dbpedia.org/resource/Europe", + "surface form": "European Union adopted the Euro" + }, + { + "URI": "http://dbpedia.org/resource/The_Adopted", + "surface form": "European Union adopted the Euro" + } + ], + "relations": [ + { "URI": "http://dbpedia.org/ontology/country", "surface form": "" } + ] + }, + { + "id": "23", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Which software has been published by Mean Hamster Software?", + "keywords": "software, published, hamster, software" + } + ], + "query": { + "sparql": "PREFIX res: <http://dbpedia.org/resource/> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Software { ?uri prop:publisher \"Mean Hamster Software\"@en } UNION { ?uri onto:publisher res:Mean_Hamster_Software } }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Crossbow_(video_game)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Riven" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Software", + "surface form": "software" + }, + { + "URI": "http://dbpedia.org/resource/Mean_Hamster_Software", + "surface form": "Mean Hamster Software" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/publisher", + "surface form": "published" + } + ] + }, + { + "id": "68", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Which country was Bill Gates born in?", + "keywords": "country, born, Bill Gates" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> PREFIX dbr: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?country WHERE { { dbr:Bill_Gates dbo:birthPlace ?birthPlace . ?birthPlace dbo:country ?country } UNION { dbr:Bill_Gates dbo:birthPlace ?birthPlace . ?birthPlace dbo:isPartOf ?place . ?place dbo:country ?country } }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/United_States" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Bill_Gates", + "surface form": "Bill Gates" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/country", + "surface form": "country" + }, + { + "URI": "http://dbpedia.org/ontology/birthPlace", + "surface form": "born" + } + ] + }, + { + "id": "22", + "answertype": "number", + "aggregation": true, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "How many grand-children did Jacques Cousteau have?", + "keywords": "how many, grand-children, Jacques Cousteau" + } + ], + "query": { + "sparql": "SELECT COUNT(DISTINCT ?y AS ?y) WHERE { <http://dbpedia.org/resource/Jacques_Cousteau> <http://dbpedia.org/ontology/child> ?x . ?x <http://dbpedia.org/ontology/child> ?y . }" + }, + "answers": [ + { + "head": { "vars": ["c"] }, + "results": { + "bindings": [{ "c": { "type": "literal", "value": "4" } }] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Jacques_Cousteau", + "surface form": "Jacques Cousteau" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/child", + "surface form": "grand-children" + } + ] + }, + { + "id": "214", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Give me all professional skateboarders from Sweden.", + "keywords": "professional, skateboarder, Sweden" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbp: <http://dbpedia.org/property/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { ?uri dbo:occupation dbr:Skateboarder { ?uri dbo:birthPlace dbr:Sweden } UNION { ?uri dbo:birthPlace ?place . ?place dbo:country dbr:Sweden } }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ali_Boulala" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tony_Magnusson" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Sweden", + "surface form": "Sweden" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/occupation", + "surface form": "professional skateboarders" + } + ] + }, + { + "id": "210", + "answertype": "resource", + "aggregation": false, + "onlydbo": false, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Which monarchs of the United Kingdom were married to a German?", + "keywords": "United Kingdom, monarch, married, German" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX yago: <http://dbpedia.org/class/yago/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type yago:WikicatMonarchsOfTheUnitedKingdom ; dbo:spouse ?spouse . ?spouse dbo:birthPlace res:Germany }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/William_IV_of_the_United_Kingdom" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/United_Kingdom", + "surface form": "United Kingdom" + }, + { + "URI": "http://dbpedia.org/resource/Germany", + "surface form": "German" + }, + { + "URI": "http://dbpedia.org/resource/German", + "surface form": "German" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/leader", + "surface form": "monarchs" + }, + { + "URI": "http://dbpedia.org/ontology/spouse", + "surface form": "married" + }, + { "URI": "http://dbpedia.org/ontology/country", "surface form": "" }, + { "URI": "http://dbpedia.org/ontology/country", "surface form": "" } + ] + }, + { + "id": "199", + "answertype": "resource", + "aggregation": false, + "onlydbo": false, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Give me all Argentine films.", + "keywords": "film, Argentina" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX yago: <http://dbpedia.org/class/yago/> PREFIX res: <http://dbpedia.org/resource/> PREFIX dbp: <http://dbpedia.org/property/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { { ?uri rdf:type yago:ArgentineFilms } UNION { ?uri rdf:type dbo:Film { ?uri dbo:country res:Argentina } UNION { ?uri dbp:country \"Argentina\"@en } } }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Warrior_and_the_Sorceress" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/El_Mar_de_Lucas" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Accused_(1960_film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Two_Waters" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_German_Friend" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/La_Ci\u00e9naga_(film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Los_vecinos_en_guerra" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Esa_Maldita_Costilla" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/La_Muchacha_del_arrabal" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Whisky_Romeo_Zulu" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/As\u00ed_O_De_Otra_Manera" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Love_in_Flight" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Alma_M\u00eda" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pelud\u00f3polis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chile_672" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/El_Amor_\u2013_primera_parte" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Monday's_Child_(film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Los_caballeros_de_la_cama_redonda" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Testosterone_(film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Casi_un_sue\u00f1o" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Asunto_terminado" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Las_Aventuras_del_Capit\u00e1n_Piluso_en_el_Castillo_del_Terror" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mu\u00f1equitas_porte\u00f1as" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cuidado_Con_Las_Mujeres" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Coraz\u00f3n_de_criolla" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Amalio_Reyes,_un_hombre" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Los_Cuentos_de_Borges:_El_Sur" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/A_Cuban_in_Spain" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Amanda_O" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/El_Camino_de_San_Diego" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Snuff_(film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Alias_Gardelito" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Alambrado" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Hand_in_the_Trap" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Un_Oso_Rojo" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Las_Apariencias_enga\u00f1an" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Adi\u00f3s,_Roberto" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Arriba_Juventud" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/With_the_Music_in_my_Soul" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/A_Chrysanthemum_Bursts_in_Cincoesquinas" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_ABC_of_Love" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ana_and_the_Others" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Loves_of_Kafka" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Yacht_Isabel_Arrived_This_Afternoon" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Brigada_en_acci\u00f3n" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/No_sos_vos,_soy_yo" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/La_sombra_de_Heidegger" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Curious_Dr._Humpp" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Aconcagua_(film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/All\u00e1_en_el_Norte" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Adam_and_the_Serpent" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Tango_Lesson" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Amor_prohibido_(film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/An_American_in_Buenos_Aires" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Deathstalker_II" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Academia_El_Tango_Argentino" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chinese_Take-Away" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Off_to_Havana_I_Go" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ven_mi_coraz\u00f3n_te_llama" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/La_Quintrala_(film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ashes_to_the_Wind" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cocaine_Wars" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Leonardo_Mayer" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Social_Genocide" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Buenos_Aires,_Ciudad_de_Ensue\u00f1o" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Minder" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Bohemian_Soul" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Common_Places" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Waiting_for_the_Hearse" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Circus_Cavalcade" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Animal_(2001_film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Angel_Face_(1998_film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Crossroads_(1952_film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Campo_arado" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Only_Human_(2004_film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Deathstalker_(film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/La_Raulito" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Aquello_que_Amamos" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Soul_of_the_Children" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/White_Elephant_(2012_film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Love_Is_a_Fat_Woman" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Argentina_revolucionaria" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Perdido_por_perdido_(film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Man_Who_Owed_a_Death" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Captura_recomendada" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Yira,_yira" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Patagonia_(film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Accident_703" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/A_King_and_His_Movie" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Help_Me_to_Live" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Avivato" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/La_vida_por_Per\u00f3n" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cacer\u00eda" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Amor_libre_(film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bailoretto,_la_aventura_de_un_rebelde" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Maradona,_the_Hand_of_God" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/El_caso_Mat\u00edas" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Top_Cat:_The_Movie" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Todas_las_azafatas_van_al_cielo" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Immigrants_(1948_film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Crane_World" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Un_Argentino_en_New_York" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Snuff_102" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lost_Embrace" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/El_Asalto" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Family_Law_(film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/3_Am\u00e9ricas" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/El_Andador" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rodencia_y_el_Diente_de_la_Princesa" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cerro_Guanaco" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Assassination_Tango" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/La_v\u00eda_de_oro" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mala_\u00c9poca" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Left_for_Dead_(2007_Western_film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Appeared" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tire_di\u00e9" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Parapalos" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Joven,_viuda_y_estanciera_(1970_film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Algo_habr\u00e1n_hecho_por_la_historia_argentina" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Babilonia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Johny_Tolengo,_el_majestuoso" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Andrea_(film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Harassed_(1964_film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Monobloc_(film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/A_Buddha" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Age_of_Love_(1954_film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Las_Aventuras_de_Pik\u00edn" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Boquitas_pintadas" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Delirium_(2014_film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Adi\u00f3s_pampa_m\u00eda" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Adi\u00f3s_problemas" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/El_Amarillo" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Grandfather_(1954_film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Encadenado" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/G\u00e9minis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Apasionados" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Las_Aventuras_de_Tremendo" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hawaii_(2013_film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Las_Acacias_(film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Supporter" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kill_and_Be_Killed" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Abuso_de_confianza" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Orquesta_Tipica" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Plaza_de_Almas" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Native_Son_(1951_film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/God_Reward_You" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Una_Atrevida_aventurita" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Roma_(2004_film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Secret_Agents_Against_Green_Glove" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Eva_Doesn't_Sleep" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/La_Amada_Inm\u00f3vil" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/El_Amor_y_el_Espanto" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Whisky_(film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Palo_y_hueso" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/XXY_(film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Closed_Door" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Solamente_vos" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bajo_el_signo_de_la_patria" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Son_of_the_Bride" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Anni_Ribelli" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Centauros_del_pasado" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Adi\u00f3s_muchachos" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Buenas_noches,_Buenos_Aires" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Los_amores_de_Laurita" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/La_Fuga" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/A_Place_in_the_World_(film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Good_Life_Delivery" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/La_barra_de_Taponazo" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Girl_from_Florida_Street" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Air_Force,_Incorporated" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rapado" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Amor_a_primera_vista" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Agua_(film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/El_Satario" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Plum\u00edferos" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chiquititas:_Rinc\u00f3n_de_luz" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nobleza_gaucha_(1915_film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Valentina_(2008_film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Soul_of_a_Tango" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Las_Campanas_de_Teresa" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tetro" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Return_to_Bolivia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/El_perro" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Amor_\u00faltimo_modelo" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Departamento_compartido" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Marihuana_Story" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/El_Profesor_Hippie" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Foolish_Heart_(1998_film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Quispe_Girls" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Searching_for_Monica" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cama_Adentro" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Las_furias" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Noites_Cariocas" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Francis:_Pray_for_Me" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/La_Gaucha" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chiche_bomb\u00f3n" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/El_Bonaerense" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ver\u00f3nico_Cruz_(film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cantani\u00f1o_cuenta_un_cuento" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cubitos_de_hielo" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Familia_rodante" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Waiting_for_the_Messiah" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bodas_de_cristal" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Una_noche_con_Sabrina_Love" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Magic_Bay" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Perd\u00f3n,_viejita" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/A_Sangre_Fr\u00eda" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Diez_canciones_de_Gardel" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Last_Train_(2002_film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Humo_de_Marihuana" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Buenos_Aires_a_la_vista" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Eclipse_of_the_Sun_(film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Path_to_Peace" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Where_the_Wind_Dies" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Canario_rojo" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Culpable_(film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Amor_y_un_poco_m\u00e1s" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Blonds" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rosaura_at_10_O'Clock" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/El_Amor_infiel" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Balada_para_un_mochilero" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Al_Comp\u00e1s_de_tu_Mentira" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/La_Aventura_explosiva" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Son_de_Fierro" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/La_Procesi\u00f3n" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/La_Antena" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Eversmile,_New_Jersey" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/As\u00ed_No_Hay_Cama_Que_Aguante" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tocar_el_cielo" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/High_School_Musical:_El_Desaf\u00edo" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Blessed_by_Fire" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Anteojito_y_Antifaz,_mil_intentos_y_un_invento" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Una_Jaula_no_tiene_secretos" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/B\u00f3lidos_de_acero" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Arrabalera" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Motorcycle_Diaries_(film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/With_Life_and_Soul" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/As\u00ed_es_Buenos_Aires" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Asesinato_en_el_Senado_de_la_Naci\u00f3n" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/La_Fidelidad" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gaturro_(film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Burnt_Money" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Amigos_para_La_Aventura" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Argentina", + "surface form": "Argentine films" + }, + { + "URI": "http://dbpedia.org/resource/Lists_of_Argentine_films", + "surface form": "Argentine films" + } + ], + "relations": [ + { "URI": "http://dbpedia.org/ontology/country", "surface form": "" } + ] + }, + { + "id": "203", + "answertype": "string", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "How did Michael Jackson die?", + "keywords": "how, Michael Jackson, die" + } + ], + "query": { + "sparql": "SELECT DISTINCT ?s WHERE { <http://dbpedia.org/resource/Michael_Jackson> <http://dbpedia.org/property/deathCause> ?s }" + }, + "answers": [ + { + "head": { "vars": ["string"] }, + "results": { + "bindings": [ + { "string": { "type": "literal", "value": "Homicide" } } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Michael_Jackson", + "surface form": "Michael Jackson" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/deathDate", + "surface form": "die" + } + ] + }, + { + "id": "197", + "answertype": "resource", + "aggregation": false, + "onlydbo": false, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Which U.S. state has been admitted latest?", + "keywords": "U.S. state, admit, last" + } + ], + "query": { + "sparql": "PREFIX dbc: <http://dbpedia.org/resource/Category:> PREFIX dct: <http://purl.org/dc/terms/> SELECT DISTINCT ?uri WHERE { ?uri dct:subject dbc:States_of_the_United_States ; <http://dbpedia.org/property/admittancedate> ?x } ORDER BY DESC(?x) LIMIT 1" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hawaii" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/United_States", + "surface form": "US" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/property/known", + "surface form": "admitted" + } + ] + }, + { + "id": "196", + "answertype": "string", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Which classes does the Millepede belong to?", + "keywords": "millepede, classes, belong" + } + ], + "query": { + "sparql": "PREFIX res: <http://dbpedia.org/resource/> PREFIX dbp: <http://dbpedia.org/property/> SELECT DISTINCT ?String WHERE { res:Millipede dbp:taxon ?String }" + }, + "answers": [ + { + "head": { "vars": ["string"] }, + "results": { + "bindings": [ + { "string": { "type": "literal", "value": "Diplopoda" } } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Millipede", + "surface form": "Millepede" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/classes", + "surface form": "classes" + }, + { "URI": "http://dbpedia.org/ontology/date", "surface form": "belong" } + ] + }, + { + "id": "188", + "answertype": "resource", + "aggregation": false, + "onlydbo": false, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Give me the homepage of Forbes.", + "keywords": "Forbes, homepage" + } + ], + "query": { + "sparql": "PREFIX res: <http://dbpedia.org/resource/> PREFIX foaf: <http://xmlns.com/foaf/0.1/> SELECT DISTINCT ?string WHERE { res:Forbes foaf:homepage ?string }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { "uri": { "type": "uri", "value": "http://forbes.com" } } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Forbes", + "surface form": "Forbes" + } + ], + "relations": [] + }, + { + "id": "187", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Who is the husband of Amanda Palmer?", + "keywords": "Amanda Palmer, husband" + } + ], + "query": { + "sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/spouse> <http://dbpedia.org/resource/Amanda_Palmer> }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Neil_Gaiman" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Amanda_Palmer", + "surface form": "Amanda Palmer" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/spouse", + "surface form": "husband" + } + ] + }, + { + "id": "176", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Who painted The Storm on the Sea of Galilee?", + "keywords": "The Storm on the Sea of Galilee, paint" + } + ], + "query": { + "sparql": "PREFIX res: <http://dbpedia.org/resource/> PREFIX dbp: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:The_Storm_on_the_Sea_of_Galilee dbo:author ?uri }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rembrandt_van_Rijn" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/The_Storm_on_the_Sea_of_Galilee", + "surface form": "The Storm on the Sea of Galilee" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/property/artist", + "surface form": "painted" + } + ] + }, + { + "id": "62", + "answertype": "string", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "What is the highest place of Karakoram?", + "keywords": "Karakoram, highest place" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Karakoram dbp:highest ?uri }" + }, + "answers": [ + { + "head": { "vars": ["string"] }, + "results": { + "bindings": [{ "string": { "type": "literal", "value": "K2" } }] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Karakoram", + "surface form": "Karakoram" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/elevation", + "surface form": "highest place" + } + ] + }, + { + "id": "173", + "answertype": "date", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "When did Finland join the EU?", + "keywords": "Finland, European Union, join" + } + ], + "query": { + "sparql": "PREFIX res: <http://dbpedia.org/resource/> PREFIX dbp: <http://dbpedia.org/property/> SELECT DISTINCT ?date WHERE { res:Finland dbp:accessioneudate ?date }" + }, + "answers": [ + { + "head": { "vars": ["date"] }, + "results": { + "bindings": [ + { "date": { "type": "literal", "value": "1995-01-01" } } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Basque_language", + "surface form": "EU" + }, + { + "URI": "http://dbpedia.org/resource/Join", + "surface form": "Finland join the" + } + ], + "relations": [ + { "URI": "http://dbpedia.org/property/date", "surface form": "when" } + ] + }, + { + "id": "168", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Which actors play in Big Bang Theory?", + "keywords": "actors, Big Bang Theory" + } + ], + "query": { + "sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/The_Big_Bang_Theory> <http://dbpedia.org/ontology/starring> ?uri }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Johnny_Galecki" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kunal_Nayyar" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kevin_Sussman" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mayim_Bialik" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Simon_Helberg" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Melissa_Rauch" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Laura_Spencer_(actress)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kaley_Cuoco" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jim_Parsons" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sara_Gilbert" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/The_Big_Bang_Theory", + "surface form": "Big Bang Theory" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/background", + "surface form": "actors" + }, + { + "URI": "http://dbpedia.org/ontology/starring", + "surface form": "play" + } + ] + }, + { + "id": "166", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Which computer scientist won an oscar?", + "keywords": "computer scientist, win, oscar" + } + ], + "query": { + "sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/field> <http://dbpedia.org/resource/Computer_science> ; <http://dbpedia.org/ontology/award> <http://dbpedia.org/resource/Academy_Award> }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Edwin_Catmull" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Computer_scientist", + "surface form": "computer scientist" + }, + { "URI": "http://dbpedia.org/resource/Oscar", "surface form": "oscar" } + ], + "relations": [ + { "URI": "http://dbpedia.org/ontology/award", "surface form": "won" } + ] + }, + { + "id": "160", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Who wrote Harry Potter?", + "keywords": "who , wrote , Harry Potter" + } + ], + "query": { + "sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Harry_Potter> <http://dbpedia.org/property/author> ?uri }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/J._K._Rowling" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Harry_Potter", + "surface form": "Harry Potter" + } + ], + "relations": [ + { "URI": "http://dbpedia.org/property/author", "surface form": "wrote" } + ] + }, + { + "id": "158", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Give me all writers that won the Nobel Prize in literature.", + "keywords": "writer, win, Nobel Prize in literature" + } + ], + "query": { + "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Writer> ; <http://dbpedia.org/ontology/award> <http://dbpedia.org/resource/Nobel_Prize_in_Literature> }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hermann_Hesse" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Aleksandr_Solzhenitsyn" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ernest_Hemingway" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Czes\u0142aw_Mi\u0142osz" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Joseph_Brodsky" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jos\u00e9_Saramago" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Wis\u0142awa_Szymborska" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/John_Steinbeck" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gerhart_Hauptmann" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Eugene_O'Neill" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Thomas_Mann" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Toni_Morrison" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/T._S._Eliot" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Svetlana_Alexievich" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/William_Golding" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pablo_Neruda" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Alice_Munro" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Patrick_Modiano" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Juan_Ram\u00f3n_Jim\u00e9nez" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Harold_Pinter" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Seamus_Heaney" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Nobel_Prize", + "surface form": "Nobel Prize" + }, + { + "URI": "http://dbpedia.org/resource/Literature", + "surface form": "literature" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/writer", + "surface form": "writers" + }, + { "URI": "http://dbpedia.org/ontology/award", "surface form": "won" } + ] + }, + { + "id": "157", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Give me English actors starring in Lovesick.", + "keywords": "English actors, starring, Lovesick" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Lovesick_(1983_film)> dbo:starring ?uri . ?uri dbo:birthPlace ?city . ?city dbo:country <http://dbpedia.org/resource/United_Kingdom> }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dudley_Moore" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Alec_Guinness" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/The_Actors", + "surface form": "English actors" + }, + { + "URI": "http://dbpedia.org/resource/Lovesick_(Priscilla_Renea_song)", + "surface form": "Lovesick" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/starring", + "surface form": "starring" + } + ] + }, + { + "id": "155", + "answertype": "string", + "aggregation": false, + "onlydbo": false, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "What is the nick name of Baghdad?", + "keywords": "Baghdad , nickname" + } + ], + "query": { + "sparql": "PREFIX dbr: <http://dbpedia.org/resource/> PREFIX foaf: <http://xmlns.com/foaf/0.1/> SELECT ?nm WHERE { dbr:Baghdad foaf:nick ?nm }" + }, + "answers": [ + { + "head": { "vars": ["string"] }, + "results": { + "bindings": [ + { + "string": { "type": "literal", "value": "'The City of Peace'" } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Baghdad", + "surface form": "Baghdad" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/address", + "surface form": "nick name" + } + ] + }, + { + "id": "150", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "In which city was the president of Montenegro born?", + "keywords": "city, born, president of Montenegro" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/title> dbr:President_of_Montenegro ; dbo:birthPlace ?uri . ?uri dbo:type dbr:Capital_city }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Belgrade" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Montenegro", + "surface form": "Montenegro" + } + ], + "relations": [ + { "URI": "http://dbpedia.org/ontology/city", "surface form": "city" }, + { + "URI": "http://dbpedia.org/ontology/president", + "surface form": "president" + }, + { + "URI": "http://dbpedia.org/ontology/birthPlace", + "surface form": "born" + } + ] + }, + { + "id": "149", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Which U.S. state has the highest population density?", + "keywords": "state, USA, population density, highest" + } + ], + "query": { + "sparql": "SELECT ?uri WHERE { ?uri <http://dbpedia.org/ontology/country> <http://dbpedia.org/resource/United_States> . ?uri <http://dbpedia.org/ontology/capital> ?capital . ?uri <http://dbpedia.org/property/densityrank> ?density . OPTIONAL {?uri <http://www.w3.org/2000/01/rdf-schema#label> ?string. FILTER (lang(?string) = 'en') } } ORDER BY ASC(?density) LIMIT 1" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/New_Jersey" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/United_States", + "surface form": "US" + }, + { + "URI": "http://dbpedia.org/resource/Population_density", + "surface form": "highest population density" + } + ], + "relations": [] + }, + { + "id": "25", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "What is the longest river in China?", + "keywords": "longest river, China" + } + ], + "query": { + "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/River> ; <http://dbpedia.org/ontology/country> <http://dbpedia.org/resource/China> ; <http://dbpedia.org/property/length> ?l } ORDER BY DESC(?l) OFFSET 0 LIMIT 1" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Yangtze" + } + } + ] + } + } + ], + "entities": [ + { "URI": "http://dbpedia.org/resource/China", "surface form": "China" } + ], + "relations": [ + { "URI": "http://dbpedia.org/ontology/river", "surface form": "river" } + ] + }, + { + "id": "143", + "answertype": "string", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "What is the area code of Berlin?", + "keywords": "Berlin, area code" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?string WHERE { res:Berlin dbo:areaCode ?string }" + }, + "answers": [ + { + "head": { "vars": ["string"] }, + "results": { + "bindings": [{ "string": { "type": "literal", "value": "030" } }] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Berlin", + "surface form": "Berlin" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/areaCode", + "surface form": "area code" + } + ] + }, + { + "id": "140", + "answertype": "number", + "aggregation": true, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "How many scientists graduated from an Ivy League university?", + "keywords": "scientists, graduated, Ivy League university" + } + ], + "query": { + "sparql": "SELECT (COUNT(DISTINCT ?uri) AS ?c) WHERE { ?uri a <http://dbpedia.org/ontology/Scientist> ; <http://dbpedia.org/ontology/almaMater> ?university . ?university <http://dbpedia.org/ontology/affiliation> <http://dbpedia.org/resource/Ivy_League> ; a <http://dbpedia.org/ontology/University> }" + }, + "answers": [ + { + "head": { "vars": ["c"] }, + "results": { + "bindings": [{ "c": { "type": "literal", "value": "403" } }] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Scientists_for_Global_Responsibility", + "surface form": "scientists" + }, + { + "URI": "http://dbpedia.org/resource/Ivy_League", + "surface form": "Ivy League university" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/effectiveRadiatedPower", + "surface form": "graduated" + } + ] + }, + { + "id": "139", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Which professional surfers were born in Australia?", + "keywords": "professional surfer, born, Australia" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { { ?uri dbo:occupation res:Surfer ; dbo:birthPlace res:Australia } UNION { ?uri dbo:occupation res:Surfer ; dbo:birthPlace ?place . ?place dbo:country res:Australia } }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ian_Cairns" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Koby_Abberton" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Australia", + "surface form": "Australia" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/specialist", + "surface form": "professional surfers" + }, + { + "URI": "http://dbpedia.org/ontology/birthPlace", + "surface form": "born" + } + ] + }, + { + "id": "137", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Give me all Dutch parties.", + "keywords": "Dutch, party" + } + ], + "query": { + "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/PoliticalParty> ; <http://dbpedia.org/ontology/country> <http://dbpedia.org/resource/Netherlands> }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Reformed_Political_Party" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/GroenLinks" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Trots_op_Nederland" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Free_Union_(anarchist_organisation)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Anti-Revolutionary_Party" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/People's_Party_for_Freedom_and_Democracy" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Frisian_National_Party" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Article_50_(political_party)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Christian_Democratic_Appeal" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Democratic_Political_Turning_Point" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Onafhankelijke_Burger_Partij" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Cura\u00e7ao", + "surface form": "Dutch parties" + }, + { + "URI": "http://dbpedia.org/resource/Dutch", + "surface form": "Dutch parties" + } + ], + "relations": [ + { "URI": "http://dbpedia.org/ontology/country", "surface form": "" }, + { "URI": "http://dbpedia.org/ontology/country", "surface form": "" } + ] + }, + { + "id": "136", + "answertype": "number", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "How many moons does Mars have?", + "keywords": "how many, moons, Mars" + } + ], + "query": { + "sparql": "SELECT DISTINCT ?n WHERE { <http://dbpedia.org/resource/Mars> <http://dbpedia.org/property/satellites> ?n }" + }, + "answers": [ + { + "head": { "vars": ["c"] }, + "results": { + "bindings": [{ "c": { "type": "literal", "value": "2" } }] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/7805_Moons", + "surface form": "moons" + }, + { "URI": "http://dbpedia.org/resource/Mars", "surface form": "Mars" } + ], + "relations": [] + }, + { + "id": "134", + "answertype": "string", + "aggregation": false, + "onlydbo": false, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "What is Batman's real name?", + "keywords": "real name, Batman" + } + ], + "query": { + "sparql": "SELECT DISTINCT ?label WHERE { <http://dbpedia.org/resource/Batman> <http://xmlns.com/foaf/0.1/name> ?label FILTER ( str(?label) != \"Batman\" ) }" + }, + "answers": [ + { + "head": { "vars": ["string"] }, + "results": { + "bindings": [ + { "string": { "type": "literal", "value": "Bruce Wayne" } } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Batman", + "surface form": "Batman" + }, + { + "URI": "http://dbpedia.org/resource/Real-name_system", + "surface form": " real name" + } + ], + "relations": [] + }, + { + "id": "132", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "What is Elon Musk famous for?", + "keywords": "famous for, Elon Musk" + } + ], + "query": { + "sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Elon_Musk> <http://dbpedia.org/ontology/knownFor> ?uri }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tesla_Motors" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hyperloop" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/SolarCity" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/PayPal" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/OpenAI" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/SpaceX" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Elon_Musk", + "surface form": "Elon Musk famous" + } + ], + "relations": [] + }, + { + "id": "128", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Who is the author of WikiLeaks?", + "keywords": "author, wikileaks" + } + ], + "query": { + "sparql": "PREFIX res: <http://dbpedia.org/resource/> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT ?uri WHERE { res:WikiLeaks onto:author ?uri }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Julian_Assange" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/WikiLeaks", + "surface form": "WikiLeaks" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/author", + "surface form": "author" + } + ] + }, + { + "id": "126", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Sean Parnell was the governor of which U.S. state?", + "keywords": "U.S. state, governor, Sean Parnell" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Sean_Parnell dbo:region ?uri }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Alaska" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Sean_Parnell", + "surface form": "Sean parnell" + }, + { + "URI": "http://dbpedia.org/resource/United_States", + "surface form": "US" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/governor", + "surface form": "governor" + } + ] + }, + { + "id": "125", + "answertype": "number", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "How many years was the Ford Model T manufactured?", + "keywords": "years, Ford Model T, manufactured" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX xsd: <http://www.w3.org/2001/XMLSchema#> PREFIX res: <http://dbpedia.org/resource/> SELECT ?years WHERE { res:Ford_Model_T dbo:productionEndYear ?end ; dbo:productionStartYear ?start. BIND ( ( year(xsd:date(?end)) - year(xsd:date(?start)) ) AS ?years) }" + }, + "answers": [ + { + "head": { "vars": ["c"] }, + "results": { + "bindings": [{ "c": { "type": "literal", "value": "19" } }] + } + } + ], + "entities": [ + { "URI": "http://dbpedia.org/resource/T", "surface form": "T" }, + { + "URI": "http://dbpedia.org/resource/Ford_Model_48", + "surface form": "Ford Model" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/manufacturer", + "surface form": "manufactured" + } + ] + }, + { + "id": "124", + "answertype": "date", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "When was Carlo Giuliani shot?", + "keywords": "date, Carlo Giuliani, shot" + } + ], + "query": { + "sparql": "PREFIX res: <http://dbpedia.org/resource/> PREFIX dbp: <http://dbpedia.org/property/> SELECT DISTINCT xsd:date(?date) WHERE { res:Death_of_Carlo_Giuliani dbo:deathDate ?date }" + }, + "answers": [ + { + "head": { "vars": ["date"] }, + "results": { + "bindings": [ + { "date": { "type": "literal", "value": "2001-07-20" } } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Carlo_Giuliani,_Boy", + "surface form": "Carlo Giuliani" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/discharge", + "surface form": "shot" + } + ] + }, + { + "id": "123", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Give me all animals that are extinct.", + "keywords": "animal, extinct" + } + ], + "query": { + "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Animal> ; <http://dbpedia.org/ontology/conservationStatus> \"EX\" }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/R\u00e9union_swamphen" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rocky_Mountain_locust" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/California_grizzly_bear" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Amastra_crassilabrum" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Small_Mauritian_flying_fox" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ascension_night_heron" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Angled_riffleshell" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bermuda_hawk" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mautodontha_subtilis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mount_Alifana_partula" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Reverse_pebblesnail" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Striate_slitshell" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Black_mamo" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Partula_aurantia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Perritos_de_sandia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Scioto_pigtoe" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/San_Mart\u00edn_Island_woodrat" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Haitian_nesophontes" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Partula_auriculata" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pygmy_elimia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Corded_purg" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kawekaweau" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Fine-rayed_pearly_mussel" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Argocoffeopsis_lemblinii" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jamaican_red_macaw" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Elimia_gibbera" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ribbed_slitshell" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Insular_cave_rat" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dryophthorus_distinguendus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Turgid_riffle_shell" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Marquesas_cuckoo-dove" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Carelia_lirata" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Partula_crassilabris" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mount_Glorious_day_frog" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Snake_River_sucker" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lyropupa_perlonga" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Carelia_glossema" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Discus_retextus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Atlas_bear" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rallicola_extinctus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rhyncogonus_bryani" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Barbados_raccoon" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pseudophilautus_temporalis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mautodontha_unilamellata" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pseudophilautus_rugatus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Partula_garretti" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gravicalymene" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/North_Island_giant_moa" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hawkins's_rail" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gull_Island_vole" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sitalcicus_gardineri" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Procambarus_angustatus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Apteribis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gravenche" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pupilla_obliquicosta" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tornelasmias_capricorni" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Helenoconcha_polyodon" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Domed_Rodrigues_giant_tortoise" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Partula_protea" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Western_Cuban_nesophontes" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chondrostoma_scodrense" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Megalagrion_jugorum" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Partula_umbilicata" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chilonopsis_nonpareil" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mount_Matafao_different_snail" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Libythea_cinyras" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ptychochromis_onilahy" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chilonopsis_blofeldi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Phleophagan_chestnut_moth" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rodrigues_starling" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pallid_beach_mouse" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Partula_bilineata" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Partula_rustica" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bulldog_rat" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rodrigues_blue_pigeon" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Partulina_crassa" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tacoma_pocket_gopher" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Scissor-billed_koa_finch" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Waitaha_penguin" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Great_ground_dove" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Henderson_imperial_pigeon" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Macroscincus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Fusiform_elimia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/New_Caledonian_gallinule" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Perdicella_zebrina" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Carelia_hyattiana" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hawai\u02bbi_\u02bb\u014d\u02bb\u014d" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bermuda_saw-whet_owl" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Syncaris_pasadenae" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/R\u00e9union_parakeet" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Houting" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hirasea_planulata" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Achatinella_papyracea" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Achatinella_casta" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Maupiti_monarch" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Partula_dolorosa" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Coosa_rocksnail" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pachystyla_waynepagei" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Harmogenanina_linophora" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Midway_noctuid_moth" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Agrotis_panoplias" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Leiostyla_gibba" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sampson's_naiad" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/North_Island_takah\u0113" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Saint_Helena_cuckoo" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Elimia_macglameriana" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/South_Island_snipe" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tobias'_caddisfly" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chilonopsis_exulatus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Telestes_ukliva" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lamellidea_monodonta" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/American_chestnut_moth" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dupontia_proletaria" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Heliaster_solaris" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ctenoglypta_newtoni" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mariana_mallard" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tongatapu_rail" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Parmacella_gervaisii" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Fish_Lake_physa" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gibbus_lyonetianus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dominican_green-and-yellow_macaw" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pseudophilautus_zal" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Minute_noctuid_moth" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tahuata_rail" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bramble_Cay_melomys" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Achatinella_caesia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Anthony's_woodrat" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bushwren" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Helenoconcha_sexdentata" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Acorn_pearly_mussel" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Partula_lutea" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Olson's_petrel" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Libera_subcavernula" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Recovery_pearly_mussel" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Slender-billed_grackle" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Unio_cariei" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mascarene_teal" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rodrigues_pigeon" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/\u0130znik_shemaya" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chilonopsis_melanoides" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bonin_wood_pigeon" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gyrotoma" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sinployea_youngi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Antillean_cave_rat" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Evarra_tlahuacensis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Choiseul_pigeon" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ascension_crake" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pseudophilautus_malcolmsmithi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sri_Lanka_lion" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Wake_Island_rail" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sinployea_proxima" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Spiny-knee_leaf_frog" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Eastern_hare-wallaby" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Torre's_cave_rat" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tasman_starling" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Keraea" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Auckland_merganser" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/R\u00e9union_kestrel" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Achatinella_elegans" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Partula_planilabrum" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Colparion_madgei" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Samoana_inflata" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mukojima_white-eye" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rhyacophila_amabilis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Falkland_Islands_wolf" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Placostylus_cuniculinsulae" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Stumptooth_minnow" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Megalobulimus_cardosoi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tahiti_crake" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kosrae_starling" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dysoneura_zherikhini" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Moorea_sandpiper" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Marianne_white-eye" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pacifastacus_nigrescens" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Perdicella_maniensis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gould's_mouse" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cyprus_dipper" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tonga_ground_skink" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Interrupted_rocksnail" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pseudophilautus_dimbullae" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Emperoptera_mirabilis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jamaican_ibis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/O\u02bbahu_\u02bbakepa" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tasmanian_emu" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nullarbor_dwarf_bettong" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Partula_producta" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Eodesmatodon" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Atalaye_nesophontes" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Amastra_elongata" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Striped_rocksnail" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chatham_fernbird" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Angrobia_dulvertonensis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Roque_Chico_de_Salmor_giant_lizard" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Saint_Helena_petrel" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pupa_elimia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Malagasy_lapwing" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Banff_longnose_dace" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Formosan_clouded_leopard" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gulella_mayottensis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Saint_Helena_crake" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Achatinella_spaldingi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cyclophorus_horridulum" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mautodontha_maupiensis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hygrotus_artus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ungava_brown_bear" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Trigonoscuta_yorbalindae" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Arc-form_pearly_mussel" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Broad-billed_moa" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Stout-legged_finch" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Palaeoloxodon_falconeri" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Puzzle_elimia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Alabama_pigtoe" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Partula_dolichostoma" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lesser_Cuban_nesophontes" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Puerto_Rican_barn_owl" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Darling_Downs_hopping_mouse" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Partula_atilis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Norfolk_pigeon" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Guam_flying_fox" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ameca_shiner" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cuban_macaw" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sinployea_planospira" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Toolache_wallaby" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Clavicoccus_erinaceus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Aplocheilichthys_sp._nov._'Naivasha'" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rodrigues_day_gecko" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hoopoe_starling" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Harelip_sucker" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/O\u02bbahu_nukupu\u02bbu" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Garrett's_reed_warbler" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cachorrito_de_la_Trinidad" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ua_Huka_rail" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Moorea_reed_warbler" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lagostomus_crassus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Evarra_eigenmanni" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Achatinella_lehuiensis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mascarene_coot" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cryptoprocta_spelea" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Xestospiza_fastigialis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bigmouth_rocksnail" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Moho_(genus)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pseudohelenoconcha_spurca" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Triaenodes_tridonata" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Blackfin_cisco" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ratas_Island_lizard" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/King_Kong_grosbeak" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sinployea_decorticata" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pennatomys" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Amastra_tenuispira" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Greater_akialoa" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lord_Howe_parakeet" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dusky_flying_fox" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mexican_grizzly_bear" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Alburnus_akili" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Partula_levistriata" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hilo_noctuid_moth" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Balearic_shrew" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Oodemas_laysanensis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/R\u00e9union_giant_tortoise" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/New_Zealand_quail" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Alloperla_roberti" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lake_Mackay_hare-wallaby" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mascarene_parrot" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lord_Howe_swamphen" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Partula_citrina" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vegas_Valley_leopard_frog" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pentagenia_robusta" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Black-fronted_parakeet" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pseudophilautus_extirpo" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pseudophilautus_variabilis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Megaoryzomys" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pseudophilautus_oxyrhynchus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Partula_cuneata" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chatham_duck" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lamellidea_nakadai" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Eiao_monarch" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Partula_levilineata" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Clydonitaceae" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Carelia_turricula" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Partula_radiata" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lymnaea_tomentosa_hamiltoni" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pseudophilautus_nasutus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vitrinula_chaunax" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Genophantis_leahi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Short-tailed_hopping_mouse" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lepidochrysops_hypopolia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Brown_pigtoe" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Neduba_extincta" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sinployea_harveyensis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Arabian_ostrich" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tristramella_magdelainae" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Martinique_giant_ameiva" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Partula_sagitta" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/North_Island_snipe" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Partula_arguta" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Stephens_Island_wren" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/St._Michel_nesophontes" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Taipidon_octolamellata" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Partulina_montagui" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Huahine_swamphen" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Syrian_elephant" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chestnut_ermine_moth" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/European_ass" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Norfolk_kaka" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Western_black_rhinoceros" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mauke_starling" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Partula_formosa" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Conquered_lorikeet" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cyprinus_yilongensis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Daito_wren" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kaua\u02bbi_\u02bb\u014d\u02bb\u014d" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Salvelinus_neocomensis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Spirobolellus_praslinus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Confused_moth" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Coosa_elktoe" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sinployea_tenuicostata" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Thick-billed_ground_dove" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Craugastor_escoces" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ochlockonee_arcmussel" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tristramella_intermedia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Piopio_(bird)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gerandibis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Candango_mouse" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Helenoconcha_minutissima" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rodrigues_bulbul" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/New_Zealand_bittern" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Florida_black_wolf" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Puerto_Rican_parakeet" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Achatinella_livida" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Heavy_pigtoe" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rodrigues_owl" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Typhlops_cariei" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tropidophis_bucculentus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Saint_Helena_earwig" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Phyllococcus_oahuensis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ash_Meadows_killifish" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Evarra_bustamantei" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Daito_varied_tit" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/New_Zealand_musk_duck" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Macquarie_parakeet" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sardinian_lynx" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lovegrass_noctuid_moth" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cuban_nesophontes" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mautodontha_zebrina" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Carelia_pilsbryi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pyramid_slitshell" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Amastra_pellucida" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Eastern_cougar" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Eastern_Canary_Islands_chiffchaff" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Twisted-toothed_mouse" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/White-footed_rabbit-rat" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Phantom_shiner" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Roper_River_scrub_robin" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Auriculella_uniplicata" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sterna_milne-edwardsii" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Auriculella_expansa" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Highnut" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Trigonoscuta_rossi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Huahine_gull" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Thick-lipped_pebblesnail" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pemberton's_deer_mouse" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chadwick_Beach_cotton_mouse" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Wide-toothed_hutia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ouachita_pebblesnail" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jamaican_monkey" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Japanese_wolf" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Daphnobela_minutissima" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cuban_ivory-billed_woodpecker" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Quintalia_stoddartii" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mautodontha_parvidens" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Madeiran_wood_pigeon" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/R\u00e9union_pink_pigeon" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lesser_stick-nest_rat" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hearty_elimia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Round_slitshell" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hagerman_horse" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Malagasy_hippopotamus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Finsch's_duck" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Channeled_pebblesnail" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Western_Lewin's_rail" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pantanodon_madagascariensis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Laughing_owl" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Saddle-backed_Rodrigues_giant_tortoise" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Macquarie_rail" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Maiden_rocksnail" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Neoplanorbis_carinatus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Norfolk_triller" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Longnut" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mangaia_rail" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Haitian_edible_rat" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pseudobactricia_ridleyi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Acanthobrama_hulensis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Agate_rocksnail" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Agrotis_photophila" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Great_O\u2018ahu_crake" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/R\u00e9union_night_heron" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rough-lined_elimia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Megalomys_luciae" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Agrotis_tephrias" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Helenoconcha_leptalea" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Neoplanorbis_smithi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Spotted_green_pigeon" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jamaican_wood_rail" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Thicktail_chub" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Harmogenanina_subdetecta" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bluff_Downs_giant_python" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Scotorythra_nesiotes" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Samoana_jackieburchi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Coregonus_fera" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Utah_Lake_sculpin" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cumberland_leafshell" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Saddle-backed_Mauritius_giant_tortoise" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Saint_Helena_dove" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pentremites" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Laysan_noctuid_moth" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Big-eared_hopping_mouse" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Robust_white-eye" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lord_Howe_starling" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Helenodiscus_bilamellata" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Partula_protracta" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Agrotis_melanoneura" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Palaeoloxodon_mnaidriensis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tubuai_rail" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Amistad_gambusia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pseudophilautus_nanus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Littoridina_gaudichaudii" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Buhler's_coryphomys" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Desert_rat-kangaroo" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Majorcan_giant_dormouse" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/San_Marcos_gambusia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chestnut_clearwing_moth" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Leptoxis_torrefacta" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Zonites_santoriniensis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cyclosurus_mariei" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Excised_slitshell" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Broad-billed_parrot" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Domed_Mauritius_giant_tortoise" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ryukyu_kingfisher" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mascarene_grey_parakeet" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Agrotis_cremata" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tristramella_sacra" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mautodontha_punctiperforata" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Leiostyla_lamellosa" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Guadalupe_caracara" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Discula_tetrica" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Grand_Cayman_thrush" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Eurygnathohippus_woldegabrieli" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Daphnobela_juncea" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kerr's_noctuid_moth" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nesotrochis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Seychelles_parakeet" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pied_raven" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Amastra_albolabris" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rhachis_comorensis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Incerticyclus_cinereus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Greater_Cuban_nesophontes" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pentarthrum_blackburni" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sinployea_rudis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Partula_filosa" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lord_Howe_pigeon" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Red-bellied_gracile_opossum" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Clappia_umbilicata" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Constricted_elimia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Aepyornis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nancibella_quintalia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Partula_cytherea" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Helenoconcha_pseustes" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kona_grosbeak" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Puerto_Rican_hutia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Stygobromus_lucifugus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Great_Maui_crake" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kona_giant_looper_moth" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pachystyla_rufozonata" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pseudophilautus_adspersus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Highland_finch" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Conilurus_capricornensis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Santo_Stefano_lizard" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gyralina_hausdorfi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Forkshell" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Partula_candida" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ryukyu_wood_pigeon" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tahiti_rail" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Amphicyclotulus_guadeloupensis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bucorvus_brailloni" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Conozoa_hyalina" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Discus_textilis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Biotocus_turbinatus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Urania_sloanus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Carelia_sinclairi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bonin_grosbeak" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Guadeloupe_amazon" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Martinique_curly-tailed_lizard" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/R\u00e9union_ibis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Amastra_umbilicata" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dusky_seaside_sparrow" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Janulus_pompylius" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Northland_skink" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Drosophila_lanaiensis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Xestospiza_conica" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Triaenodes_phalacris" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pseudocampylaea_loweii" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bermuda_flicker" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Malagasy_sheldgoose" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gould's_emerald" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Coleophora_leucochrysella" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Delalande's_coua" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Japanese_sea_lion" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Oligoryzomys_victus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hoopoe-billed_\u02bbakialoa" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Discus_engonatus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chilonopsis_subtruncatus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Keraea_garachicoensis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nearby_pearly_mussel" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Discula_lyelliana" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/St_Kilda_house_mouse" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pseudophilautus_halyi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Huahine_cuckoo-dove" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Giant_ghost-faced_bat" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/South_Island_k\u014dkako" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Wood_harrier" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Deloneura_immaculata" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Longjaw_cisco" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Navassa_curly-tailed_lizard" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Broad-faced_potoroo" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chirostoma_bartoni" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hawaii_mamo" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hispaniolan_edible_rat" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Newcombia_philippiana" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Silver_trout" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Atelopus_longirostris" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Laysan_dropseed_noctuid_moth" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Partula_eremita" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mauritius_owl" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bermuda_night_heron" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pahranagat_spinedace" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nesophontes" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mangaia_crake" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Puerto_Rican_flower_bat" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/True_pigtoe" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Oryzomys_nelsoni" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dysoneura" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bennu_heron" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Partula_imperforata" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rodrigues_rail" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/\u2018Eua_rail" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bishop's_\u02bb\u014d\u02bb\u014d" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hawaiian_rail" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tecopa_pupfish" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Stephanorhinus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pleurodonte_desidens" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Saint_Croix_racer" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rotund_rocksnail" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mauritian_turtle_dove" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hypnomys" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chilonopsis_subplicatus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Aldabra_brush_warbler" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Atelopus_vogli" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Amastra_reticulata" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Carelia_kalalauensis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Saint_Helena_swamphen" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Oncovena" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mecodema_punctellum" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cobble_elimia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bythinella_intermedia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kosrae_crake" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Caribbean_monk_seal" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tribonyx_hodgenorum" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Wahi_grosbeak" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cebu_hanging_parrot" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pig-footed_bandicoot" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lake_Pedder_earthworm" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hazel_pigtoe" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ptychochromoides_itasy" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chatham_kaka" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Perrin's_cave_beetle" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Maryland_darter" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mangareva_reed_warbler" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mautodontha_acuticosta" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Partula_remota" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Marcano's_solenodon" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Arcuate_pearly_mussel" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Laysan_honeycreeper" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rodrigues_giant_day_gecko" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Durango_shiner" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hoan_Kiem_turtle" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Achatinella_valida" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/New_Zealand_grayling" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Slender_Cuban_nesophontes" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Leucocharis_loyaltiensis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Agrotis_microreas" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Round_Island_burrowing_boa" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Saccocoma" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Leiostyla_abbreviata" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Perdicella_zebra" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Imber's_petrel" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Scioto_madtom" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Parras_characodon" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/E\u011firdir_minnow" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Carelia_paradoxa" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rhachis_sanguineus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/San_Benedicto_rock_wren" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vitrinula_hahajimana" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mautodontha_consimilis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sinployea_otareae" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lord_Howe_thrush" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Upland_moa" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Alabama_clubshell" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kiritimati_sandpiper" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Saint_Helena_hoopoe" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/High-billed_crow" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Partula_salifera" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Straight-tusked_elephant" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mauritius_sheldgoose" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ptychodus_mortoni" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mamo" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/\u02bb\u0100maui" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Partula_callifera" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Advena_campbelli" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rhinodrilus_fafner" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Coosa_pigtoe" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Paradise_parrot" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Namibcypris" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dutch_Alcon_Blue" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pseudophilautus_eximius" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Posticobia_norfolkensis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gastrocopta_ogasawarana" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lord_Howe_gerygone" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Leucocharis_porphyrocheila" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pagoda_slitshell" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vitrinula_chichijimana" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Palaeoloxodon_chaniensis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Partula_robusta" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Steller's_sea_cow" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ribbed_elimia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Imposter_hutia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mauritian_wood_pigeon" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rodrigues_parrot" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chloridops" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pachyornis_australis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/\u02bbUla-\u02bbai-hawane" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Giant_solenodon" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Maui_\u02bbakepa" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Achatinella_buddii" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Brace's_emerald" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Maclear's_rat" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Acanthometropus_pecatonica" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Aldabra_banded_snail" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lord_Howe_fantail" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Niue_night_heron" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Samana_hutia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Red-moustached_fruit_dove" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ohridohauffenia_drimica" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Liocypris_grandis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bay_thrush" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Haast's_eagle" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Carelia_cumingiana" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ameiva_cineracea" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/O'ahu_petrel" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ciridops" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lesser_koa_finch" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Canary_Islands_oystercatcher" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dysoneuridae" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Elimia_lachryma" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tyto_pollens" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Greater_koa_finch" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Las_Vegas_dace" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Anabarilius_macrolepis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Coues'_gadwall" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Niue_rail" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Heath_hen" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Partula_approximata" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Daphnobela_miocaenica" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Neoplanorbis_umbilicatus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Partula_faba" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Greater_\u02bbamakihi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ovate_clubshell" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bonin_nankeen_night_heron" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/North_African_elephant" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Caldwellia_philyrina" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Oleacina_guadeloupensis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Megalomys_desmarestii" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/K\u0101ma\u02bbo" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kenai_Peninsula_wolf" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Quintalia_flosculus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Carelia_anceophila" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hesperocolletes_douglasi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chatham_bellbird" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Stonemyia_volutina" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Aptenodytes_ridgeni" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/High-spired_elimia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Alaotra_grebe" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Helenodiscus_vernoni" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dinornis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pseudophilautus_stellatus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Graceful_priapella" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Huia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Taipidon_marquesana" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Partula_compacta" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Marstonia_olivacea" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mammuthus_creticus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Erepta_nevilli" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Zonites_siphnicus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Partula_labrusca" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Taipidon_anceyana" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Acorn_ramshorn" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Crescent_nail-tail_wallaby" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bunker's_woodrat" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lyrate_rocksnail" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Carelia_bicolor" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Partula_thalia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Snipe-rail" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jamaica_giant_galliwasp" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pachnodus_velutinus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chatham_penguin" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tristan_moorhen" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Short-spired_elimia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Thaumatodon_multilamellata" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gastrocopta_chichijimana" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Carelia_mirabilis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Large_Palau_flying_fox" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Blue-gray_mouse" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Red-headed_macaw" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Eelgrass_limpet" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Newton's_parakeet" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rodrigues_night_heron" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Carolina_parakeet" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Montane_hutia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Carelia_knudseni" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Digerus_gibberulus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Turtle-jawed_moa-nalo" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ptilodus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tule_shrew" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Southern_black_rhinoceros" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Laysan_millerbird" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sardinian_shrew" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Guadeloupe_parakeet" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Partula_microstoma" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Closed_elimia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Amastra_porcus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Xestospiza" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Partula_vittata" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kauai_palila" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/R\u00e9union_sheldgoose" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cuban_coney" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Achatinella_thaanumi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Shoal_sprite" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Eastern_moa" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Heteropsomys" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Colombian_grebe" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cyprinodon_ceciliae" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nesoryzomys_darwini" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Noronhomys" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Achatinella_dimorpha" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Afrocyclops_pauliani" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Red-throated_wood_rail" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lottia_edmitchelli" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Atlas_wild_ass" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Poko_noctuid_moth" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tritocleis_microphylla" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bonin_thrush" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Norfolk_starling" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Coelodonta_tologoijensis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tropidophora_desmazuresi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Huahine_rail" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pseudophilautus_leucorhinus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Clear_Lake_splittail" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Libera_tumuloides" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sea_mink" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Partula_cedista" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Carelia_necra" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Syrian_wild_ass" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Coregonus_bezola" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Japanese_river_otter" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dysoneura_trifurcata" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Catostomus_catostomus_cristatus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Partula_fusca" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Great_hopping_mouse" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Puerto_Rican_nesophontes" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Leithia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Carolina_elktoe" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Panulena_perrugosa" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Norfolk_thrush" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Oriente_cave_rat" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sardinian_pika" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Barbus_microbarbis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sinoto's_lorikeet" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/K\u0101k\u0101wahie" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Achatinella_juddii" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Partula_leptochila" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/L\u0101na'i_hookbill" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Labrador_duck" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Primitive_koa_finch" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Juliomys_anoblepas" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Carelia_olivacea" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chilonopsis_turtoni" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Long-tailed_hopping_mouse" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lana'i_'alauahio" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pagan_reed_warbler" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Carelia_tenebrosa" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Partula_variabilis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Maui_Nui_'akialoa" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lesser_\u02bbakialoa" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Amastra_subsoror" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Daphnobela" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Deepwater_cisco" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Smith_Island_cottontail" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Oahu_'akialoa" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mautodontha_consobrina" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Henderson_ground_dove" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Western_rufous_bristlebird" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Incerticyclus_martinicensis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Oceanic_eclectus_parrot" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lesser_bilby" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dusicyon_avus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Neoplanorbis_tantillus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Littoraria_flammea" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Coregonus_gutturosus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Carelia_lymani" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Atitl\u00e1n_grebe" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Plectostoma_sciaphilum" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Geomitra_delphinuloides" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dieffenbach's_rail" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Amastra_subrostrata" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Xerces_blue" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mauritian_giant_skink" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/South_Island_giant_moa" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/King_Island_emu" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Perdicella_fulgurans" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/R\u00e9union_fody" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Salado_shiner" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/R\u00e9union_owl" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Trochoidea_picardi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Partula_raiatensis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/South_Island_piopio" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Partula_turgida" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Schizoglossa_major" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Achatinella_juncea" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chilonopsis_helena" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Malagasy_crowned_eagle" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Belgrandiella_intermedia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Independence_Valley_tui_chub" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hirasea_acutissima" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Carelia_dolei" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gastric-brooding_frog" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Asian_ostrich" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nesoryzomys_indefessus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Little_Swan_Island_hutia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/North_Island_piopio" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chatham_rail" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tahiti_sandpiper" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nuku_Hiva_monarch" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Auckland_Islands_shore_plover" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gonidomus_newtoni" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Carelia_periscelis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Achatinella_abbreviata" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Amastra_cornea" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bernard's_wolf" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Procellaris_grotis_noctuid_moth" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kioea" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kaua\u02bbi_\u02bbakialoa" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Norfolk_boobook" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Whiteline_topminnow" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mauritius_blue_pigeon" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Marquesas_swamphen" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kangaroo_Island_emu" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mangaia_swiftlet" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sinployea_canalis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bar-winged_rail" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Guam_flycatcher" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gonospira_nevilli" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Amsterdam_wigeon" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Amastra_forbesi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lined_pocketbook" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nuku_Hiva_rail" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Geomitra_grabhami" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mautodontha_saintjohni" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Parras_pupfish" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Carelia_evelynae" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Laysan_rail" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Society_parakeet" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tropidophora_semilineata" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Eastwood's_long-tailed_seps" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Flores_cave_rat" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Goff's_pocket_gopher" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Narrow_catspaw" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Partula_castanea" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/R\u00e9union_rail" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/O\u02bbahu_\u02bb\u014d\u02bb\u014d" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Partula_exigua" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cyprinodon_arcuatus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mauritius_night_heron" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Salmo_pallaryi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bush_moa" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Techirghiol_stickleback" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Red_rail" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Yellow_pigtoe" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Plate-toothed_giant_hutia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Boulder_snail" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Campolaemus_perexilis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kaholuamano_noctuid_moth" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Forbes'_snipe" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lord_Howe_boobook" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Graecoanatolica_macedonica" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Martinique_amazon" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Levuana_moth" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Carelia_cochlea" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Battus_polydamas_antiquus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Henderson_archaic_pigeon" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tanna_ground_dove" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Oryzomys_antillarum" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tarpan" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Spectacled_cormorant" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Achatinella_decora" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/G\u00f6l\u00e7\u00fck_toothcarp" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rhynchopsitta_phillipsi" + } + } + ] + } + } + ], + "entities": [], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/animal", + "surface form": "animals" + }, + { + "URI": "http://dbpedia.org/ontology/quote", + "surface form": "extinct" + } + ] + }, + { + "id": "122", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Who was the wife of President Lincoln?", + "keywords": "wife, president, lincoln" + } + ], + "query": { + "sparql": "PREFIX dbr: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT ?uri ?string WHERE { dbr:Abraham_Lincoln onto:spouse ?uri }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mary_Todd_Lincoln" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/USS_President_Lincoln_(1907)", + "surface form": "President Lincoln" + } + ], + "relations": [ + { "URI": "http://dbpedia.org/ontology/spouse", "surface form": "wife" } + ] + }, + { + "id": "111", + "answertype": "number", + "aggregation": true, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "How many awards has Bertrand Russell?", + "keywords": "Bertrand Russell, awards" + } + ], + "query": { + "sparql": "PREFIX dbr: <http://dbpedia.org/resource/> PREFIX dbp: <http://dbpedia.org/property/> SELECT (COUNT(?Awards) AS ?Counter) WHERE { dbr:Bertrand_Russell dbp:awards ?Awards }" + }, + "answers": [ + { + "head": { "vars": ["c"] }, + "results": { + "bindings": [{ "c": { "type": "literal", "value": "5" } }] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Bertrand_Russell", + "surface form": "Bertrand Russell" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/property/awards", + "surface form": "awards" + } + ] + }, + { + "id": "117", + "answertype": "boolean", + "aggregation": false, + "onlydbo": false, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Is Pamela Anderson a vegan?", + "keywords": "Pamela Anderson, vegan" + } + ], + "query": { + "sparql": "PREFIX dbr: <http://dbpedia.org/resource/> ASK WHERE { dbr:Pamela_Anderson a <http://dbpedia.org/class/yago/WikicatAmericanVegans> }" + }, + "answers": [{ "head": {}, "results": {}, "boolean": true }], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Pamela_Anderson", + "surface form": "Pamela Anderson" + }, + { + "URI": "http://dbpedia.org/resource/Vegan_Virgin_Valentine", + "surface form": "vegan" + } + ], + "relations": [] + }, + { + "id": "59", + "answertype": "resource", + "aggregation": false, + "onlydbo": false, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Which space probes were sent into orbit around the sun?", + "keywords": "space probes, orbit around the sun" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbc: <http://dbpedia.org/resource/Category:> PREFIX dct: <http://purl.org/dc/terms/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?s WHERE { ?s dct:subject dbc:Missions_to_the_Sun ; rdf:type ?type FILTER ( ?type IN (dbo:Satellite, dbo:ArtificialSatellite) ) }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/TRACE" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Koronas-Foton" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Geomagnetic_Field_Monitoring_Program_of_SUPARCO" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Advanced_Composition_Explorer" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Solar_Sentinels" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ulysses_(spacecraft)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Helios_(spacecraft)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pioneer_6,_7,_8,_and_9" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/STEREO" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Solar_Dynamics_Observatory" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Picard_(satellite)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Solar_and_Heliospheric_Observatory" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Solar_Probe_Plus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Reuven_Ramaty_High_Energy_Solar_Spectroscopic_Imager" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Solar_Orbiter" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hinode" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Interface_Region_Imaging_Spectrograph" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CubeSat_for_Solar_Particles" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Genesis_(spacecraft)" + } + } + ] + } + } + ], + "entities": [], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/area", + "surface form": "space probes" + }, + { + "URI": "http://dbpedia.org/ontology/course", + "surface form": "orbit" + }, + { "URI": "http://dbpedia.org/ontology/year", "surface form": "sun" } + ] + }, + { + "id": "113", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Which German cities have more than 250000 inhabitants?", + "keywords": "city, Germany, inhabitants, more than 250000" + } + ], + "query": { + "sparql": "SELECT DISTINCT ?uri WHERE { { ?uri a <http://dbpedia.org/ontology/City> } UNION { ?uri a <http://dbpedia.org/ontology/Town> } ?uri <http://dbpedia.org/ontology/country> <http://dbpedia.org/resource/Germany> ; <http://dbpedia.org/ontology/populationTotal> ?population FILTER ( ?population > 250000 ) }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/M\u00fcnster" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hamburg" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hanover" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Berlin" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dresden" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/D\u00fcsseldorf" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Munich" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bonn" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Wiesbaden" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Karlsruhe" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dortmund" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Frankfurt" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Braunschweig" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cologne" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Duisburg" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nuremberg" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bochum" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Essen" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mannheim" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/M\u00f6nchengladbach" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Wuppertal" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bielefeld" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bremen" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Augsburg" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gelsenkirchen" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Stuttgart" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Germany", + "surface form": "German cities" + }, + { + "URI": "http://dbpedia.org/resource/German", + "surface form": "German cities" + }, + { + "URI": "http://dbpedia.org/resource/Population", + "surface form": "250000 inhabitants" + } + ], + "relations": [ + { "URI": "http://dbpedia.org/ontology/country", "surface form": "" }, + { "URI": "http://dbpedia.org/ontology/country", "surface form": "" } + ] + }, + { + "id": "104", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Who is the daughter of Robert Kennedy married to?", + "keywords": "Robert Kennedy, daughter, married" + } + ], + "query": { + "sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Robert_F._Kennedy> <http://dbpedia.org/ontology/child> ?child . ?child <http://dbpedia.org/ontology/spouse> ?uri }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Andrew_Cuomo" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Robert_F._Kennedy", + "surface form": "Robert Kennedy" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/child", + "surface form": "daughter" + }, + { + "URI": "http://dbpedia.org/property/spouse", + "surface form": "married" + } + ] + }, + { + "id": "10", + "answertype": "number", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "How many students does the Free University of Amsterdam have?", + "keywords": "Free University, Amsterdam, students" + } + ], + "query": { + "sparql": "SELECT DISTINCT ?num WHERE { dbr:Vrije_Universiteit_Amsterdam <http://dbpedia.org/ontology/numberOfStudents> ?num }" + }, + "answers": [ + { + "head": { "vars": ["c"] }, + "results": { + "bindings": [{ "c": { "type": "literal", "value": "23656" } }] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Vrije_Universiteit_Amsterdam", + "surface form": "Free University of Amsterdam" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/numberOfStudents", + "surface form": "students" + } + ] + }, + { + "id": "1", + "answertype": "number", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "What is the revenue of IBM?", + "keywords": "revenue, ibm" + } + ], + "query": { + "sparql": "PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT ?number WHERE { res:IBM onto:revenue ?number }" + }, + "answers": [ + { + "head": { "vars": ["c"] }, + "results": { + "bindings": [{ "c": { "type": "literal", "value": "8.1741E10" } }] + } + } + ], + "entities": [ + { "URI": "http://dbpedia.org/resource/IBM", "surface form": "IBM" } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/revenue", + "surface form": "revenue" + } + ] + }, + { + "id": "178", + "answertype": "number", + "aggregation": true, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "How many James Bond movies do exist?", + "keywords": "how many, James Bond movies" + } + ], + "query": { + "sparql": "SELECT (COUNT(DISTINCT ?uri) AS ?c) WHERE { ?uri dct:subject <http://dbpedia.org/resource/Category:James_Bond_films> }" + }, + "answers": [ + { + "head": { "vars": ["c"] }, + "results": { + "bindings": [{ "c": { "type": "literal", "value": "34" } }] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/M_(James_Bond)", + "surface form": "James Bond movies" + } + ], + "relations": [ + { "URI": "http://dbpedia.org/property/last", "surface form": "exist" } + ] + }, + { + "id": "129", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Who does the voice of Bart Simpson?", + "keywords": "voice, Bart Simpson" + } + ], + "query": { + "sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Bart_Simpson> <http://dbpedia.org/property/voiceactor> ?uri }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nancy_Cartwright" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Bart_Simpson", + "surface form": "Bart Simpson" + } + ], + "relations": [ + { "URI": "http://dbpedia.org/ontology/voice", "surface form": "voice" } + ] + }, + { + "id": "183", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Who was Tom Hanks married to?", + "keywords": "tom, hanks, married" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> SELECT DISTINCT ?uri WHERE { dbr:Tom_Hanks dbo:spouse ?uri }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rita_Wilson" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Tom_Hanks", + "surface form": "Tom Hanks" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/property/spouse", + "surface form": "married" + } + ] + }, + { + "id": "181", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Through which countries does the Yenisei river flow?", + "keywords": "Yenisei river, flow through, country" + } + ], + "query": { + "sparql": "PREFIX res: <http://dbpedia.org/resource/> PREFIX dbp: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Yenisei_River <http://dbpedia.org/ontology/country> ?uri }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Russia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mongolia" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Countries_of_the_United_Kingdom", + "surface form": "countries" + }, + { + "URI": "http://dbpedia.org/resource/Yenisei_River", + "surface form": "Yenisei river flow" + } + ], + "relations": [] + }, + { + "id": "7", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Give me all cars that are produced in Germany.", + "keywords": "car, produce, Germany" + } + ], + "query": { + "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Automobile> { ?uri <http://dbpedia.org/ontology/assembly> <http://dbpedia.org/resource/Germany> } UNION { ?uri <http://dbpedia.org/property/assembly> <http://dbpedia.org/resource/Germany> } UNION { { ?uri <http://dbpedia.org/ontology/manufacturer> ?x } UNION { ?uri <http://dbpedia.org/property/manufacturer> ?x } { ?x <http://dbpedia.org/ontology/locationCountry> <http://dbpedia.org/resource/Germany> } UNION { ?x <http://dbpedia.org/ontology/location> <http://dbpedia.org/resource/Germany> } } }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mercedes-Benz_770" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mercedes-Benz_GLC-Class" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Volkswagen_Crafter" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ford_Model_T" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Opel_Combo" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Goliath_1100" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ford_Model_Y" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Opel_Mokka" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Volkswagen_Passat" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mercedes-Benz_E-Class_(C207)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Opel_Karl" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ruf_Turbo_R" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Porsche_993" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mercedes-Benz_E-Class_(W210)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Porsche_991" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chrysler_300__First_generation__1" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mercedes-Benz_R-Class" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Porsche_996" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Volkswagen_Santana" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Volkswagen_Plattenwagen" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Volkswagen_Cross_Coupe_GTE_Concept" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Volkswagen_New_Beetle" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Opel_Monza__2013_Monza_Concept__1" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Porsche_Cayenne" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mercedes-Benz_E-Class_(W211)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Audi_Coup\u00e9_(B2)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Meillerwagen" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Neoplan_Centroliner" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mercedes-Benz_SL-Class_(R230)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Holden_Astra" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Volkswagen_Polo" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Smart_Crosstown" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ford_K\u00f6ln" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Volkswagen_Type_147_Kleinlieferwagen" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Opel_8/40_PS" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Holden_Barina" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mercedes-Benz_E-Class_(W212)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/BMW_M6" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Borgward_BX7" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Opel_Insignia__Insignia__1" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Volkswagen_LT" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Volkswagen_Concept_BlueSport" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/BMW_M3__E90/92/93__1" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Audi_Quattro__Audi_Sport_Quattro_S1_E2__1" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mercedes-Benz_M-Class" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Volkswagen_GX3" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Volkswagen_Passat_(B8)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Alpina_B10_Bi-Turbo" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Volkswagen_Type_14A_(Hebm\u00fcller_Cabriolet)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mercedes-Benz_SL-Class_(R231)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Opel_Frogster" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mercedes-Benz_A-Class" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ford_Escort_(Europe)__Third_generation__1" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Callaway_Cars__Callaway_C16__1" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mercedes-Benz_TN" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mercedes-Benz_CLK-Class" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lloyd_Arabella" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Volkswagen_SP2" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lloyd_600" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/ERuf_Model_A" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mercedes-Benz_Atego" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mercedes-Benz_E-Class_(W213)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/BMW_M3__E36__1" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Opel_1.2_litre" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/MAN_NG272" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Opel_Agila" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Opel_Omega__B2__1" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mercedes-Benz_540K" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Opel_Ascona" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Neoplan_N407" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Porsche_Boxster/Cayman" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Porsche_Panamera__Second_generation_971__1" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mercedes-Benz_SK" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Volkswagen_Fox" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ford_C-Max__First_generation__1" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Smart_electric_drive" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Volkswagen_Derby" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/BMW_1_Series_(F20)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Audi_920" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mercedes-Benz_CL-Class_(C216)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Benz_Patent-Motorwagen" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Opel_GTC" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Porsche_Panamera__First_generation_970__1" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Opel_Omega__A__1" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Volkswagen_LT__1st_generation__1" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Opel_Junior" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Audi_Quattro" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Volkswagen_Passat_Lingyu" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/BMW_M3__E46_M3__1" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Volkswagen_W12" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Opel_Super_6" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Audi_RS_2_Avant" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Opel_4/8_PS" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mercedes-Benz_CL-Class_(C215)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Porsche_968" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Opel_Corsa" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mercedes-Benz_GLA-Class" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Volkswagen_Eos" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Opel_Laubfrosch" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Borgward_P100" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Porsche_928" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Porsche_911_GT2" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ford_Taunus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Neoplan_Jumbocruiser" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Opel_Vectra" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Opel_Commodore" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Opel_5/12_PS" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Volkswagen_LT__2nd_generation__1" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ford_Escort_(Europe)__Sixth_generation__1" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mercedes-Benz_SSK" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Opel_Omega" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mercedes-Benz_190_SL" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Volkswagen_Passat_NMS" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ford_Escort_(Europe)__Fourth_generation__1" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mercedes-Benz_SLK-Class__Mercedes-Benz_R172__1" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Opel_Meriva" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Porsche_944" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/TechArt_Magnum" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Volkswagen_Karmann_Ghia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Volkswagen_New_Compact_Coup\u00e9" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Audi_RS_6" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Audi_RS_4" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Veritas_(automobile)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Volkswagen_Type_2_(T3)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mercedes-Benz_Vito" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/BMW_M6__Second_generation_E63/E64__1" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Plymouth_Voyager" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/MAN_NDxx3F" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/BMW_303__BMW_315/1,_BMW_319/1__1" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ruf_CTR" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Volkswagen_Beetle" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ford_P7" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Volkswagen_Bras\u00edlia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Opel_Kadett__D__1" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Volkswagen_Amarok" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Opel_Omega__B1__1" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mercedes_15/70/100_PS" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Volkswagen_Jetta" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Opel_Admiral" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Opel_Manta" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lloyd_300" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Volkswagen_Corrado" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/BMW_303__BMW_309__1" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/BMW_i3" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/BMW_5_Series_(E60)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Volkswagen_Transporter_(T4)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mercedes-Benz_SL-Class_(R129)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Messerschmitt_KR175" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/MAN_Lion's_Chassis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ford_Scorpio__First_generation__1" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mercedes-Benz_A-Class__W176__1" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mercedes-Benz_GL-Class" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Opel_RAK_e" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Opel_Kadett" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ford_Escort_(Europe)__Fifth_generation__1" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ruf_BTR" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mercedes-Benz_320A" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Volkswagen_Transporter_(T5)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Volkswagen_K70" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Volkswagen_Gol" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/MAN_Lion's_City" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mercedes-Benz_MB100" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Volkswagen_Taigun" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Volkswagen_Caddy" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Porsche_Carrera_GT" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Opel_Omega__V8_prototypes__1" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Volkswagen_Type_2__T1__1" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/MAN_NL202" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Opel_Kadett__E__1" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/9ff_GT9" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bentley_Continental_Flying_Spur_(2005)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/BMW_3_Series_(E90)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mercedes-Benz_Econic" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Volkswagen_Phideon" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Volkswagen_CC" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Opel_Olympia_Rekord" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mercedes_24/100/140_PS" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Maybach_57_and_62" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mercedes-Benz_Citan" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/BMW_7_Series_(F01)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ford_Taunus_P1" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Audi_Type_SS" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Heinkel_Kabine" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Audi_R8__V10_\u2013_Frontansicht,_13._M\u00e4rz_2011,_Wuppert__1" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ford_Taunus_P6" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/MAN_NLxx3F" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ford_Taunus_P2" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ford_Taunus_P3" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mercedes-Benz_Actros" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ford_Taunus_P4" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ford_Taunus_P5" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Opel_Kapit\u00e4n" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Isdera_Imperator_108i" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mercedes-Benz_S-Class_(C217)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Opel_Insignia__2003_Insignia_Concept__1" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Volkswagen_Scirocco" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/TMG_EV_P001" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mercedes-Benz_Silver_Lightning" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Volkswagen_Polo_Mk3" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Volkswagen_Polo_Mk2" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Volkswagen_Polo_Mk5" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Volkswagen_Polo_Mk4" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/BMW_7_Series_(G11)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Volkswagen_Schwimmwagen" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/BMW_i8" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Volkswagen_Lavida" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ford_Taunus_G93A" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Opel_GT" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Trabant" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Neoplan_Skyliner" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/BMW_7_Series_(E38)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mercedes-Benz_F-Cell" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mercedes-Benz_380_(1933)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mercedes-Benz_F125" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Volkswagen_Passat_Lingyu__Volkswagen_Passat_Lingyu__1" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mercedes-Benz_CLK_GTR" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Audi_A2" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Volkswagen_K\u00fcbelwagen" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Opel_GT__GT__1" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mercedes-AMG_GT" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mercedes-Benz_CLA-Class" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Opel_Speedster__Opel_ECO_Speedster__1" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lloyd_400" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Audi_A5__8T__1" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Volkswagen_Golf" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Opel_Flextreme_GT/E" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/B\u00fcssing_A5P" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ruf_CTR2" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ford_Eifel" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dodge_Viper" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/BMW_M5__BMW_E34_M5__1" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mercedes-Benz_G-Class" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Opel_Cascada" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mercedes-Benz_SLS_AMG" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Opel_Senator__B__1" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ford_Focus_Electric" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Saturn_Vue__Second_generation__1" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/MAN_SL200" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/MAN_SL202" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Benz_10/30_PS" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Opel_Flextreme" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/BMW_M3__E30__1" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Volkswagen_CrossBlue" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Opel_(Olympia)_Rekord_P1" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Opel_Rekord__Series_E__1" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mercedes-Benz_S-Class" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Opel_Regent" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/BMW_M3__F80__1" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/BMW_M5__BMW_E39_M5__1" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mercedes-Maybach_6" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mercedes-Benz_B-Class" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Volkswagen_Concept_D" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/BMW_8_Series" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Citro\u00ebn_Traction_Avant" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Volkswagen_Concept_A" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Volkswagen_Tiguan" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Opel_Senator" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Blitzen_Benz" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Opel_1.8_litre" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/BMW_New_Class" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mercedes-Benz_300_SL" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Benz_Velo" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Opel_2.0_litre" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Goliath_Pioneer" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Opel_Sintra" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bentley_Continental_Flying_Spur_(2005)__Flying_Spur__1" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ford_Model_A_(1927\u201331)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chrysler_Cirrus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Neoplan_N4009" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Borgward_Hansa_1500" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Volkswagen_Sharan" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mercedes-Benz_9G-Tronic_transmission" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Opel_Antara" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/BMW_7_Series_(E32)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Opel_Calibra" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Opel_Rekord_P2" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Porsche_Mission_E" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Opel_Kadett_A" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Opel_Kadett_C" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Opel_Kadett_B" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cadillac_Catera" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Audi_Front" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mercedes-Benz_SL-Class" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Volkswagen_Citi_Golf" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Volkswagen_1-litre_car" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/BMW_M5__BMW_E28_M5__1" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Volkswagen_Phaeton" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ford_Cougar" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mercedes-Benz_CLS-Class" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Opel_Senator__A__1" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Merkur_XR4Ti" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ford_Scorpio" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Volkswagen_181" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mercedes-Benz_7G-Tronic_transmission" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mercedes-Benz_C-Class_(W205)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mercedes-Benz_W191" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Volkswagen_Lupo" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Volkswagen_Beetle_(A5)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/BMW_6_Series_(E63)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/BMW_5_Series_(F10)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/BMW_4_Series_(F32)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Maybach_Zeppelin" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mercedes-Benz_260_D" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Brabus_C_V8" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jeep_Wrangler" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Opel_Blitz" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ford_Taunus_TC" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mercedes-Benz_CLS-Class__W218__1" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Volkswagen_Polo_G40" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Neoplan_Transliner" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mercedes-Benz_W180" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mercedes-Benz_C-Class_(W204)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Volkswagen_Taro" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sachsenring_P240" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Opel_Patent_Motor_Car" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mercedes-Benz_Sprinter" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Opel_Insignia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mercedes-Benz_W189" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mercedes-Benz_W188" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mercedes-Benz_W187" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/MAN_24.3x0" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Unimog_435" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mercedes-Benz_W186" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Opel_Astra" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Opel_Slalom" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/BMW_5_Series_(F10)__BMW_F10_M5__1" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/BMW_3_Series_(E36)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Audi_Le_Mans_quattro" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mercedes-Benz_M110_engine" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Goliath_GP700" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mercedes-Benz_C-Class_(W203)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mercedes-Benz_F700" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Opel_Monza" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mercedes-Benz_W136" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Campeonato_Brasileiro_de_Marcas_e_Pilotos" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Volkswagen_Up" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mercedes-Benz_R107_and_C107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mercedes-Benz_4G-Tronic_transmission" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Borgward_B_611" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mercedes-Benz_NG" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Volkswagen_ARVW" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/BMW_3/20" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Fiat_508" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mercedes-Benz_W123" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/BMW_7_Series_(E65)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Opel_Ascona__B__1" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ford_Escort_(Europe)__Second_generation__1" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Opel_Signum" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mercedes-Benz_W126" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/GM_HydroGen3" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Volkswagen_Passat_(B1)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mercedes-Benz_W124" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chrysler_Crossfire" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Trabant_601" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mercedes-Benz_W128" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Volkswagen_Touran" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Opel_Rekord_Series_E__1__1" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mercedes-Benz_O405" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mercedes-Benz_Ponton" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Opel_Rekord_Series_B" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Opel_Rekord_Series_C" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Opel_Rekord_Series_D" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Opel_Rekord_Series_E" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/MAN_NG272(2)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Wartburg_1.3" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Volkswagen_Iltis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mercedes-Benz_CL-Class" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Opel_Rekord_Series_A" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mercedes-Benz_GLK-Class" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mercedes-Benz_W153" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Opel_10/40_PS" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Opel_Ascona__C__1" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Opel_Rekord_Series_E__2__1" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Neoplan_N4016" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Volkswagen_Golf_Mk7" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Volkswagen_Golf_Mk6" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ford_Escort_(Europe)__First_generation__1" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Opel_Diplomat" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/BMW_M6__Third_generation_F12/F13__1" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mercedes-Benz_W140" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mercedes-Benz_W143" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Artega_GT" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mercedes-Benz_W142" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Volkswagen_Golf_Mk1" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Volkswagen_Golf_Mk5" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Volkswagen_Golf_Mk4" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Porsche_Macan" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Volkswagen_Golf_Mk3" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mercedes-Benz_5G-Tronic_transmission" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Volkswagen_Golf_Mk2" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Brabus_Bullit" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Volkswagen_EA489_Basistransporter" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mercedes-Benz_W21" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mercedes-Benz_S-Class_(W222)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dodge_Stratus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mercedes-Benz_SLK-Class_(R172)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Brabus_E_V12" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mercedes-Benz_Vario" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/BMW_M5__BMW_E60_M5__1" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ford_Consul__Granada_Mark_I_based__1" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mercedes-Benz_Bionic" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Opel_Ascona__A__1" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Opel_Adam" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Porsche_550" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Volkswagen_Kommandeurswagen" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/BMW_2_Series_(F22)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mercedes-Benz_W18" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mercedes-Benz_500E" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mercedes-Benz_W15" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Volkswagen_Passat_(B6)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Audi_R8" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mercedes-Benz_500K" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/BMW_303" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/BMW_1_Series_(E87)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mercedes-Benz_S-Class_(W221)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mercedes-Benz_W11" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mercedes-Benz_600" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mercedes-Benz_W10" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Opel_K-180" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Volkswagen_Type_4" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mercedes-Benz_C-Class" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Merkur_Scorpio" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Audi_Type_P" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Audi_Type_R" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Opel_1.3_litre" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Audi_Type_T" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Volkswagen_Type_2" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Volkswagen_Type_3" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Audi_Type_G" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Volkswagen_T-Roc" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Audi_Type_K" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Audi_Type_M" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mercedes-Benz_W201" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mercedes-Benz_W08" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Audi_S5" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Audi_S4" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/E-Wolf_e2" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Audi_S6" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Audi_Type_A" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Volkswagen_Passat_(B5)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Audi_Type_B" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mercedes-Benz_W03" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Audi_Type_C" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ruf_Rt_12" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mercedes-Benz_W02" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Audi_Type_D" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Opel_Trixx" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Audi_Type_E" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mercedes-Benz_S-Class_(W220)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Opel_Tigra" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Brabus_Rocket" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mercedes-Benz_SLK-Class_(R170)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Smart_Fortwo" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Opel_Rekord" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/BMW_2_Series_Active_Tourer" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mercedes-Benz_W112" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mercedes-Benz_W111" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mercedes-Benz_F800" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mercedes-Benz_W110" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mercedes-Benz_E-Class" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Neoplan_Megaliner" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mercedes-Benz_W116" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mercedes-Benz_W114" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mercedes-Benz_W113" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ruf_RGT" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Volkswagen_Passat_(B4)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mercedes-Benz_BlueZERO" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/BMW_328" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/BMW_327" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mercedes-Benz_W31" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CityEl" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Borgward_Hansa_2400" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Borgward_Isabella" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/BMW_320" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Opel_Zafira" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Opel_Olympia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Opel_10/30_(10/35)_PS" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ruf_RK_Coupe" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Opel_Kadett__I__1" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mercedes-Benz_W105" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mercedes-Benz_W108" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/BMW_M5__BMW_F10_M5__1" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Germany", + "surface form": "Germany" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/management", + "surface form": "cars" + }, + { + "URI": "http://dbpedia.org/ontology/author", + "surface form": "produced" + } + ] + }, + { + "id": "135", + "answertype": "date", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "When did Michael Jackson die?", + "keywords": "Michael Jackson, die" + } + ], + "query": { + "sparql": "SELECT DISTINCT ?date WHERE { <http://dbpedia.org/resource/Michael_Jackson> <http://dbpedia.org/ontology/deathDate> ?date }" + }, + "answers": [ + { + "head": { "vars": ["date"] }, + "results": { + "bindings": [ + { "date": { "type": "literal", "value": "2009-6-25" } } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Michael_Jackson", + "surface form": "Michael Jackson" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/deathDate", + "surface form": "die" + } + ] + }, + { + "id": "50", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "What is the highest volcano in Africa?", + "keywords": "highest, volcano, Africa" + } + ], + "query": { + "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Volcano> ; <http://dbpedia.org/ontology/locatedInArea> ?area . ?area dct:subject dbc:Countries_in_Africa . ?uri <http://dbpedia.org/ontology/elevation> ?elevation } ORDER BY DESC(?elevation) LIMIT 1" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mount_Kilimanjaro" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Africa", + "surface form": "Africa" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/head", + "surface form": "highest volcano" + } + ] + }, + { + "id": "39", + "answertype": "resource", + "aggregation": true, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Which poet wrote the most books?", + "keywords": "poet, most, books" + } + ], + "query": { + "sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/occupation> <http://dbpedia.org/resource/Poet> . ?x <http://dbpedia.org/ontology/author> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Book> . } ORDER BY DESC(COUNT(?x)) OFFSET 0 LIMIT 1" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jules_Verne" + } + } + ] + } + } + ], + "entities": [], + "relations": [ + { "URI": "http://dbpedia.org/ontology/author", "surface form": "poet" }, + { + "URI": "http://dbpedia.org/ontology/composer", + "surface form": "wrote" + }, + { "URI": "http://dbpedia.org/ontology/volume", "surface form": "books" } + ] + }, + { + "id": "83", + "answertype": "resource", + "aggregation": false, + "onlydbo": false, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Give me all gangsters from the prohibition era.", + "keywords": "gangsters, prohibition era" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dct: <http://purl.org/dc/terms/> PREFIX dbc: <http://dbpedia.org/resource/Category:> PREFIX dbr: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { ?uri dbo:occupation dbr:Gangster ; dct:subject dbc:Prohibition-era_gangsters }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Louis_Buchalter" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gus_Winkler" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Salvatore_D'Aquila" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dean_O'Banion" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mike_Genna" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Joe_Masseria" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vito_Bonventre" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ciro_Terranova" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bugsy_Siegel" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Al_Capone" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Roger_Touhy" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/William_Egan_(gangster)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bugs_Moran" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Louis_Campagna" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lucky_Luciano" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Owney_Madden" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nicolo_Schiro" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Fred_Burke" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Leo_Vincent_Brothers" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Salvatore_Maranzano" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/John_%22Pudgy%22_Dunn" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ignazio_Lupo" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Gangsters_of_the_Frontier", + "surface form": "Gangsters" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/time", + "surface form": "prohibition era" + } + ] + }, + { + "id": "71", + "answertype": "resource", + "aggregation": false, + "onlydbo": false, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Give me all spacecrafts that flew to Mars.", + "keywords": "spacecrafts, flew to, Mars" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbc: <http://dbpedia.org/resource/Category:> PREFIX dct: <http://purl.org/dc/terms/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?s WHERE { ?s dct:subject dbc:Mars_rovers ; rdf:type ?type FILTER ( ?type IN (dbo:Satellite, dbo:ArtificialSatellite) ) }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/2020_Chinese_Mars_Mission" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mars_Science_Laboratory" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Curiosity_(rover)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/MELOS" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mars_Exploration_Rover" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Spirit_(rover)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/ExoMars_(rover)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mars_2020" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Astrobiology_Field_Laboratory" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mars_2" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mars_Pathfinder" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sojourner_(rover)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Opportunity_(rover)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mars_Astrobiology_Explorer-Cacher" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mars_3" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Spacecraft", + "surface form": "spacecrafts" + }, + { "URI": "http://dbpedia.org/resource/Mars", "surface form": "Mars" } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/circulation", + "surface form": "flew" + } + ] + }, + { + "id": "213", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Show me all Czech movies.", + "keywords": "Czech movies" + } + ], + "query": { + "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Film> ; <http://dbpedia.org/ontology/country> <http://dbpedia.org/resource/Czech_Republic> }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Red_Baron_(2008_film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rebelov\u00e9" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Goat_Story" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Last_Train_(2006_film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Ninth_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Goat_Story_2" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Illusionist_(2006_film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hard_to_Be_a_God_(2013_film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Body_Without_Soul" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Divided_We_Fall_(film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Witnesses_(film_series)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ro(c)k_podvra\u0165\u00e1k\u016f" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Magical_Duvet" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tobruk_(2008_film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Choking_Hazard" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bach's_Fight_for_Freedom" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Brothers_Grimm_(film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Life_and_Extraordinary_Adventures_of_Private_Ivan_Chonkin" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cosy_Dens" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bad_Company_(2002_film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/One_Night_in_One_City" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Cycle_(2009_film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Year_of_the_Devil" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Oliver_Twist_(2005_film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/ROMing" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Not_Angels_But_Angels" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Shoes_(2012_film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sk\u0159\u00edtek" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/V\u00e1clav_(film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Visitors:_Bastille_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/\u017delary" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Golet_v_\u00fadol\u00ed" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Solomon_Kane_(film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Janosik._Prawdziwa_historia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lea_(film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/In_the_Mirror_of_Maya_Deren" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Babicka_(2003_film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Krut\u00e9_radosti" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pusinky" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Shadow_over_Prague" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/All_My_Loved_Ones" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Pagan_Queen" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kooky" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Normal_(2009_film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Snake_Brothers" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Little_Otik" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Stolen_Kosovo" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Something_Like_Happiness" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Revenge_of_the_Whore" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Czech_Republic", + "surface form": "Czech movies" + }, + { + "URI": "http://dbpedia.org/resource/The_Movies_(film)", + "surface form": "Czech movies" + } + ], + "relations": [ + { "URI": "http://dbpedia.org/ontology/show", "surface form": "show" }, + { "URI": "http://dbpedia.org/ontology/country", "surface form": "" } + ] + }, + { + "id": "209", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Give me all taikonauts.", + "keywords": "taikonauts" + } + ], + "query": { + "sparql": "SELECT DISTINCT ?uri WHERE { { ?uri a <http://dbpedia.org/ontology/Astronaut> ; <http://dbpedia.org/ontology/nationality> <http://dbpedia.org/resource/People's_Republic_of_China> } UNION { ?uri a <http://dbpedia.org/ontology/Astronaut> ; <http://dbpedia.org/ontology/nationality> <http://dbpedia.org/resource/China> } }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tao_Jiali" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nie_Haisheng" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Fei_Junlong" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Zhai_Zhigang" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Zhang_Xiaoguang" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chen_Dong_(astronaut)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jing_Haipeng" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Astronaut", + "surface form": "Taikonauts" + } + ], + "relations": [] + }, + { + "id": "105", + "answertype": "resource", + "aggregation": true, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Which countries have more than ten volcanoes?", + "keywords": "countries, more than ten volcanoes" + } + ], + "query": { + "sparql": "SELECT DISTINCT ?uri WHERE { ?x a <http://dbpedia.org/ontology/Volcano> ; <http://dbpedia.org/ontology/locatedInArea> ?uri . ?uri a <http://dbpedia.org/ontology/Country> } GROUP BY ?uri HAVING ( COUNT(?x) > 10 )" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ecuador" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/El_Salvador" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Guatemala" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Japan" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bolivia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Russia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ethiopia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Colombia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/United_States" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Argentina" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Indonesia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chile" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Papua_New_Guinea" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Countries_of_the_United_Kingdom", + "surface form": "countries" + }, + { + "URI": "http://dbpedia.org/resource/Volcanoes_National_Park", + "surface form": "volcanoes" + } + ], + "relations": [] + }, + { + "id": "52", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Give me all movies with Tom Cruise.", + "keywords": "movies, tom, cruise" + } + ], + "query": { + "sparql": "PREFIX res: <http://dbpedia.org/resource/> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Film { ?uri prop:starring res:Tom_Cruise } UNION { ?uri onto:starring res:Tom_Cruise } OPTIONAL { ?uri rdfs:label ?string FILTER ( lang(?string) = \"en\" ) } }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/All_the_Right_Moves_(film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Collateral_(film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Interview_with_the_Vampire_(film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Outsiders_(film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Far_and_Away" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Last_Samurai" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Top_Gun" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Risky_Business" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/A_Few_Good_Men" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Color_of_Money" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Mummy_(2017_film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jerry_Maguire" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Legend_(1985_film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vanilla_Sky" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Valkyrie_(film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Knight_and_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lions_for_Lambs" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mission:_Impossible_(film_series)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cocktail_(1988_film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mission:_Impossible_(film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Born_on_the_Fourth_of_July_(film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Magnolia_(film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Firm_(1993_film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Minority_Report_(film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rain_Man" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Losin'_It" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Tom_Cruise", + "surface form": "Tom Cruise" + } + ], + "relations": [ + { "URI": "http://dbpedia.org/ontology/film", "surface form": "movies" } + ] + }, + { + "id": "102", + "answertype": "date", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "When did Dracula's creator die?", + "keywords": "Dracula, creator, die" + } + ], + "query": { + "sparql": "SELECT DISTINCT xsd:date(?date) WHERE { <http://dbpedia.org/resource/Count_Dracula> <http://dbpedia.org/ontology/creator> ?x . ?x <http://dbpedia.org/ontology/deathDate> ?date. }" + }, + "answers": [ + { + "head": { "vars": ["date"] }, + "results": { + "bindings": [ + { "date": { "type": "literal", "value": "1912-04-20" } } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Count_Dracula", + "surface form": "Dracula" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/property/producer", + "surface form": " creator" + }, + { + "URI": "http://dbpedia.org/ontology/deathDate", + "surface form": "die" + } + ] + }, + { + "id": "21", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Who created English Wikipedia?", + "keywords": "created, english, wikipedia" + } + ], + "query": { + "sparql": "PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT ?uri WHERE { <http://dbpedia.org/resource/Wikipedia> onto:author ?uri }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jimmy_Wales" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Larry_Sanger" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/English_Wikipedia", + "surface form": "English Wikipedia" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/author", + "surface form": "created" + } + ] + }, + { + "id": "34", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Give me all female German chancellors.", + "keywords": "German chancellor, female" + } + ], + "query": { + "sparql": "PREFIX res: <http://dbpedia.org/resource/> PREFIX dbp: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Chancellor_of_Germany dbp:incumbent ?uri }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Angela_Merkel" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/List_of_German_female_artists", + "surface form": "female German chancellors" + } + ], + "relations": [] + }, + { + "id": "145", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Who owns Aldi?", + "keywords": "own, Aldi" + } + ], + "query": { + "sparql": "PREFIX res: <http://dbpedia.org/resource/> PREFIX dbp: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Aldi dbp:founders ?uri }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Theo_Albrecht" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Karl_Albrecht" + } + } + ] + } + } + ], + "entities": [ + { "URI": "http://dbpedia.org/resource/Aldi", "surface form": "Aldi" } + ], + "relations": [ + { "URI": "http://dbpedia.org/ontology/family", "surface form": "owns" } + ] + }, + { + "id": "154", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Which books were written by Danielle Steel?", + "keywords": "books, written, danielle, steel" + } + ], + "query": { + "sparql": "PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX foaf: <http://xmlns.com/foaf/0.1/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT ?uri WHERE { ?uri rdf:type onto:Book ; onto:author <http://dbpedia.org/resource/Danielle_Steel> }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Thurston_House_(novel)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Message_from_Nam" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Daddy_(novel)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Toxic_Bachelors" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_House_(novel)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Five_Days_in_Paris" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/H.R.H._(novel)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Passion's_Promise" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Honor_Thyself" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/A_Good_Woman_(novel)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Amazing_Grace_(novel)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Betrayal_(Steel_novel)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/A_Perfect_Stranger" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Fine_Things" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Matters_of_the_Heart_(novel)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Zoya_(novel)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Miracle_(novel)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Big_Girl_(novel)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Coming_Out_(novel)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Silent_Honor" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Accident_(novel)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Season_of_Passion" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ransom_(Steel_novel)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mixed_Blessings_(novel)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jewels_(novel)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Southern_Lights_(novel)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Wanderlust_(Steel_novel)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Full_Circle_(novel)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/One_Day_at_a_Time_(novel)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sunset_in_St._Tropez" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Echoes_(Steel_novel)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Gift_(Steel_novel)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Crossings_(Steel_novel)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/No_Greater_Love_(novel)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Impossible_(novel)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Second_Chance_(Steel_novel)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Special_Delivery_(novel)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Family_Album_(novel)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Now_and_Forever_(novel)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rogue_(novel)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hotel_Vendome_(novel)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Friends_Forever_(novel)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Safe_Harbour_(novel)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kaleidoscope_(novel)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sisters_(Steel_novel)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bungalow_2" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Family_Ties_(novel)" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Danielle_Steel", + "surface form": "Danielle Steel" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/volume", + "surface form": "books" + }, + { + "URI": "http://dbpedia.org/ontology/writer", + "surface form": "written" + } + ] + }, + { + "id": "198", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Who was influenced by Socrates?", + "keywords": "influenced, Socrated" + } + ], + "query": { + "sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/influencedBy> <http://dbpedia.org/resource/Socrates> }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Peter_Kreeft" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Epictetus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Seyhan_Kurt" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Allan_Bloom" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Diogenes_of_Sinope" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Georg_Wilhelm_Friedrich_Hegel" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lucian" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Euclid_of_Megara" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pyrrho" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/John_Henry_Newman__Western_philosophy__1" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Niccol\u00f2_Machiavelli" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Aristippus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Edmund_Burke" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Traian_Br\u0103ileanu" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Karl_Popper" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hannah_Arendt" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Aristotle" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ya\u015far_Nuri_\u00d6zt\u00fcrk" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Plato" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Antisthenes" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Leo_Strauss" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/S\u00f8ren_Kierkegaard" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Socrates", + "surface form": "Socrates" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/influenced", + "surface form": "influenced" + } + ] + }, + { + "id": "162", + "answertype": "number", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "How deep is Lake Chiemsee?", + "keywords": "Lake Chiemsee, depth" + } + ], + "query": { + "sparql": "SELECT DISTINCT ?n WHERE { <http://dbpedia.org/resource/Chiemsee> <http://dbpedia.org/ontology/maximumDepth> ?n }" + }, + "answers": [ + { + "head": { "vars": ["c"] }, + "results": { + "bindings": [{ "c": { "type": "literal", "value": "72.7" } }] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Chiemsee", + "surface form": "Lake Chiemsee" + } + ], + "relations": [ + { "URI": "http://dbpedia.org/ontology/capital", "surface form": "deep" } + ] + }, + { + "id": "212", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Which companies work in the aerospace industry as well as in medicine?", + "keywords": "company, aerospace industry, medicine" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { ?uri a dbo:Company ; dbo:industry dbr:Aerospace ; dbo:industry dbr:Medical }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/ATI_425_Titanium_Alloy" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Radiall" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Companies_listed_on_the_New_York_Stock_Exchange_(J)", + "surface form": "companies" + }, + { + "URI": "http://dbpedia.org/resource/Medicine", + "surface form": "medicine" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/service", + "surface form": "work" + }, + { + "URI": "http://dbpedia.org/property/industry", + "surface form": "aerospace industry" + } + ] + }, + { + "id": "96", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Which professional surfers were born on the Philippines?", + "keywords": "professional surfer, born, Philippines" + } + ], + "query": { + "sparql": "PREFIX dbr: <http://dbpedia.org/resource/> PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { ?uri dbo:occupation dbr:Surfer ; dbo:birthPlace res:Philippines }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Marcus_Adoro" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Philippines", + "surface form": "Philippines" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/property/authority", + "surface form": "professional surfers" + }, + { + "URI": "http://dbpedia.org/ontology/birthPlace", + "surface form": "born" + } + ] + }, + { + "id": "40", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Who were the parents of Queen Victoria?", + "keywords": "parents, Queen Victoria" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Queen_Victoria dbo:parent ?uri }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Princess_Victoria_of_Saxe-Coburg-Saalfeld" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Prince_Edward,_Duke_of_Kent_and_Strathearn" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Queen_Victoria", + "surface form": "Queen Victoria" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/parent", + "surface form": "parents" + } + ] + }, + { + "id": "79", + "answertype": "boolean", + "aggregation": false, + "onlydbo": false, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Are there any castles in the United States?", + "keywords": "castles, United States" + } + ], + "query": { + "sparql": "PREFIX dct: <http://purl.org/dc/terms/> PREFIX dbc: <http://dbpedia.org/resource/Category:> ASK WHERE { ?uri dct:subject dbc:Castles_in_the_United_States }" + }, + "answers": [{ "head": {}, "results": {}, "boolean": true }], + "entities": [ + { + "URI": "http://dbpedia.org/resource/United_States", + "surface form": "United States" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/class", + "surface form": "castles" + } + ] + }, + { + "id": "141", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Which languages are spoken in Estonia?", + "keywords": "language, spoken, Estonia" + } + ], + "query": { + "sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/spokenIn> <http://dbpedia.org/resource/Estonia> }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Laiuse_Romani_language" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Estonian_Sign_Language" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Seto_dialect" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Russian_Sign_Language" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Baltic_Romani" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/V\u00f5ro_language" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Estonian_language" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Modern_Swedish" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Estonia", + "surface form": "Estonia" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/language", + "surface form": "languages" + }, + { + "URI": "http://dbpedia.org/ontology/spokenIn", + "surface form": "spoken" + } + ] + }, + { + "id": "80", + "answertype": "resource", + "aggregation": false, + "onlydbo": false, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Give me a list of all critically endangered birds.", + "keywords": "list, critically endangered birds" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dct: <http://purl.org/dc/terms/> PREFIX dbc: <http://dbpedia.org/resource/Category:> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri ?p WHERE { ?uri rdf:type dbo:Bird { ?uri dbo:conservationStatus \"CR\" } UNION { ?uri dct:subject dbc:Critically_endangered_animals } }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Fatu_Hiva_monarch" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rota_white-eye" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Seychelles_paradise_flycatcher" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/White-eyed_river_martin" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Giant_ibis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pink-headed_duck" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Okinawa_woodpecker" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Carrizal_seedeater" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Makira_woodhen" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bahama_oriole" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Amsterdam_albatross" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mauritius_olive_white-eye" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bryan's_shearwater" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tahiti_monarch" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Christmas_frigatebird" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Waved_albatross" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Medium_tree_finch" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/White-bellied_heron" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Swift_parrot" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Blue-winged_racket-tail" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sumatran_ground_cuckoo" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chinese_crested_tern" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sangihe_shrikethrush" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Floreana_mockingbird" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/\u02bbAkohekohe" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hoary-throated_spinetail" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Millerbird" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Blue-throated_macaw" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Uluguru_bushshrike" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Blue-banded_kingfisher" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Zapata_rail" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Banggai_crow" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Fiji_petrel" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dusky_starfrontlet" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Stresemann's_bristlefront" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Socorro_mockingbird" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Siau_scops_owl" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/S\u00e3o_Tom\u00e9_grosbeak" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Slender-billed_curlew" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cherry-throated_tanager" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/New_Caledonian_rail" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Brazilian_merganser" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Grenada_dove" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cone-billed_tanager" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mangrove_finch" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Taita_thrush" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Blue-fronted_lorikeet" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ivory-billed_woodpecker" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Red-vented_cockatoo" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Indian_vulture" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sociable_lapwing" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Red-headed_vulture" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/R\u00fcppell's_vulture" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Helmeted_hornbill" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Santa_Marta_wren" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Siberian_crane" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/White-collared_kite" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Balearic_shearwater" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/S\u00e3o_Tom\u00e9_fiscal" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Laysan_duck" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Taita_apalis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Yellow-crested_cockatoo" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Red-throated_lorikeet" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Marquesan_kingfisher" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Antioquia_brush_finch" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Northern_bald_ibis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Grey-breasted_parakeet" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Puaiohi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Black_stilt" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Maui_parrotbill" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kaua\u02bbi_nukupu\u02bbu" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pernambuco_pygmy_owl" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mangareva_kingfisher" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Juan_Fern\u00e1ndez_firecrown" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Golden_white-eye" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Long-billed_forest_warbler" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/White-winged_guan" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Magenta_petrel" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Coxen's_fig_parrot" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/California_condor" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sulu_hornbill" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Flores_hawk-eagle" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Alagoas_foliage-gleaner" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nihoa_millerbird" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Spoon-billed_sandpiper" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/S\u00e3o_Tom\u00e9_ibis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jerdon's_courser" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Raso_lark" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Colorful_puffleg" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hooded_vulture" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Western_ground_parrot" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/R\u00e9union_cuckooshrike" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Black-hooded_coucal" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tooth-billed_pigeon" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chestnut-capped_piha" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rio_Branco_antbird" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sangihe_white-eye" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jatayu_Conservation_Breeding_Centre,_Pinjore__CR__1" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gough_finch" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sulu_bleeding-heart" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Munchique_wood_wren" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/New_Caledonian_owlet-nightjar" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/\u2018Akeke\u2018e" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Black-breasted_puffleg" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chatham_shag" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Isabela_oriole" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Javan_green_magpie" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Karthala_scops_owl" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Blue-billed_curassow" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Malherbe's_parakeet" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mindoro_bleeding-heart" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Junin_grebe" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chilean_woodstar" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Madagascan_fish_eagle" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Horned_curassow" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cerulean_paradise_flycatcher" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Anjouan_scops_owl" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Great_Indian_bustard" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Masafuera_rayadito" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nightingale_reed_warbler" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Baer's_pochard" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Edwards's_pheasant" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gorgeted_puffleg" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Black-winged_starling" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Forest_owlet" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Walden's_hornbill" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Townsend's_shearwater" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Beck's_petrel" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Blue-bearded_helmetcrest" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/White-backed_vulture" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/White-rumped_vulture" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sira_curassow" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/\u02bbAkikiki" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Glaucous_macaw" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bengal_florican" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Philippine_eagle" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gran_Canaria_blue_chaffinch" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cebu_flowerpecker" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pohnpei_starling" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Black-chinned_monarch" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Blue-crowned_laughingthrush" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Djibouti_francolin" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bali_myna" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mariana_crow" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bugun_liocichla" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Negros_fruit_dove" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Alagoas_antwren" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Palila" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Orange-bellied_parrot" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/White-shouldered_ibis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rio_de_Janeiro_antwren" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Puerto_Rican_amazon" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cozumel_thrasher" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Royal_cinclodes" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Semper's_warbler" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Silvery_pigeon" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Polynesian_ground_dove" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nihoa_finch" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Madagascan_pochard" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sapphire-bellied_hummingbird" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bogot\u00e1_sunangel" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Niceforo's_wren" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Purple-winged_ground_dove" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mascarene_petrel" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/New_Caledonian_lorikeet" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Saipan_reed_warbler" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ridgway's_hawk" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Slender-billed_vulture" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Maui_nukupu\u02bbu" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Negros_bleeding-heart" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Crow_honeyeater" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Trinidad_piping_guan" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/White-bellied_cinclodes" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Regent_honeyeater" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Moheli_scops_owl" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tristan_albatross" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Saint_Helena_plover" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Montserrat_oriole" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gal\u00e1pagos_petrel" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cuban_kite" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/R\u00fcck's_blue_flycatcher" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Blue-eyed_ground_dove" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Short-crested_coquette" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Iquitos_gnatcatcher" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Araripe_manakin" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/White-chested_white-eye" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chatham_pigeon" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Niau_kingfisher" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hooded_grebe" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/New_Zealand_storm_petrel" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Fuertes's_parrot" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mara\u00f1\u00f3n_spinetail" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Liberian_greenbul" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Urrao_antpitta" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pr\u00edncipe_thrush" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kinglet_calyptura" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/White-headed_vulture" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/White-winged_flufftail" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Endangered_Species_(H.A.W.K._album)", + "surface form": "Endangered" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/principal", + "surface form": "critically" + }, + { "URI": "http://dbpedia.org/ontology/date", "surface form": "birds" } + ] + }, + { + "id": "159", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Which countries are connected by the Rhine?", + "keywords": "Rhine, country" + } + ], + "query": { + "sparql": "PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> PREFIX dbp: <http://dbpedia.org/property/> PREFIX dbo: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { {<http://dbpedia.org/resource/Rhine> dbo:country ?uri } UNION {dbr:Rhine dbp:country ?uri} }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Liechtenstein" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Switzerland" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kingdom_of_France" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Austria" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Netherlands" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Germany" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Countries_of_the_United_Kingdom", + "surface form": "countries" + }, + { "URI": "http://dbpedia.org/resource/Rhine", "surface form": "Rhine" } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/related", + "surface form": "connected" + } + ] + }, + { + "id": "107", + "answertype": "resource", + "aggregation": false, + "onlydbo": false, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Who was the father of Queen Elizabeth II?", + "keywords": "father, Queen Elizabeth II" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT * WHERE { res:Elizabeth_II dbo:parent ?uri . ?uri <http://xmlns.com/foaf/0.1/gender> \"male\"@en }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/George_VI" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Elizabeth_II", + "surface form": "Queen Elizabeth II" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/parent", + "surface form": "father" + } + ] + }, + { + "id": "163", + "answertype": "resource", + "aggregation": false, + "onlydbo": false, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Give me all chemical elements.", + "keywords": "chemical elements" + } + ], + "query": { + "sparql": "PREFIX dct: <http://purl.org/dc/terms/> PREFIX dbc: <http://dbpedia.org/resource/Category:> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX owl: <http://www.w3.org/2002/07/owl#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type owl:Thing ; dct:subject dbc:Chemical_elements }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gallium" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Iron" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Magnesium" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nobelium" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Caesium" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Xenon" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Zirconium" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Aluminium" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Neon" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Potassium" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Einsteinium" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sodium" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lawrencium" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Molybdenum" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bismuth" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nickel" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ununseptium" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Thulium" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rhenium" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rubidium" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tellurium" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Scandium" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tungsten" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Americium" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Germanium" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ununtrium" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cerium" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hydrogen" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vanadium" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Palladium" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Boron" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gadolinium" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Praseodymium" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Iridium" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ruthenium" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hassium" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Erbium" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Iodine" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Radium" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Seaborgium" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Technetium" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Arsenic" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Radon" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Astatine" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lithium" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Carbon" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Titanium" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Uranium" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Neptunium" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Fluorine" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Plutonium" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nitrogen" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tantalum" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Protactinium" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Darmstadtium" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chromium" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Krypton" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Platinum" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Zinc" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Oxygen" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Argon" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chemical_element" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Francium" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sulfur" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Samarium" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Holmium" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dubnium" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Osmium" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Indium" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Phosphorus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cobalt" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chlorine" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Symbol_(chemistry)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hafnium" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gold" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bohrium" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dysprosium" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lead" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Beryllium" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Meitnerium" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Californium" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Barium" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cadmium" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ytterbium" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Berkelium" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Roentgenium" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Polonium" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Thallium" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Helium" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Yttrium" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lanthanum" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rhodium" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Thorium" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Niobium" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Flerovium" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mercury_(element)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Curium" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Calcium" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Silicon" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Europium" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ununoctium" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Copernicium" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Selenium" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tin" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Silver" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Mystery_of_Matter_(film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mendelevium" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Neodymium" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Fermium" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Manganese" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rutherfordium" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bromine" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ununpentium" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Actinium" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Antimony" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Strontium" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Terbium" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lutetium" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Copper" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Sand_casting", + "surface form": "chemical elements" + } + ], + "relations": [] + }, + { + "id": "211", + "answertype": "resource", + "aggregation": false, + "onlydbo": false, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Give me all American presidents of the last 20 years.", + "keywords": "American presidents, last 20 years" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbp: <http://dbpedia.org/property/> PREFIX dct: <http://purl.org/dc/terms/> PREFIX dbc: <http://dbpedia.org/resource/Category:> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Person ; dct:subject dbc:Presidents_of_the_United_States ; dbo:activeYearsEndDate ?termEnd FILTER ( ( year(now()) - year(?termEnd) ) <= 20 ) }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/George_W._Bush" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bill_Clinton" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Barack_Obama" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Organization_of_American_States", + "surface form": "American presidents" + }, + { + "URI": "http://dbpedia.org/resource/American_Presidents:_Life_Portraits", + "surface form": "American presidents" + }, + { "URI": "http://dbpedia.org/resource/20", "surface form": "20" } + ], + "relations": [ + { "URI": "http://dbpedia.org/ontology/country", "surface form": "" } + ] + }, + { + "id": "51", + "answertype": "date", + "aggregation": false, + "onlydbo": false, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "When is the movie Worst Case Scenario going to be in cinemas in the Netherlands?", + "keywords": "movie, Worst Case Scenario, cinema, Netherlands" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> PREFIX dbr: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX foaf: <http://xmlns.com/foaf/0.1/> SELECT DISTINCT ?rel WHERE { <http://dbpedia.org/resource/Worst_Case_Scenario_(film)> ?p ?o ; dbo:releaseDate ?rel FILTER contains(lcase(str(?o)), \"netherlands\") }" + }, + "answers": [ + { + "head": { "vars": ["date"] }, + "results": { + "bindings": [ + { "date": { "type": "literal", "value": "2008-01-30" } } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Worst-case_scenario", + "surface form": "movie Worst Case Scenario" + }, + { + "URI": "http://dbpedia.org/resource/Netherlands", + "surface form": "Netherlands" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/picture", + "surface form": "cinemas" + } + ] + }, + { + "id": "144", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Whom did Lance Bass marry?", + "keywords": "wife, Lance Bass" + } + ], + "query": { + "sparql": "SELECT DISTINCT ?uri WHERE { {<http://dbpedia.org/resource/Lance_Bass> dbo:spouse ?uri} UNION {?uri dbo:spouse <http://dbpedia.org/resource/Lance_Bass>} }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Michael_Turchin" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Lance_Bass", + "surface form": "Lance Bass" + } + ], + "relations": [ + { "URI": "http://dbpedia.org/ontology/spouse", "surface form": "marry" } + ] + }, + { + "id": "167", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Which subsidiary of TUI Travel serves both Glasgow and Dublin?", + "keywords": "subsidiary, TUI Travel, serve, Glasgow, Dublin" + } + ], + "query": { + "sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/TUI_Travel> <http://dbpedia.org/ontology/subsidiary> ?uri . ?uri <http://dbpedia.org/ontology/targetAirport> <http://dbpedia.org/resource/Glasgow_International_Airport> ; <http://dbpedia.org/ontology/targetAirport> <http://dbpedia.org/resource/Dublin_Airport> }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Thomson_Airways" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Glasgow_Airport", + "surface form": "Glasgow" + }, + { + "URI": "http://dbpedia.org/resource/Dublin_Airport", + "surface form": "Dublin" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/subsidiary", + "surface form": "subsidiary" + }, + { "URI": "http://dbpedia.org/ontology/order", "surface form": "serves" } + ] + }, + { + "id": "131", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "What languages are spoken in Pakistan?", + "keywords": "languages, Pakistan" + } + ], + "query": { + "sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Pakistan> <http://dbpedia.org/ontology/language> ?uri }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gawar-Bati_language" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/English_language" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Balochi_language" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Urdu" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Balti_language" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Punjabi_language" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kashmiri_language" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sindhi_language" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Domaaki_language" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Brahui_language" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Khowar_language" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kalash_language" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dameli_language" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Burushaski" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pashto_language" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Shina_language" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Pakistan", + "surface form": "Pakistan" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/language", + "surface form": "languages" + }, + { + "URI": "http://dbpedia.org/ontology/spokenIn", + "surface form": "spoken" + } + ] + }, + { + "id": "120", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Who is the daughter of Bill Clinton married to?", + "keywords": "Bill Clinton, daughter, married" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> PREFIX dbp: <http://dbpedia.org/property/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { dbr:Bill_Clinton dbo:child ?child . ?child dbo:spouse ?uri . ?uri rdfs:label ?string }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Marc_Mezvinsky" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Bill_Clinton", + "surface form": "Bill Clinton" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/child", + "surface form": "daughter" + }, + { + "URI": "http://dbpedia.org/ontology/spouse", + "surface form": "married" + } + ] + }, + { + "id": "164", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Who was on the Apollo 11 mission?", + "keywords": "involved people, Apollo 11 mission" + } + ], + "query": { + "sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Apollo_11> <http://dbpedia.org/property/crewMembers> ?uri }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Buzz_Aldrin" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Neil_Armstrong" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Michael_Collins_(astronaut)" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Apollo_11", + "surface form": "Apollo 11 mission" + } + ], + "relations": [] + }, + { + "id": "88", + "answertype": "number", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "What is the wavelength of Indigo?", + "keywords": "wavelength, indigo" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?n WHERE { dbr:Indigo dbo:wavelength ?n }" + }, + "answers": [ + { + "head": { "vars": ["c"] }, + "results": { + "bindings": [{ "c": { "type": "literal", "value": "4.5e-07" } }] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Indigo", + "surface form": "Indigo" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/wavelength", + "surface form": "wavelength" + } + ] + }, + { + "id": "151", + "answertype": "string", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Give me all B-sides of the Ramones.", + "keywords": "Ramones, B-sides" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX dbp: <http://dbpedia.org/property/> SELECT DISTINCT ?string WHERE { ?x dbo:musicalArtist res:Ramones ; dbo:bSide ?string }" + }, + "answers": [ + { + "head": { "vars": ["string"] }, + "results": { + "bindings": [ + { + "string": { + "type": "literal", + "value": "\"No-One Could Ever Love You More\" (Norway)" + } + }, + { "string": { "type": "literal", "value": "\"Babysitter\"" } }, + { "string": { "type": "literal", "value": "Censorshit" } }, + { "string": { "type": "literal", "value": "\"I Don't Care\"" } }, + { + "string": { + "type": "literal", + "value": "\"Go Home Ann\" (12\" only)" + } + }, + { "string": { "type": "literal", "value": "\"Gee Girl\"" } }, + { + "string": { + "type": "literal", + "value": "\"Miss Joan And Mr. Sam\"" + } + }, + { + "string": { + "type": "literal", + "value": "\"Do You Wanna Dance?\"" + } + }, + { + "string": { + "type": "literal", + "value": "\"California Sun\" / \"I Dont Wanna Walk Around With You\" (live)" + } + }, + { + "string": { + "type": "literal", + "value": "\"Daytime Dilemma (Dangers of Love)\"" + } + }, + { + "string": { + "type": "literal", + "value": "\"Saturday Night Out\"" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/The_B-Sides", + "surface form": "B-sides of the Ramones" + } + ], + "relations": [] + }, + { + "id": "63", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Who was called Scarface?", + "keywords": "who , called, Scarface" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> SELECT ?uri WHERE { ?uri dbo:alias ?alias FILTER contains(lcase(?alias), \"scarface\") }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Scarface_(rapper)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Al_Capone" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Scarface", + "surface form": "Scarface" + } + ], + "relations": [ + { "URI": "http://dbpedia.org/ontology/alias", "surface form": "called" } + ] + }, + { + "id": "27", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Which rivers flow into the North Sea?", + "keywords": "rivers, flow, North Sea" + } + ], + "query": { + "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/River> ; <http://dbpedia.org/ontology/riverMouth> <http://dbpedia.org/resource/North_Sea> }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ems_(river)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/River_Crouch" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Asheldham_Brook" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/River_Stour,_Suffolk" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/River_Forth" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/River_South_Esk" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Weser" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Elbe" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Elliot_Water" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/North_Sea_Canal" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/River_Tay" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/River_Tweed" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Eider_(river)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Oude_Rijn_(Utrecht_and_South_Holland)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Barry_Burn" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/River_Thames" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rhine" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/North_Sea", + "surface form": "North Sea" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/operator", + "surface form": "rivers" + }, + { "URI": "http://dbpedia.org/property/float", "surface form": "flow" } + ] + }, + { + "id": "156", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Where is Fort Knox located?", + "keywords": "where , Fort Knox, located" + } + ], + "query": { + "sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Fort_Knox> <http://dbpedia.org/ontology/location> ?uri. ?uri a <http://dbpedia.org/ontology/Place>. }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kentucky" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Fort_Knox", + "surface form": "Fort Knox" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/property/location", + "surface form": "located" + } + ] + }, + { + "id": "207", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Which daughters of British earls died at the same place they were born at?", + "keywords": "daughter, British earl, die, same, place, born" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX yago: <http://dbpedia.org/class/yago/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type yago:WikicatDaughtersOfBritishEarls ; dbo:birthPlace ?x ; dbo:deathPlace ?y FILTER ( ?x = ?y ) }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lady_Augusta_Murray" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Eleanor_Holland,_Countess_of_Salisbury" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Joan_FitzGerald,_Countess_of_Carrick" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Eleanor_Beauchamp,_Duchess_of_Somerset" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Agnes_Keith,_Countess_of_Moray" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Katherine_Neville,_Baroness_Hastings" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mary_Elphinstone,_Lady_Elphinstone" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Diana_Russell,_Duchess_of_Bedford" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Joan_of_Kent" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ela_of_Salisbury,_3rd_Countess_of_Salisbury" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Anne_Hyde" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Isabel_de_Clare,_4th_Countess_of_Pembroke" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lady_Brigid_Guinness" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Daughters_of_the_Dust", + "surface form": "daughters" + }, + { + "URI": "http://dbpedia.org/resource/United_Kingdom", + "surface form": "British earls" + }, + { + "URI": "http://dbpedia.org/resource/Earls_Barton", + "surface form": "British earls" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/property/deathPlace", + "surface form": "died" + }, + { "URI": "http://dbpedia.org/ontology/place", "surface form": "place" }, + { + "URI": "http://dbpedia.org/ontology/birthPlace", + "surface form": "born" + }, + { "URI": "http://dbpedia.org/ontology/country", "surface form": "" } + ] + }, + { + "id": "24", + "answertype": "number", + "aggregation": true, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "How many emperors did China have?", + "keywords": "How many emperors, China" + } + ], + "query": { + "sparql": "SELECT COUNT(DISTINCT ?uri AS ?uri) WHERE { ?uri <http://dbpedia.org/property/title> <http://dbpedia.org/resource/Emperor_of_China> . }" + }, + "answers": [ + { + "head": { "vars": ["c"] }, + "results": { + "bindings": [{ "c": { "type": "literal", "value": "245" } }] + } + } + ], + "entities": [ + { "URI": "http://dbpedia.org/resource/China", "surface form": "China" } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/leader", + "surface form": "emperors" + } + ] + }, + { + "id": "133", + "answertype": "string", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "What are the names of the Teenage Mutant Ninja Turtles?", + "keywords": "names, Teenage Mutant Ninja Turtles" + } + ], + "query": { + "sparql": "PREFIX foaf:<http://xmlns.com/foaf/0.1/> SELECT DISTINCT ?s WHERE { <http://dbpedia.org/resource/Teenage_Mutant_Ninja_Turtles> <http://dbpedia.org/property/members> ?x . ?x foaf:givenName ?s }" + }, + "answers": [ + { + "head": { "vars": ["string"] }, + "results": { + "bindings": [ + { "string": { "type": "literal", "value": "Leonardo" } }, + { "string": { "type": "literal", "value": "Raphael" } }, + { "string": { "type": "literal", "value": "Donatello" } }, + { "string": { "type": "literal", "value": "Michelangelo" } } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Teenage_Mutant_Ninja_Turtles", + "surface form": "Teenage Mutant Ninja Turtles" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/athletics", + "surface form": "names" + } + ] + }, + { + "id": "103", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Where does Piccadilly start?", + "keywords": "Piccadilly, start" + } + ], + "query": { + "sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/routeStart> <http://dbpedia.org/resource/Piccadilly> }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dover_Street" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Piccadilly", + "surface form": "Piccadilly" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/routeStart", + "surface form": "start" + } + ] + }, + { + "id": "165", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "What is the name of the university where Obama's wife studied?", + "keywords": "school name, Obama's wife, study" + } + ], + "query": { + "sparql": "SELECT DISTINCT ?s WHERE { <http://dbpedia.org/resource/Barack_Obama> <http://dbpedia.org/ontology/spouse> ?x . ?x <http://dbpedia.org/ontology/almaMater> ?s }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Harvard_Law_School" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Princeton_University" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/University_of_Alabama", + "surface form": "Obama" + } + ], + "relations": [ + { "URI": "http://dbpedia.org/property/name", "surface form": "name" }, + { + "URI": "http://dbpedia.org/ontology/university", + "surface form": "university" + }, + { + "URI": "http://dbpedia.org/property/spouse", + "surface form": " wife" + }, + { + "URI": "http://dbpedia.org/ontology/office", + "surface form": "studied" + } + ] + }, + { + "id": "108", + "answertype": "date", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "When did Paraguay proclaim its independence?", + "keywords": "Paraguay, proclaim, independence" + } + ], + "query": { + "sparql": "SELECT DISTINCT ?date WHERE { <http://dbpedia.org/resource/Paraguay> <http://dbpedia.org/ontology/foundingDate> ?date }" + }, + "answers": [ + { + "head": { "vars": ["date"] }, + "results": { + "bindings": [ + { "date": { "type": "literal", "value": "1811-05-14" } }, + { "date": { "type": "literal", "value": "1811-05-15" } } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Paraguay", + "surface form": "Paraguay" + }, + { + "URI": "http://dbpedia.org/resource/Independence", + "surface form": "independence" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/state", + "surface form": "proclaim" + } + ] + }, + { + "id": "15", + "answertype": "number", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "How short is the shortest active NBA player?", + "keywords": "How short, shortest active player, NBA" + } + ], + "query": { + "sparql": "SELECT DISTINCT ?n WHERE { ?x a <http://dbpedia.org/ontology/BasketballPlayer> ; <http://dbpedia.org/ontology/league> <http://dbpedia.org/resource/National_Basketball_Association> ; <http://dbpedia.org/ontology/height> ?n FILTER NOT EXISTS { ?x <http://dbpedia.org/ontology/activeYearsEndYear> ?d } } ORDER BY ASC(?n) OFFSET 0 LIMIT 1" + }, + "answers": [ + { + "head": { "vars": ["c"] }, + "results": { + "bindings": [{ "c": { "type": "literal", "value": "1.7526" } }] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/National_Basketball_Association", + "surface form": "NBA" + }, + { + "URI": "http://dbpedia.org/resource/Shortest_job_next", + "surface form": "shortest active player" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/thumbnail", + "surface form": "short" + } + ] + }, + { + "id": "45", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Where did Abraham Lincoln die?", + "keywords": "Abraham , Lincoln, die" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> SELECT DISTINCT ?uri WHERE { res:Abraham_Lincoln dbo:deathPlace ?uri }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Washington,_D.C." + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Petersen_House_(Washington,_D.C.)" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Abraham_Lincoln", + "surface form": "Abraham Lincoln" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/deathDate", + "surface form": "die" + } + ] + }, + { + "id": "82", + "answertype": "date", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "When was Jack Wolfskin founded?", + "keywords": "Jack Wolfskin, founded" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT xsd:date(?year) WHERE { res:Jack_Wolfskin dbo:foundingYear ?year }" + }, + "answers": [ + { + "head": { "vars": ["date"] }, + "results": { + "bindings": [ + { "date": { "type": "literal", "value": "1981-01-01" } } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Jack_Wolfskin", + "surface form": "Jack Wolfskin" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/foundingYear", + "surface form": "founded" + } + ] + }, + { + "id": "9", + "answertype": "resource", + "aggregation": false, + "onlydbo": false, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "In which city is the headquarter of Air China?", + "keywords": "city, headquarter, Air China" + } + ], + "query": { + "sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Air_China> <http://dbpedia.org/ontology/headquarter> ?uri . ?uri a <http://dbpedia.org/class/yago/City108524735> }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Beijing" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Air_China", + "surface form": "Air China" + } + ], + "relations": [ + { "URI": "http://dbpedia.org/ontology/city", "surface form": "city" }, + { + "URI": "http://dbpedia.org/ontology/headquarter", + "surface form": "headquarter" + } + ] + }, + { + "id": "201", + "answertype": "date", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "What is the founding year of the brewery that produces Pilsner Urquell?", + "keywords": "Pilsner Urquell, brewery, founding year" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> SELECT DISTINCT xsd:date(?num) WHERE { <http://dbpedia.org/resource/Pilsner_Urquell> <http://dbpedia.org/property/brewery> ?uri . ?uri dbo:foundingYear ?num }" + }, + "answers": [ + { + "head": { "vars": ["date"] }, + "results": { + "bindings": [ + { "date": { "type": "literal", "value": "1842-01-01" } } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Pilsner_Urquell", + "surface form": "Pilsner Urquell" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/foundingYear", + "surface form": "founding" + }, + { + "URI": "http://dbpedia.org/ontology/manufacturer", + "surface form": "brewery" + }, + { + "URI": "http://dbpedia.org/ontology/manufacturer", + "surface form": "produces" + } + ] + }, + { + "id": "171", + "answertype": "date", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "When did the Boston Tea Party take place?", + "keywords": "Boston Tea Party, take place" + } + ], + "query": { + "sparql": "SELECT DISTINCT ?d WHERE { <http://dbpedia.org/resource/Boston_Tea_Party> <http://dbpedia.org/property/date> ?d }" + }, + "answers": [ + { + "head": { "vars": ["date"] }, + "results": { + "bindings": [ + { "date": { "type": "literal", "value": "1773-12-16" } } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Boston_Tea_Party", + "surface form": "Boston Tea Party" + } + ], + "relations": [ + { "URI": "http://dbpedia.org/ontology/place", "surface form": "place" } + ] + }, + { + "id": "182", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Which animals are critically endangered?", + "keywords": "animal, critically endangered" + } + ], + "query": { + "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Animal> ; <http://dbpedia.org/ontology/conservationStatus> \"CR\" }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Alycaeus_balingensis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Riverine_rabbit" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Heliogomphus_nietneri" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Monopterus_desilvai" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Typhlogarra_widdowsoni" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Haplochromis_sp._'rainbow_sheller'" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Theodoxus_altenai" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Short_Samoan_tree_snail" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Seychelles_paradise_flycatcher" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/New_Caledonian_long-eared_bat" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chinese_giant_salamander" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Haplochromis_brownae" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Armenian_tortoise" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Achatinella_stewartii" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Orange-footed_pimpleback_mussel" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bulimulus_eschariferus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bulimulus_reibischi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hucho_bleekeri" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Antiguan_racer" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dendrotriton_cuchumatanus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Makira_woodhen" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Colophon_cassoni" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Psilorhynchus_tenura" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Northwest_African_cheetah" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pseudophoxinus_syriacus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Opisthostoma_decrespignyi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mauritius_olive_white-eye" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bryan's_shearwater" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Christmas_frigatebird" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Medium_tree_finch" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Aeolian_wall_lizard" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Conolophus_marthae" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lyriothemis_defonsekai" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Swift_parrot" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tomichia_tristis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Atelopus_onorei" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sumatran_ground_cuckoo" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Northern_river_shark" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chinese_crested_tern" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Plectrohyla_hartwegi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Parhoplophryne_usambarica" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lord_Howe_flax_snail" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Smoothback_angelshark" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pilalo_tree_frog" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Floreana_mockingbird" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Winged_mapleleaf" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Atelopus_eusebiodiazi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/\u02bbAkohekohe" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hong_Kong_grouper" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Azuero_spider_monkey" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Drepanosticta_montana" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mount_Kahuzi_climbing_mouse" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Millerbird" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bonytail_chub" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Uluguru_bushshrike" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Parachondrostoma_arrigonis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Plectrohyla_cembra" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Trachycystis_placenta" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/El_Hierro_giant_lizard" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Atelopus_muisca" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Angel_Island_mouse" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Partulina_dubia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Longcomb_sawfish" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Knipowitschia_mrakovcici" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dusky_starfrontlet" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cerion_nanus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vipera_wagneri" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Partula_langfordi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Eupropacris_abbreviata" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Achatinella_fuscobasis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Margarya_monodi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rio_Carauta_stubfoot_toad" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/S\u00e3o_Tom\u00e9_grosbeak" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bulimulus_duncanus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Slender-billed_curlew" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Myaka_(fish)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Colophon_berrisfordi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Orphan_salamander" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/San_Lorenzo_mouse" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bythiospeum_pfeifferi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Haplochromis_martini" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Haplochromis_aelocephalus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Brazilian_merganser" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Plectrohyla_celata" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Anabarilius_qiluensis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Santa_Monica_shieldback_katydid" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cone-billed_tanager" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Coregonus_trybomi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Haplochromis_crassilabris" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Islamia_hadei" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chuuk_flying_fox" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gray-shanked_douc" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Red-tailed_black_shark" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Idunella_sketi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Haplochromis_xenostoma" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kunming_catfish" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kanab_ambersnail" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Fat_Guam_partula" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Taita_thrush" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Elegant_frog" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Fiji_crested_iguana" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Blue-fronted_lorikeet" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Homoeodera_major" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Barbodes_flavifuscus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ivory-billed_woodpecker" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Zhou's_box_turtle" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cobitis_bilseli" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cookeconcha_contorta" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Atelopus_oxyrhynchus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kapcypridopsis_barnardi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Atelopus_minutulus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Acanthodactylus_harranensis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Flat_pigtoe" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Indian_vulture" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chinamococh_stream_frog" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Haplochromis_apogonoides" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Red-headed_vulture" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sunda_pangolin" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Euchondrus_ramonensis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rhabdalestes_leleupi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bedotia_sp._nov._'Manombo'" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Perbrinckia_glabra" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Largefin_pupfish" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ptychohyla_dendrophasma" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Synodontis_dekimpei" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/White-collared_kite" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hemistomia_yalayu" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chinese_sturgeon" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Striped_smooth-hound" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Plectrohyla_pachyderma" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Opanara_depasoapicata" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cyprinus_micristius" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Plectrohyla_calthula" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Brookesia_desperata" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Franklin's_bumblebee" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Boucardicus_fortistriatus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/West_African_wild_dog" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Taita_shrew" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Phoxinellus_dalmaticus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Scutiger_maculatus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Southern_Vietnamese_box_turtle" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Anisogomphus_solitaris" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Western_Nimba_toad" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Baja_Verapaz_salamander" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Geoscincus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bulimulus_tanneri" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Atelopus_peruensis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Labeo_lankae" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Wake's_hidden_salamander" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Albericus_siegfriedi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Phelsuma_pronki" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Betta_spilotogena" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Long-billed_forest_warbler" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Daggernose_shark" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Arabian_leopard" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ecnomiohyla_salvaje" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Paratilapia_sp._nov._'Vevembe'" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Clanwilliam_sandfish" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rio_Grande_monkeyface" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Speleoperipatus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Atelopus_balios" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bulimulus_sp._nov._'josevillani'" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/California_condor" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Philochortus_zolii" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Flores_hawk-eagle" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Muisk_vole" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Atelopus_seminiferus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Endodonta_apiculata" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lepidochrysops_lotana" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Angonoka_tortoise" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Barbodes_herrei" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Haematopinus_oliveri" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Red-finned_blue-eye" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Raso_lark" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Amur_leopard" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hooded_vulture" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Austrocordulia_leonardi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bulimulus_sp._nov._'krameri'" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Siau_Island_tarsier" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kaiser's_spotted_newt" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Acanthodactylus_mechriguensis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Arkansia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cecilioides_eulima" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dwarf_pebblesnail" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Seychelles_sheath-tailed_bat" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sangihe_white-eye" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cardioglossa_trifasciata" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Raorchestes_chlorosomma" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Conturbatia_crenata" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gough_finch" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Samoana_hamadryas" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pita_skate" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Munchique_wood_wren" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Black_mudalia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Opanara_perahuensis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pseudoniphargus_grandimanus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Boucardicus_fidimananai" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Yellow-headed_box_turtle" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Aaadonta_constricta_constricta" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Drepanosticta_submontana" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Plectrohyla_thorectes" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cachorrito_cabezon" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chatham_shag" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Haplochromis_guiarti" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cocoharpinia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Isabela_oriole" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sulawesi_forest_turtle" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Aphanius_richardsoni" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bermuda_rock_skink" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Atelopus_lynchi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Austrodontura_castletoni" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dark_pigtoe" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Manusela_mosaic-tailed_rat" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Schistura_papulifera" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Golden_mantella" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mindoro_bleeding-heart" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Junin_grebe" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Black_crested_gibbon" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chilean_woodstar" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Madagascan_fish_eagle" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Belgrandiella_styriaca" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cozumel_harvest_mouse" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cerulean_paradise_flycatcher" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cyclura_cychlura_figginsi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ingolfiella_longipes" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Brown_spider_monkey" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Eastern_long-beaked_echidna" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Paghman_stream_salamander" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cumberland_monkeyface_pearly_mussel" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rough_pigtoe_pearly_mussel" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ogasawarana_habei" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Copan_stream_frog" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sphaerophysa_dianchiensis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Prodontria_lewisi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dianchi_bullhead" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Partula_clara" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Opanara_duplicidentata" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Baer's_pochard" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Paraclinus_walkeri" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cyclura_ricordi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Edwards's_pheasant" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Black-winged_starling" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bulimulus_jacobi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Plectrohyla_ephemera" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Stomatepia_mongo" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ayumodoki" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Paretroplus_menarambo" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ganges_shark" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Uluguru_Mountain_Grasshopper" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Forest_owlet" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Colophon_montisatris" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Louisiana_pearlshell" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Woylie" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ellinopyg\u00f3steos" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Atelopus_coynei" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kurdistan_spotted_newt" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Odorrana_wuchuanensis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Beck's_petrel" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Blue-bearded_helmetcrest" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ac\u0131g\u00f6l_toothcarp" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/White-rumped_vulture" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Taylor's_salamander" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Coosa_moccasinshell" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cyclura_carinata_bartschi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Blue-eyed_spotted_cuscus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/\u02bbAkikiki" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Maltese_skate" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vaquita" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gammarus_desperatus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Monterrey_platyfish" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Megalagrion_nesiotes" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Baiji" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Speleoithona_bermudensis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Yanbaru_whiskered_bat" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lampedusa_(gastropod)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Isla_Bonita_tree_frog" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Trochoidea_pseudojacosta" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ancylus_ashangiensis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Atelopus_famelicus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Longest_climbing_salamander" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pondicherry_shark" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Northern_Sumatran_rhinoceros" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Murray_cod" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Atelopus_monohernandezii" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Scarlet_harlequin_toad" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Achatinella_fulgens" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Fissi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Glabrennea_silhouettensis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Negros_fruit_dove" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Phyllomedusa_ayeaye" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lygodactylus_williamsi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chiloglanis_ruziziensis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ilin_Island_cloudrunner" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Salvelinus_profundus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Flattened_musk_turtle" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Haplochromis_percoides" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Poropuntius_chonglingchungi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Fijian_monkey-faced_bat" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rio_de_Janeiro_antwren" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Belgrandiella_parreyssii" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Atelopus_patazensis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Miami_blue" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Puerto_Rican_amazon" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Xerosecta_giustii" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dryococelus_australis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nymphargus_anomalus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Laminella_sanguinea" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Clarias_cavernicola" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Aru_flying_fox" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Achatinella_sowerbyana" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Haplochromis_sp._'small_obesoid'" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bulimulus_ochsneri" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Caledoconcha_carnosa" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Haplochromis_dichrourus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Haplochromis_annectidens" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bythinella_markovi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Semper's_warbler" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Silvery_pigeon" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Laubuka_caeruleostigmata" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Megalagrion_molokaiense" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sulphur_molly" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Arytropteris_pondo" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Azuero_howler" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Broadspotted_molly" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Coptodon_flava" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Leptaxis_vetusa" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Puntius_deccanensis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Achatinella_bellula" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gulf_moccasinshell" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cyclura_nubila_caymanensis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Talaud_bear_cuscus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Zempoaltepec_deer_mouse" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Leiolopisma_alazon" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Transkeidectes_multidentis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Betta_miniopinna" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/New_Caledonian_lorikeet" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rhizosomichthys_totae" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Twee_River_redfin" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Trichonis_blenny" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Japanese_sturgeon" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Atelopus_galactogaster" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nsess" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ridgway's_hawk" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pungu" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Myanmar_snub-nosed_monkey" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hemistomia_crosseana" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Boninagrion_ezoin" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Aaadonta_fuscozonata_depressa" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sinhalestes_orientalis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Haplochromis_sp._'Kyoga_flameback'" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pseudophoxinus_zeregi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Omphalotropis_plicosa" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lake_Patzcuaro_salamander" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Fly_River_water_rat" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lamotte's_roundleaf_bat" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Doumergue's_fringe-fingered_lizard" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tristan_albatross" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Belgrandiella_austriana" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Upland_combshell" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Totoaba" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tepehuan_shiner" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chornaya_tubenose_goby" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Arinia_dentifera" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Fluvidona_petterdi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Graecoanatolica_brevis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cuban_kite" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chilostoma_crombezi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/R\u00fcck's_blue_flycatcher" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Blue-eyed_ground_dove" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Black_dorcopsis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Javan_leopard" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Alzoniella_iberopyrenaica" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tropical_pocket_gopher" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hemistomia_shostakovichi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Craugastor_cruzi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Plectrohyla_calvicollina" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Betta_persephone" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Geckoella_jeyporensis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Araripe_manakin" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/White-chested_white-eye" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Trioza_barrettae" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Abrau_sprat" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Devils_Hole_pupfish" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Locust_coqui" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kroombit_tinker_frog" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Speleophria_bivexilla" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Adrianichthys_kruyti" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Black-headed_spider_monkey" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Delminichthys_jadovensis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sir_David's_long-beaked_echidna" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dexteria" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Scinax_alcatraz" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Adclarkia_dawsonensis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Phrynocephalus_horvathi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Baw_Baw_frog" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lesser_electric_ray" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Liberian_greenbul" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chondrostoma_fahirae" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Fine-rayed_pigtoe_pearly_mussel" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hadramphus_tuberculatus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Irrawaddy_river_shark" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Anderson's_salamander" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pelasgus_laconicus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pale_lilliput_naiad" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Barkudia_insularis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/White-headed_vulture" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dahl's_toad-headed_turtle" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Edgbaston_goby" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mictocaris" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Draparnaudia_subnecata" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rota_white-eye" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Atelopus_mandingues" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Atelopus_walkeri" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Atelopus_andinus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Giant_ibis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Roti_Island_snake-necked_turtle" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cophotis_dumbara" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Salenski's_shrew" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Arubolana_aruboides" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mixe_tree_frog" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Clarence_galaxias" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Granular_salamander" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/San_Esteban_Island_mouse" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Holozoster_ovalis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Haplochromis_sp._'backflash_cryptodon'" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lily_Shoals_elimia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Macromia_flinti" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Stocky_pebblesnail" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Biomphalaria_barthi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Erepta_stylodon" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hampala_lopezi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Harmogenanina_implicata" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Southern_pigtoe" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rhysoconcha_variumbilicata" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Megalobulimus_grandis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Quadrate_pebblesnail" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Galaxias_fuscus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cobitis_stephanidisi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Achatinella_taeniolata" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Saint_Croix_ground_lizard" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Largemouth_shiner" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Monte_Escondido_salamander" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dwarf_sturgeon" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Partulina_confusa" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Amji's_salamander" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sangihe_shrikethrush" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/La_Palma_giant_lizard" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Alabama_lamp_naiad" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mount_Coke_false_shieldback" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Atelopus_planispina" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Southern_acorn_riffle_shell" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Orangia_maituatensis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cophyla_berara" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Black_clubshell" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Javan_slow_loris" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Golden-mantled_tree-kangaroo" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Perbrinckia_gabadagei" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Narrow-ridged_finless_porpoise" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Drepanosticta_austeni" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Biak_giant_rat" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Blue-banded_kingfisher" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Zingel_asper" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Discus_guerinianus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Balkan_lynx" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Zapata_rail" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Encheloclarias_kelioides" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Parhippolyte_sterreri" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Giant_salmon_carp" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Saimaa_ringed_seal" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Black-spotted_cuscus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Charco_Palma_pupfish" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Spider_tortoise" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Stresemann's_bristlefront" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Oedipina_altura" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gymnocephalus_ambriaelacus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Corroboree_frog" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dwarf_pygmy_goby" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Indochinese_box_turtle" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tumbala_climbing_rat" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/New_Caledonian_rail" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Delta_green_ground_beetle" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Liophis_cursor" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Convex_horseshoe_bat" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Delicate_deer_mouse" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tettigidea_empedonepia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Papaloapan_chub" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Anodonthyla_vallani" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Isla_De_La_Juventud_tree_hutia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gilbert's_potoroo" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Northern_hairy-nosed_wombat" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Labeo_potail" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Achatinella_concavospira" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Isthmohyla_rivularis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Zingis_radiolata" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pethia_pookodensis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/James_River_spinymussel" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Emperor_rat" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/One-striped_opossum" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cloud_forest_salamander" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Achatinella_lorata" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cumberlandian_combshell" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Amphilophus_zaliosus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Shortnose_cisco" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pygmy_sculpin" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Western_long-beaked_echidna" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mirinaba_curytibana" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Thickshell_pondsnail" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Zygonychidium_gracile" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/San_Quintin_kangaroo_rat" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Curassanthura_bermudensis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Squatina_squatina" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Helmeted_hornbill" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Santa_Marta_wren" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Siberian_crane" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Orinoco_crocodile" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Staghorn_coral" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pan's_box_turtle" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Popta's_buntingi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Balearic_shearwater" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mesonoemacheilus_herrei" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Western_chimpanzee" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Taita_apalis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Yellow-crested_cockatoo" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Litoria_castanea" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Graecoanatolica_anatolica" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Red-throated_lorikeet" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Yellow-tailed_woolly_monkey" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gonyostomus_goniostomus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Leka_keppe" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Risiocnemis_seidenschwarzi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Colombian_spider_monkey" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Plectrohyla_avia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Plectrohyla_sabrina" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Natal_shyshark" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bombus_suckleyi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pennant's_colobus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/June_sucker" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Streptocephalus_moorei" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Prairie_sphinx_moth" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Somali_wild_ass" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kaua\u02bbi_nukupu\u02bbu" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Arinia_boreoborneensis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ethiopian_amphibious_rat" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Horalabiosa_arunachalami" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dryas_monkey" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Craugastor_olanchano" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Alburnus_nasreddini" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Juan_Fern\u00e1ndez_firecrown" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Golden_white-eye" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gharial" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Paroedura_lohatsara" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Libellula_angelina" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bythiospeum_cisterciensorum" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Proischnura_polychromatica" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Coosa_pebblesnail" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Coxen's_fig_parrot" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sulu_hornbill" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Euastacus_maidae" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Oreocnemis_phoenix" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Shiny_pigtoe" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bulimulus_eos" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Heavenly_hill_rat" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Common_sawfish" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bedotia_tricolor" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tomichia_natalensis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bokermannohyla_izecksohni" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jerdon's_courser" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pagai_Island_macaque" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Colorful_puffleg" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Allan's_lerista" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Opanara_altiapica" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Speleophria_scottodicarloi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Zoogoneticus_tequila" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Trochochlamys_ogasawarana" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/R\u00e9union_cuckooshrike" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Appalachian_monkey-face_pearly_mussel" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Eisentraut's_mouse_shrew" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mount_Oku_hylomyscus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/River_pipefish" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Spermophorides_lascars" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Northern_river_terrapin" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Black_bearded_saki" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Atelopus_lozanoi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bulimulus_deridderi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Painted_clubshell" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/De_Winton's_golden_mole" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Australian_freshwater_limpet" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Alabama_cavefish" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tenkile" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dinagat_bushy-tailed_cloud_rat" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hemistomia_xaracuu" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Atelopus_varius" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Garra_ghorensis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mantidactylus_pauliani" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Haplochromis_argenteus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Javan_green_magpie" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Coptodon_deckerti" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Karthala_scops_owl" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Blind_cave_loach" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/San_Cristobal_shrew" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vancouver_Island_marmot" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chapultepec_splitfin" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Malherbe's_parakeet" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pseudophoxinus_egridiri" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Yunnan_box_turtle" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Coptodon_thysi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Telestes_fontinalis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Delacour's_langur" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Opanara_caliculata" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Syr_Darya_sturgeon" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Western_swamp_turtle" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hemisaga_elongata" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tar_River_spiny_mussel" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Aaadonta_irregularis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Great_Indian_bustard" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mautodontha_ceuthma" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cracking_pearlymussel" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Atelopus_angelito" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/San_Jos\u00e9_Island_kangaroo_rat" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Black-eared_mantella" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hylomantis_lemur" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sarotherodon_linnellii" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Telestes_turskyi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bulimulus_hirsutus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ruatara_koarana" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lantzia_carinata" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pacific_degu" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Haplochromis_sp._'Rusinga_oral_sheller'" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bothrops_alcatraz" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Solitary_fruit-eating_bat" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pantanodon_sp._nov._'Manombo'" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dendropsophus_amicorum" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Walden's_hornbill" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Townsend's_shearwater" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Haplochromis_sp._'parvidens-like'" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Alexteroon_jynx" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Club_naiad" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Leptodactylus_magistris" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Achatinella_pulcherrima" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Craugastor_angelicus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Appalachian_elktoe" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bulimulus_adelphus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ctenosaura_oaxacana" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Banded_dune_snail" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Atelopus_exiguus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Venezuelan_yellow_frog" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/White-backed_vulture" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pseudochazara_cingovskii" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/European_sea_sturgeon" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Red-crowned_roofed_turtle" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Isthmohyla_calypsa" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bengal_florican" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Philippine_eagle" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Edwardsina_tasmaniensis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Haplochromis_sp._'ruby'" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Blue-crowned_laughingthrush" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Delicate-skinned_salamander" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Leptodactylus_fallax" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Palila" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Thorius_minutissimus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Caseolus_subcalliferus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Iberolacerta_martinezricai" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Barbatula_eregliensis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Oreochromis_variabilis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Black-eared_flying_fox" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Poso_bungu" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Barbodes_wynaadensis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Oncorhynchus_masou_formosanus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Barbodes_bovanicus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Partula_guamensis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ceylonthelphusa_callista" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Barbodes_katolo" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Haplochromis_teegelaari" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cyprinus_fuxianensis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Polynesian_ground_dove" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Platyops" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bulimulus_chemitzioides" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Glabrennea_thomasseti" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Partula_affinis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Partula_otaheitana" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bavarian_pine_vole" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bellamya_liberiana" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Siphonaria_compressa" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Haplochromis_dentex" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Northern_glider" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/White_River_spinedace" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Glass_blue-eye" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ogasawarana_metamorpha" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chinhai_spiny_newt" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Aplocheilichthys_sp._nov._'Baringo'" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Atelopus_nicefori" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bedotia_sp._nov._'Sambava'" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Slender-billed_vulture" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bulimulus_galapaganus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Atelopus_arthuri" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Achatinella_pupukanioe" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Reig's_tuco-tuco" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Paracyclopia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Regent_honeyeater" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Atelopus_erythropus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/S\u00e3o_Tom\u00e9_shrew" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Fat_threeridge" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cumberland_pigtoe" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Knipowitschia_ephesi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chinese_bahaba" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Puebla_deer_mouse" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Skulpin" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Speckled_pocketbook" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Montserrat_oriole" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Haplochromis_vonlinnei" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Northern_brown_howler" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Christmas_Island_forest_skink" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Achatinella_turgida" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Barbodes_disa" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Napaeus_isletae" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kangaroo_Island_dunnart" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Montserrat_galliwasp" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Millepora_boschmai" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Boucardicus_simplex" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tetrathemis_ruwensoriensis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Colostethus_dunni" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Melanomys_zunigae" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Atlas_pebblesnail" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bulimulus_habeli" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/David's_tiger" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Atelopus_boulengeri" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kululu" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bleeding_toad" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Leiostyla_heterodon" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pygmy_three-toed_sloth" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pine_forest_stream_frog" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Barbodes_truncatulus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Guadalcanal_rat" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cotton-top_tamarin" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Spengler's_freshwater_mussel" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Atelopus_sernai" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Epioblasma_torulosa" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/El_Cusuco_salamander" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Elattoneura_leucostigma" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Oki_salamander" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Negev_Tortoise" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Craugastor_milesi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hainan_black_crested_gibbon" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Asian_narrow-headed_softshell_turtle" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Alburnus_vistonicus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mara\u00f1\u00f3n_spinetail" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Urrao_antpitta" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Eleutherodactylus_rufescens" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Achatinella_decipiens" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Fraternal_snail" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Continental_Divide_tree_frog" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Piedmont_anomalous_blue" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Branchinella_lithaca" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Euastacus_jagara" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Yangtze_giant_softshell_turtle" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Diplommatina_cacuminulus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Golden_coqu\u00ed" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Aquadulcaris_pheronyx" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Konye" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bouvier's_red_colobus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gansu_shrew" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bulimulus_adserseni" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Xenopus_lenduensis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Fatu_Hiva_monarch" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bog_turtle" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Galaxias_fontanus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Xenocypris_yunnanensis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Islamia_bendidis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Celestus_warreni" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Samoana_cramptoni" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Burt's_deer_mouse" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lemniscia_galeata" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Madagascan_big-headed_turtle" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bahama_oriole" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Culebra_Island_giant_anole" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Neopasiphae_simplicior" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lake_Lerma_salamander" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Barbodes_manalak" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Homoeodera_scolytoides" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Krabi_mouth-brooding_betta" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mantiqueira_Atlantic_tree-rat" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Waved_albatross" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dickey's_deer_mouse" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Colophon_primosi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Eungella_torrent_frog" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Coptodon_gutturosa" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Blue-winged_racket-tail" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Isthmohyla_insolita" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Achatinella_curta" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Oreochromis_jipe" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Central_American_river_turtle" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Haplochromis_nanoserranus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Barbodes_lanaoensis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Atelopus_nanay" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Anabarilius_andersoni" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Thoracistus_arboreus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Delta_smelt" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Diamond_darter" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Boninthemis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ogasawarana_rex" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cardioglossa_alsco" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Saint_Vincent_blacksnake" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Azraq_toothcarp" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hoary-throated_spinetail" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cobitis_puncticulata" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Blue-throated_macaw" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Neritina_tiassalensis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hemistomia_lacinia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Griffiniana_duplessisae" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ammobates_dusmeti" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sharp_snouted_day_frog" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sakhalin_sturgeon" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Laubuka_insularis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kleinmann's_tortoise" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Banggai_crow" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Atelopus_pachydermus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vipera_darevskii" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Beddomeia_tumida" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bedotia_albomarginata" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bulimulus_sp._nov._'tuideroyi'" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Achatinella_mustelina" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Socorro_mockingbird" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Beluga_(sturgeon)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pseudoeurycea_rex" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chile_Darwin's_frog" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lake_Victoria_deepwater_catfish" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Carpentarian_rock_rat" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cherry-throated_tanager" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Haplochromis_macrognathus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bythinella_turca" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tonkin_snub-nosed_monkey" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Golden-bellied_capuchin" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Plectrohyla_hazelae" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Arakan_forest_turtle" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Armenian_whiskered_bat" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Haplochromis_sp._nov._'Amboseli'" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Caquet\u00e1_titi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Grenada_dove" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tchangmargarya_yangtsunghaiensis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Maya_mouse" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Discula_testudinalis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pseudoeurycea_robertsi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Atelopus_pedimarmoratus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pygmy_pebblesnail" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Plectrohyla_chrysopleura" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Zilchogyra_paulistana" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Coptodon_bythobates" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Himalayan_brown_bear" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tyrrhenaria_ceratina" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Archey's_frog" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Helicostyla_smargadina" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Leiostyla_simulator" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sumatran_rhinoceros" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Encheloclarias_curtisoma" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Red-vented_cockatoo" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cherax_tenuimanus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Acanthobrama_hadiyahensis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Brazilian_guitarfish" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chrysoritis_cotrelli" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Greek_lamprey" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Madascincus_arenicola" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Valencia_toothcarp" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Booroolong_frog" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chiapan_climbing_rat" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Craugastor_emleni" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Philippine_naked-backed_fruit_bat" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/R\u00fcppell's_vulture" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Coenagriocnemis_insulare" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Samoana_decussatula" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bermudamysis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mecistogaster_pronoti" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nicaraguan_spider_monkey" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Haplochromis_ishmaeli" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/S\u00e3o_Tom\u00e9_fiscal" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Laysan_duck" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Heliogomphus_lyratus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Atelopus_ebenoides" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Russian_sturgeon" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Northern_muriqui" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pseudoeurycea_brunnata" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Frost's_arboreal_alligator_lizard" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Idiostatus_middlekaufi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Northern_bald_ibis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Puaiohi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Plectrohyla_chryses" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Black_stilt" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Alburnus_timarensis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Coptodon_spongotroktis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Philautus_jacobsoni" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pachypanchax_sakaramyi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Opisthostoma_inornatum" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Achatinella_leucorraphe" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Isthmohyla_tica" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cumberland_bean_pearly_mussel" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mekong_giant_catfish" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bulimulus_curtus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/European_mink" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pernambuco_pygmy_owl" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kristin's_false_shieldback" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Iberocypris_palaciosi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Glyptothorax_kashmirensis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bulimulus_indefatigabilis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Flores_shrew" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tennessee_pebblesnail" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Aaadonta_constricta_babelthuapi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Scardinius_scardafa" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hawksbill_sea_turtle" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Leptodactylus_silvanimbus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tenerife_speckled_lizard" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Persian_sturgeon" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rhytida_oconnori" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dikume" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Acanthagrion_taxaense" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/White-winged_guan" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Black_mogurnda" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Guanujo_stubfoot_toad" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Magenta_petrel" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Haplochromis_beadlei" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Opisthostoma_mirabile" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hasarius_mahensis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Salinas_chub" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pig-tailed_langur" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Alagoas_foliage-gleaner" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Greater_monkey-faced_bat" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Squalius_cappadocicus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ixtl\u00e1n_deer_mouse" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/S\u00e3o_Tom\u00e9_ibis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cnemaspis_anaikattiensis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Drepanosticta_hilaris" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hemistomia_gorotitei" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Western_ground_parrot" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pachysaga_strobila" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Amu_Darya_sturgeon" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Samoana_bellula" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Malabar_large-spotted_civet" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gonospira_duponti" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Iberochondrostoma_almacai" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bythiospeum_tschapecki" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Black-hooded_coucal" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Catalina_mountain_snail" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sibon_merendonensis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rio_Branco_antbird" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bulmer's_fruit_bat" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Popenaias_popeii" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/New_Caledonian_owlet-nightjar" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Haplochromis_victorianus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Valencia_letourneuxi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Peppered_tree_frog" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Barbodes_amarus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pickersgill's_reed_frog" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Belgrandiella_mimula" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Partula_calypso" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Samoana_strigata" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Plectrohyla_psarosema" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Brune's_tryonia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hubbsina_turneri" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Selous'_zebra" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Northern_white-cheeked_gibbon" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Partula_martensiana" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bulimulus_saeronius" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Procaris_chacei" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Giant_pangasius" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Flat-backed_spider_tortoise" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gulella_puzeyi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Horned_curassow" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Oreochromis_esculentus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Marstonia_ozarkensis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Alchichica_silverside" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Perbrinckia_scitula" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Wimmer's_shrew" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Clinothelphusa" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Belgrandia_varica" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Masafuera_rayadito" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Barbodes_baoulan" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ecuadorian_capuchin" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Opisthopatus_roseus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Opisthostoma_fraternum" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Handley's_slender_opossum" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bocaccio_rockfish" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nightingale_reed_warbler" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/False_canyon_mouse" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Capoeta_pestai" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Aaadonta_fuscozonata_fuscozonata" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lycodon_chrysoprateros" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ptychochromis_insolitus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Haplochromis_sp._'black_cryptodon'" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chalcides_ebneri" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Amastra_rubens" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pseudophoxinus_maeandricus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Purple_bean" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Northern_white_rhinoceros" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Procambarus_delicatus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lake_Wanam_rainbowfish" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Austrogammarus_australis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Widemouth_gambusia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chiloglanis_polyodon" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Grossuana_thracica" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Opisthostoma_vermiculum" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Opisthostoma_otostoma" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lucifuga_simile" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Barbus_euboicus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Adetomyrma_venatrix" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kondoconcha_othnius" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Maui's_dolphin" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Alburnus_mandrensis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Barbara_Brown's_titi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ameerega_ingeri" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mexican_howler" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Xenotyphlops_grandidieri" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Barbodes_pachycheilus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pondoland_cannibal_snail" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Barbodes_clemensi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sira_curassow" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Roig's_tuco-tuco" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Glaucous_macaw" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Brookesia_bonsi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pethia_bandula" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Burchell's_redfin" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Anabarilius_yangzonensis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cebu_flowerpecker" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Achatinella_lila" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Carolina_heelsplitter" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cyclura_pinguis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pohnpei_starling" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Armoured_frog" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Samoana_burchi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tropidoptera_heliciformis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Djibouti_francolin" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bali_myna" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Enggano_rat" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sitalcicus_incertus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hoge's_side-necked_turtle" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jamaican_flower_bat" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vietnamese_three-striped_box_turtle" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Iglica_gratulabunda" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Southern_kidneyshell" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ixalodectes_flectocercus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Haplochromis_mylergates" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Big_pocket_gopher" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Calumma_tarzan" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bolivian_chinchilla_rat" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bermudagidiella" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nelson's_woodrat" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Obovaria_haddletoni" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Atelopus_halihelos" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Opanara_areaensis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rosy_bitterling" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hyporthodus_nigritus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pindu" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tantilla_tritaeniata" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bastard_sturgeon" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ochlockonee_moccasinshell" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Micromacromia_miraculosa" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Craugastor_coffeus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jamaican_greater_funnel-eared_bat" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Marstonia_castor" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Conasauga_logperch" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Starry_sturgeon" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/White-headed_langur" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Haplochromis_microdon" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Web-footed_coqu\u00ed" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nihoa_finch" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Madagascan_pochard" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sentani_rainbowfish" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sapphire-bellied_hummingbird" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Niceforo's_wren" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Atelopus_chocoensis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mascarene_petrel" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hemistomia_neku" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hypselobarbus_thomassi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Saipan_reed_warbler" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Helan_Shan_pika" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lake_Oku_clawed_frog" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Caecocypris_basimi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Colombian_woolly_monkey" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Zarciadero_web-footed_salamander" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Fluted_pebblesnail" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Maui_nukupu\u02bbu" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Homoeodera_edithia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Atelopus_pictiventris" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bradytriton_silus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rodrigues_flying_fox" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cachorrito_de_mezquital" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lanistes_neritoides" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Crow_honeyeater" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rhinocypha_ogasawarensis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Achatinella_viridans" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Belgrandiella_pelerei" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Theba_arinagae" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Western_purple-faced_langur" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/White-bellied_cinclodes" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nectophrynoides_wendyae" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Golden_vizcacha_rat" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ornate_sleeper-ray" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kaapori_capuchin" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chapa_pygmy_dormouse" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Leiostyla_cassida" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mesonerilla_prospera" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mortlock_flying_fox" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gwyniad" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cuban_greater_funnel-eared_bat" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Elizabeth_Springs_goby" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Achatinella_swiftii" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Social_tuco-tuco" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Barbodes_resimus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pseudoeurycea_smithi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Platycypha_amboniensis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Salmo_ezenami" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Coptodon_bakossiorum" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Geometric_tortoise" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bulimulus_sculpturatus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gobio_hettitorum" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Giant_barb" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hyridella_glenelgensis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tropidophis_hendersoni" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Margarita_Island_kangaroo_rat" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Slevin's_mouse" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tomichia_cawstoni" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Brown-headed_spider_monkey" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/McCord's_box_turtle" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hooded_grebe" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/New_Zealand_storm_petrel" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Morelet's_tree_frog" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Synemon_plana" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Iberochondrostoma_oretanum" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Allotoca_maculata" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Montane_monkey-faced_bat" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sri_Lankan_relict_ant" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Roatan_coral_snake" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Micro_frog" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Microhyla_karunaratnei" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Coregonus_bavaricus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Varicorhinus_ruandae" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bruneau_hot_springsnail" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vietnamese_pond_turtle" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Coahuilix_de_hubbs_snail" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jamaican_iguana" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Black_rhinoceros" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Plectrohyla_acanthodes" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Niger_Delta_red_colobus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Yellowbelly_voiceless_tree_frog" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Eastern_black_crested_gibbon" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Oxylapia_polli" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rolling_pebblesnail" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/La_Gomera_giant_lizard" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pink-headed_duck" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Trithemis_nigra" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Okinawa_woodpecker" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Trigonostigma_somphongsi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sinocyclocheilus_grahami" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nike's_squeaker" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Perote_mouse" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Heliogomphus_ceylonicus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Variegated_mogurnda" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Copan_brook_frog" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Carrizal_seedeater" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ixalotriton_parva" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Amsterdam_albatross" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Atelopus_subornatus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/White_warty-back_pearly_mussel" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mountain_galaxias" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tahiti_monarch" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/West_African_lion" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Razorback_sucker" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cyclura_rileyi_cristata" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/White-bellied_heron" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Atelopus_mindoensis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Systomus_compressiformis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Haplochromis_barbarae" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mautodontha_boraborensis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Actinella_obserata" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Parapsilorhynchus_prateri" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nimbaphrynoides_liberiensis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Golden_coin_turtle" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cambarus_zophonastes" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Magdalena_River_turtle" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Elvira_rat" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Amastra_micans" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Opanara_fosbergi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Spencer's_river_tree_frog" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lake_Pedder_planarian" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Siamese_tigerfish" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Achatinella_byronii" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Clarias_maclareni" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Coptodon_bemini" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cuatro_Cienegas_softshell" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Barbodes_tras" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/South-central_black_rhinoceros" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Atelopus_chrysocorallus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Atelopus_mucubajiensis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Partula_emersoni" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Fanshell" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Painted_terrapin" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kipunji" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Smalltooth_sawfish" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Fiji_petrel" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Plains_coqui" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Siau_scops_owl" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Plectrohyla_pycnochila" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bizarre-nosed_chameleon" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tylognathus_festai" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lake_Chala_tilapia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Superagui_lion_tamarin" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Penitent_mussel" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Acheron_spring_goby" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Orcula_fuchsi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Peter's_tube-nosed_bat" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mangrove_finch" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Amastra_cylindrica" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hydrotarsus_compunctus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Coptodon_imbriferna" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/K\u0131z\u0131l\u0131rmak_toothcarp" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Poncelet's_giant_rat" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Honduran_brook_frog" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Schizothorax_grahami" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bonin_flying_fox" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dromedary_naiad" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Oyster_mussel" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Muennink's_spiny_rat" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Leucocharis_pancheri" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Wicker_ancylid" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sociable_lapwing" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Celebes_crested_macaque" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Knipowitschia_mermere" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Barbodes_palata" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Salmo_carpio" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nanodectes_bulbicercus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Short-furred_Atlantic_tree-rat" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hemicycla_saulcyi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Alcorn's_pocket_gopher" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Otjikoto_tilapia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Samoana_meyeri" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pachliopta_jophon" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Marquesan_kingfisher" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Amastra_spirizona" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kikuzato's_brook_snake" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Antioquia_brush_finch" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Grey-breasted_parakeet" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Namdapha_flying_squirrel" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Eastern_black_rhinoceros" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Alabama_sturgeon" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Maui_parrotbill" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Belalanda_chameleon" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Scardinius_graecus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Moapa_dace" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hypselobarbus_pulchellus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Laubuka_varuna" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Siamese_crocodile" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Oreochromis_chungruruensis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rhodeus_smithii" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pleurocera_ampla" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dlinza_Forest_pinwheel" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Burmese_star_tortoise" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Islamia_trichoniana" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bay_checkerspot_butterfly" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Samoana_fragilis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Megalobulimus_proclivis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gyraulus_cockburni" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mangareva_kingfisher" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Procambarus_morrisi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bulimulus_lycodus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ixalotriton_niger" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Partula_leucothoe" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Xenopus_itombwensis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Calico_grouper" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Coptodon_snyderae" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Leora's_stream_salamander" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Achatinella_cestus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Atelopus_guitarraensis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Spine-fingered_tree_frog" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Preuss's_red_colobus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nihoa_millerbird" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sumatran_elephant" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Opanara_bitridentata" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Spoon-billed_sandpiper" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Quadrula_mitchelli" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Atlantic_goliath_grouper" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Campo_Grande_tree_frog" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nothomyrmecia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Megalagrion_leptodemas" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gulella_salpinx" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Elkhorn_coral" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Opanara_megomphala" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pseudoeurycea_exspectata" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ptychochromoides_vondrozo" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tooth-billed_pigeon" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Samoana_dryas" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chestnut-capped_piha" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kaluga_(fish)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Black-spotted_false_shieldback" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jatayu_Conservation_Breeding_Centre,_Pinjore__CR__1" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sulu_bleeding-heart" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lamprologus_kungweensis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cambarus_aculabrum" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Samoana_oreas" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Radiated_tortoise" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Plectrohyla_quecchi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chinese_pangolin" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Palaemonetes_cummingi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/\u2018Akeke\u2018e" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/European_eel" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cyclura_rileyi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Partula_taeniata" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Black-breasted_puffleg" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sarawak_surili" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Procambarus_attiguus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Plectrohyla_ixil" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Karpathos_frog" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Blue-billed_curassow" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gastrotheca_lauzuricae" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Northern_riffleshell" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cryptobatrachus_nicefori" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Spotted_handfish" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Alzoniella_marianae" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Achatinella_phaeozona" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Oedipina_paucidentata" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Graecoanatolica_conica" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tylomelania_kruimeli" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sawback_angelshark" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Anjouan_scops_owl" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hyla_chlorostea" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nemacheilus_dori" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Colostethus_jacobuspetersi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Johora_singaporensis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Achatinella_vulpina" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Exerodonta_perkinsi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Haplochromis_flavipinnis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pseudophilotes_sinaicus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Delminichthys_krbavensis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kondana_soft-furred_rat" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Barbus_ruasae" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Armsia_petasus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Magazine_Mountain_middle-toothed_snail" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gorgeted_puffleg" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bothrops_insularis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Oblong_rocksnail" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mexican_spider_monkey" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Anilany_helenae" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Heliconius_nattereri" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Paludomus_ajanensis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Aipysurus_apraefrontalis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Orthochromis_uvinzae" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rondo_dwarf_galago" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Monzon's_hidden_salamander" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Plectrohyla_siopela" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bythinella_gloeeri" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Karomo" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Radioconus_goeldi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hauffenia_lucidulus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sylvilagus_palustris_hefneri" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ctenosaura_bakeri" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pyrrhosoma_elisabethae" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Atelopus_glyphus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bulimulus_sp._nov._'nilsodhneri'" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vermilion_darter" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Atelopus_nepiozomus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cozumel_raccoon" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sakhalin_taimen" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Atelopus_reticulatus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Achatinella_bulimoides" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cave_squeaker" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Centrolene_gemmatum" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Andaman_shrew" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Harenna_shrew" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Maspalomas_bow-legged_grasshopper" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/San_Jos\u00e9_brush_rabbit" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gorgan_salamander" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Veragua_stubfoot_toad" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jardinella_colmani" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gran_Canaria_blue_chaffinch" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Haplochromis_michaeli" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chalchalero_vizcacha_rat" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Haplochromis_perrieri" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Damba_mipentina" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Plectrohyla_guatemalensis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Plectrohyla_cyanomma" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Black-chinned_monarch" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Atelopus_eusebianus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mariana_crow" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pacifastacus_fortis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rhytida_clarki" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bugun_liocichla" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Alagoas_antwren" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Belgrandiella_ganslmayri" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Orange-bellied_parrot" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/White-shouldered_ibis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Golf_stick_pearly_mussel" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Diplommatina_madaiensis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Alosa_vistonica" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bulimulus_achatellinus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Haplochromis_latifasciatus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cozumel_thrasher" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ingerana_charlesdarwini" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Green_and_red_venter_harlequin_toad" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Birdwing_pearlymussel" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Atelopus_petersi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Takifugu_chinensis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Royal_cinclodes" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Samoana_attenuata" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Varicorhinus_platystomus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Andean_catfish" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Telestes_polylepis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ilyodon_whitei" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Abe's_salamander" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ogasawarana_chichijimana" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Santamartamys" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chinanteco_deer_mouse" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cuatrocienegas_killifish" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lampedusa_melitensis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Northern_tinker_frog" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nototriton_lignicola" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Slender-snouted_crocodile" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Haplochromis_heusinkveldi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gulickia_alexandri" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Abronia_campbelli" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Socorro_springsnail" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bogot\u00e1_sunangel" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Opaque_pebblesnail" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Killarney_shad" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Purple-winged_ground_dove" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Asiatic_cheetah" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Danube_delta_dwarf_goby" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Opisthostoma_jucundum" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Crotalus_durissus_unicolor" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Iriomote_cat" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Streptocephalus_gracilis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bay_Lycian_salamander" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Be'er_Sheva_fringe-fingered_lizard" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Astatotilapia_sp._'dwarf_bigeye_scraper'" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Haplochromis_longirostris" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Romanichthys_valsanicola" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Iberochondrostoma_lusitanicum" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Apache_trout" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Negros_bleeding-heart" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Indolestes_boninensis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Meladema_imbricata" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sclater's_shrew" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Trinidad_piping_guan" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Philippine_crocodile" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Callulina_dawida" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Barbatula_simavica" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Salmo_platycephalus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Moheli_scops_owl" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Trondo_mainty" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cottus_rondeleti" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Opisthostoma_perspectivum" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Turks_and_Caicos_rock_iguana" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hemistomia_whiteleggei" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Saint_Helena_plover" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gal\u00e1pagos_petrel" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Giant_sea_bass" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Atelopus_petriruizi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Leadbeater's_possum" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Amanipodagrion" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rhinolophus_hilli" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Arinia_oviformis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Marsican_brown_bear" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Short-crested_coquette" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kemp's_ridley_sea_turtle" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Oaxacan_yellow_tree_frog" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Blond_capuchin" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Elongate_bitterling" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Iquitos_gnatcatcher" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Drepanosticta_adami" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Schayera_baiulus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cowan's_mantella" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Flatjaw_minnow" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chevron-spotted_brown_frog" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Geocrinia_alba" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Draparnaudia_anniae" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Christmas_Island_pipistrelle" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nicobar_shrew" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cyprinus_barbatus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nelson's_small-eared_shrew" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jenkins'_shrew" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Niau_kingfisher" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Islamia_graeca" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rio_Mayo_titi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Plectrohyla_crassa" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Arinia_simplex" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cuban_crocodile" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bulimulus_wolfi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Belgrandiella_bachkovoensis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Haplochromis_granti" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cerro_Pital_salamander" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Aprasia_aurita" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Fuertes's_parrot" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Helenoconcha_relicta" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Aipysurus_foliosquama" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Homoeodera_elateroides" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Centrolene_ballux" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pene_galilaea" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tetrathemis_denticauda" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pr\u00edncipe_thrush" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kinglet_calyptura" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Crotalus_catalinensis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Boophis_williamsi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Woundfin" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gobio_delyamurei" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bulimulus_sp._nov._'vanmoli'" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Radiolate_partula" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Haplochromis_cassius" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/White-winged_flufftail" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Endangered_Species_(H.A.W.K._album)", + "surface form": "Endangered" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/animal", + "surface form": "animals" + }, + { + "URI": "http://dbpedia.org/ontology/principal", + "surface form": "critically" + } + ] + }, + { + "id": "13", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Which politicians were married to a German?", + "keywords": "politician, married, German" + } + ], + "query": { + "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Politician> ; <http://dbpedia.org/ontology/spouse> ?spouse { ?spouse <http://dbpedia.org/ontology/birthPlace> <http://dbpedia.org/resource/Germany> } UNION { ?spouse <http://dbpedia.org/ontology/birthPlace> ?p . ?p <http://dbpedia.org/ontology/country> <http://dbpedia.org/resource/Germany> } }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sahra_Wagenknecht" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Karl_Carstens" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gesine_Schwan" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Richard_von_Weizs\u00e4cker" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Erich_Honecker" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Johannes_Rau" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Duke_Adolf_Friedrich_of_Mecklenburg" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Florence_Prag_Kahn" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Walter_Ulbricht" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Otto_of_Stolberg-Wernigerode" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Isidor_Straus" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Politicians_of_The_Wire", + "surface form": "politicians" + }, + { + "URI": "http://dbpedia.org/resource/Germany", + "surface form": "German" + }, + { + "URI": "http://dbpedia.org/resource/German", + "surface form": "German" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/spouse", + "surface form": "married" + }, + { "URI": "http://dbpedia.org/ontology/country", "surface form": "" }, + { "URI": "http://dbpedia.org/ontology/country", "surface form": "" } + ] + }, + { + "id": "114", + "answertype": "number", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "How big is the earth's diameter?", + "keywords": "earth, diameter" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT (( xsd:double(?radius) * 2 ) AS ?diameter) WHERE { res:Earth dbo:meanRadius ?radius }" + }, + "answers": [ + { + "head": { "vars": ["c"] }, + "results": { + "bindings": [{ "c": { "type": "literal", "value": "1.2742e+07" } }] + } + } + ], + "entities": [], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/ground", + "surface form": "earth" + }, + { + "URI": "http://dbpedia.org/ontology/diameter", + "surface form": " diameter" + } + ] + }, + { + "id": "92", + "answertype": "boolean", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Is the wife of President Obama called Michelle?", + "keywords": "wife, president, obama, called, michelle" + } + ], + "query": { + "sparql": "PREFIX res: <http://dbpedia.org/resource/> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> PREFIX onto: <http://dbpedia.org/ontology/> ASK WHERE { res:Barack_Obama onto:spouse ?spouse . ?spouse rdfs:label ?name FILTER regex(?name, \"Michelle\") }" + }, + "answers": [{ "head": {}, "results": {}, "boolean": true }], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Barack_Obama", + "surface form": "Obama" + } + ], + "relations": [ + { "URI": "http://dbpedia.org/property/spouse", "surface form": "wife" }, + { "URI": "http://dbpedia.org/ontology/guest", "surface form": "called" } + ] + }, + { + "id": "194", + "answertype": "resource", + "aggregation": false, + "onlydbo": false, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Which U.S. state has the abbreviation MN?", + "keywords": "U.S. state, abbreviation, MN" + } + ], + "query": { + "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a yago:WikicatStatesOfTheUnitedStates ; <http://dbpedia.org/property/postalabbreviation> \"MN\"^^<http://www.w3.org/1999/02/22-rdf-syntax-ns#langString> }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Minnesota" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/United_States", + "surface form": "US" + }, + { "URI": "http://dbpedia.org/resource/MN", "surface form": "MN" } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/abbreviation", + "surface form": "abbreviation" + } + ] + }, + { + "id": "175", + "answertype": "date", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "When did Muhammad die?", + "keywords": "Muhammad, die" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT xsd:date(?date) WHERE { res:Muhammad dbo:deathDate ?date }" + }, + "answers": [ + { + "head": { "vars": ["date"] }, + "results": { + "bindings": [ + { "date": { "type": "literal", "value": "0632-06-08" } } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Muhammad", + "surface form": "Muhammad" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/deathDate", + "surface form": "die" + } + ] + }, + { + "id": "26", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "What is the atmosphere of the Moon composed of?", + "keywords": "atmosphere, Moon, composed of" + } + ], + "query": { + "sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Moon> <http://dbpedia.org/property/atmosphereComposition> ?uri }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Helium" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Neon" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Potassium" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Radon" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sodium" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Argon" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hydrogen" + } + } + ] + } + } + ], + "entities": [ + { "URI": "http://dbpedia.org/resource/Moon", "surface form": "Moon" } + ], + "relations": [ + { + "URI": "http://dbpedia.org/property/background", + "surface form": "atmosphere" + }, + { + "URI": "http://dbpedia.org/ontology/musicComposer", + "surface form": "composed" + } + ] + }, + { + "id": "60", + "answertype": "string", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Who is the governor of Texas?", + "keywords": "governor, Texas" + } + ], + "query": { + "sparql": "PREFIX res: <http://dbpedia.org/resource/> PREFIX dbp: <http://dbpedia.org/property/> SELECT DISTINCT ?string WHERE { res:Texas dbp:governor ?string }" + }, + "answers": [ + { + "head": { "vars": ["string"] }, + "results": { + "bindings": [ + { "string": { "type": "literal", "value": "Greg Abbott" } } + ] + } + } + ], + "entities": [ + { "URI": "http://dbpedia.org/resource/Texas", "surface form": "Texas" } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/governor", + "surface form": "governor" + } + ] + }, + { + "id": "110", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Which movies did Kurosawa direct?", + "keywords": "film, direct, Kurosawa" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT ?uri WHERE { ?uri rdf:type dbo:Film ; dbo:director res:Akira_Kurosawa }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Idiot_(1951_film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dreams_(1990_film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Bad_Sleep_Well" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Hidden_Fortress" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Throne_of_Blood" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Drunken_Angel" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kagemusha" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dersu_Uzala_(1975_film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rhapsody_in_August" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sanshiro_Sugata" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Seven_Samurai" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sanjuro" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sanshiro_Sugata_Part_II" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Scandal_(1950_film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/One_Wonderful_Sunday" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Most_Beautiful" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Quiet_Duel" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Madadayo" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/High_and_Low_(1963_film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ikiru" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Those_Who_Make_Tomorrow" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dodes'ka-den" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Red_Beard" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rashomon" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Yojimbo_(film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Stray_Dog_(film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Horse_(1941_film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/No_Regrets_for_Our_Youth" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Lower_Depths_(1957_film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ran_(film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Men_Who_Tread_on_the_Tiger's_Tail" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/I_Live_in_Fear" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Akira_Kurosawa", + "surface form": "Kurosawa" + } + ], + "relations": [ + { "URI": "http://dbpedia.org/ontology/film", "surface form": "movies" }, + { + "URI": "http://dbpedia.org/ontology/director", + "surface form": "direct" + } + ] + }, + { + "id": "206", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "What was the name of the famous battle in 1836 in San Antonio?", + "keywords": "famous battle, 1836, San Antonio" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?uri WHERE { ?uri a dbo:MilitaryConflict ; dbo:place dbr:San_Antonio ; dbo:date ?date FILTER ( ?date > \"1835-12-31T00:00:00Z\"^^xsd:dateTime ) FILTER ( ?date <= \"1836-12-31T00:00:00Z\"^^xsd:dateTime ) }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Battle_of_the_Alamo" + } + } + ] + } + } + ], + "entities": [ + { "URI": "http://dbpedia.org/resource/1836", "surface form": "1836" }, + { + "URI": "http://dbpedia.org/resource/San_Antonio", + "surface form": "San Antonio" + } + ], + "relations": [ + { "URI": "http://dbpedia.org/property/name", "surface form": "name" }, + { + "URI": "http://dbpedia.org/ontology/motto", + "surface form": "famous battle" + } + ] + }, + { + "id": "97", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Give me the official websites of actors of the television show Charmed.", + "keywords": "official, websites, actors, television, charmed" + } + ], + "query": { + "sparql": "PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX foaf: <http://xmlns.com/foaf/0.1/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Charmed> onto:starring ?actors . ?actors foaf:homepage ?uri }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { "type": "uri", "value": "http://www.briankrause.us" } + }, + { "uri": { "type": "uri", "value": "http://www.alyssa.com" } } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Charmed", + "surface form": "television show Charmed" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/officialLanguage", + "surface form": "official websites" + }, + { + "URI": "http://dbpedia.org/ontology/background", + "surface form": "actors" + } + ] + }, + { + "id": "20", + "answertype": "number", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "How many calories does a baguette have?", + "keywords": "calories, baguette" + } + ], + "query": { + "sparql": "SELECT DISTINCT ?n WHERE { <http://dbpedia.org/resource/Baguette> <http://dbpedia.org/property/calories> ?n }" + }, + "answers": [ + { + "head": { "vars": ["c"] }, + "results": { + "bindings": [{ "c": { "type": "literal", "value": "263" } }] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Baguette", + "surface form": "baguette" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/property/calories", + "surface form": "calories" + } + ] + }, + { + "id": "169", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Give me all libraries established before 1400.", + "keywords": "libraries, established, before 1400" + } + ], + "query": { + "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Library> ; <http://dbpedia.org/property/established> ?year FILTER ( ?year < 1400 ) }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nanpura_Parsi_Library" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Austrian_National_Library" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Merton_College_Library" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Library_of_Pergamum" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mother_Irene_Gill_Memorial_Library" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Library_of_Ashurbanipal" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cambridge_University_Library" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_and_University_Library_of_the_Republika_Srpska" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Library_of_Alexandria" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Almeida_Garrett_Library" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Heidelberg_University_Library" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Maughan_Library" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Libraries_in_Brighton_and_Hove", + "surface form": "libraries" + }, + { "URI": "http://dbpedia.org/resource/1400", "surface form": "1400" } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/established", + "surface form": "established" + } + ] + }, + { + "id": "38", + "answertype": "resource", + "aggregation": false, + "onlydbo": false, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Give me all Frisian islands that belong to the Netherlands.", + "keywords": "Frisian island, Netherlands" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX yago: <http://dbpedia.org/class/yago/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type yago:WikicatFrisianIslands ; dbo:country res:Netherlands }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Frisian_Islands" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Frisian_Islands", + "surface form": "Frisian islands" + }, + { + "URI": "http://dbpedia.org/resource/Netherlands_Antilles_at_the_2007_Pan_American_Games", + "surface form": "Netherlands" + } + ], + "relations": [ + { "URI": "http://dbpedia.org/property/rank", "surface form": "belong" } + ] + }, + { + "id": "192", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Which museum exhibits The Scream by Munch?", + "keywords": "museum, Scream, Munch" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:The_Scream dbo:museum ?uri }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Gallery_(Norway)" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/The_Scream", + "surface form": "The Scream by Munch" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/museum", + "surface form": "museum" + }, + { + "URI": "http://dbpedia.org/ontology/sport", + "surface form": "exhibits" + } + ] + }, + { + "id": "78", + "answertype": "date", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "When was the De Beers company founded?", + "keywords": "De Beers company, founded" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT xsd:date(?date) WHERE { res:De_Beers dbo:foundingYear ?date }" + }, + "answers": [ + { + "head": { "vars": ["date"] }, + "results": { + "bindings": [ + { "date": { "type": "literal", "value": "1888-01-01" } } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/De_Beers", + "surface form": "De Beers company" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/foundedBy", + "surface form": "founded" + } + ] + }, + { + "id": "19", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Who became president after JFK died?", + "keywords": "president, after JFK death" + } + ], + "query": { + "sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/John_F._Kennedy> <http://dbpedia.org/property/presidentEnd> ?x . ?uri <http://dbpedia.org/property/presidentStart> ?x; a <http://dbpedia.org/ontology/Person>. }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lyndon_B._Johnson" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/John_F._Kennedy", + "surface form": "JFK" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/president", + "surface form": "president" + }, + { + "URI": "http://dbpedia.org/ontology/deathDate", + "surface form": "died" + } + ] + }, + { + "id": "190", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Who are the parents of the wife of Juan Carlos I?", + "keywords": "Juan Carlos I, wife, parents" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Juan_Carlos_I_of_Spain dbo:spouse ?x . ?x dbo:parent ?uri }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Frederika_of_Hanover" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Paul_of_Greece" + } + } + ] + } + } + ], + "entities": [ + { "URI": "http://dbpedia.org/resource/I", "surface form": "I" }, + { + "URI": "http://dbpedia.org/resource/Juan_Carlos_I_of_Spain", + "surface form": "Juan Carlos" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/parent", + "surface form": "parents" + }, + { "URI": "http://dbpedia.org/ontology/spouse", "surface form": "wife" } + ] + }, + { + "id": "174", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Who is the novelist of the work a song of ice and fire?", + "keywords": "a song of ice and fire, novelist" + } + ], + "query": { + "sparql": "PREFIX dbr: <http://dbpedia.org/resource/> PREFIX dbp: <http://dbpedia.org/property/> SELECT ?Novelist WHERE { dbr:A_Song_of_Ice_and_Fire dbp:author ?Novelist }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/George_R._R._Martin" + } + } + ] + } + } + ], + "entities": [], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/author", + "surface form": "novelist" + }, + { + "URI": "http://dbpedia.org/ontology/service", + "surface form": "work" + }, + { "URI": "http://dbpedia.org/ontology/anthem", "surface form": "song" }, + { "URI": "http://dbpedia.org/ontology/frozen", "surface form": "ice" } + ] + }, + { + "id": "189", + "answertype": "string", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "In which studio did the Beatles record their first album?", + "keywords": "Beatles, record, first album, studio" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbp: <http://dbpedia.org/property/> PREFIX dbr: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> PREFIX db: <http://dbpedia.org/> SELECT ?studio WHERE { ?album dbo:artist dbr:The_Beatles ; rdf:type dbo:Album ; dbo:releaseDate ?date ; dbp:studio ?studio } ORDER BY ASC(?date) LIMIT 1" + }, + "answers": [ + { + "head": { "vars": ["string"] }, + "results": { + "bindings": [ + { + "string": { "type": "literal", "value": "EMI Studios, London" } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Beatles_VI", + "surface form": "Beatles" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/property/studio", + "surface form": "studio" + }, + { + "URI": "http://dbpedia.org/ontology/recordLabel", + "surface form": "record" + }, + { "URI": "http://dbpedia.org/ontology/album", "surface form": "album" } + ] + }, + { + "id": "152", + "answertype": "resource", + "aggregation": false, + "onlydbo": false, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Which beer brewing companies are located in North-Rhine Westphalia?", + "keywords": "brewing companies, North rhine Westphalia" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dct: <http://purl.org/dc/terms/> PREFIX dbc: <http://dbpedia.org/resource/Category:> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT ?company WHERE { ?company dct:subject dbc:Companies_based_in_North_Rhine-Westphalia ; rdf:type dbo:Brewery }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Veltins" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Krombacher_Brauerei" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Diebels" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Warsteiner" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Museum_of_Beer_and_Brewing", + "surface form": "beer brewing companies" + }, + { + "URI": "http://dbpedia.org/resource/North_Rhine-Westphalia", + "surface form": "North-Rhine Westphalia" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/property/stand", + "surface form": "located" + } + ] + }, + { + "id": "94", + "answertype": "date", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "When did princess Diana die?", + "keywords": "date, princess Diana, died" + } + ], + "query": { + "sparql": "SELECT DISTINCT xsd:date(?d) WHERE { <http://dbpedia.org/resource/Diana,_Princess_of_Wales> <http://dbpedia.org/ontology/deathDate> ?d }" + }, + "answers": [ + { + "head": { "vars": ["date"] }, + "results": { + "bindings": [ + { "date": { "type": "literal", "value": "1997-08-31" } } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Diana,_Princess_of_Wales", + "surface form": "princess Diana" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/deathDate", + "surface form": "die" + } + ] + }, + { + "id": "8", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Who founded Intel?", + "keywords": "Intel, founded" + } + ], + "query": { + "sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Intel> <http://dbpedia.org/property/founders> ?uri }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Robert_Noyce" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gordon_Moore" + } + } + ] + } + } + ], + "entities": [ + { "URI": "http://dbpedia.org/resource/Intel", "surface form": "Intel" } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/foundingYear", + "surface form": "founded" + } + ] + }, + { + "id": "95", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Who is the youngest player in the Premier League?", + "keywords": "player, Premier League, youngest" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { ?uri dbo:team ?team . ?league dbo:league res:Premier_League . ?league dbo:team ?team . ?uri dbo:birthDate ?date } ORDER BY DESC(?date) LIMIT 1" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ernie_Pinkney" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Premier_League", + "surface form": "Premier League" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/participant", + "surface form": "player" + } + ] + }, + { + "id": "119", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Which instruments does Cat Stevens play?", + "keywords": "Cat Stevens, instrument" + } + ], + "query": { + "sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Cat_Stevens> <http://dbpedia.org/ontology/instrument> ?uri }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Baldwin_Piano_Company" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gibson_ES-335" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mandolin" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mellotron" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Epiphone_Casino" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Fender_Telecaster" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gibson_Everly_Brothers_Flattop" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rhodes_piano" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gibson_J-200" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ovation_Guitar_Company" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Cat_Stevens", + "surface form": "Cat Stevens" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/property/instrument", + "surface form": "instruments" + }, + { + "URI": "http://dbpedia.org/ontology/starring", + "surface form": "play" + } + ] + }, + { + "id": "115", + "answertype": "number", + "aggregation": true, + "onlydbo": false, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "How many rivers and lakes are in South Carolina?", + "keywords": "rivers, lakes, South Carolina" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dct: <http://purl.org/dc/terms/> PREFIX dbc: <http://dbpedia.org/resource/Category:> PREFIX dbr: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT (COUNT(DISTINCT ?uri) AS ?count) WHERE { { ?uri dbo:location dbr:South_Carolina ; rdf:type dbo:Lake } UNION { ?uri dct:subject dbc:Rivers_and_streams_of_South_Carolina } }" + }, + "answers": [ + { + "head": { "vars": ["c"] }, + "results": { + "bindings": [{ "c": { "type": "literal", "value": "15" } }] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/South_Carolina", + "surface form": "South Carolina" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/river", + "surface form": "rivers" + }, + { "URI": "http://dbpedia.org/ontology/lake", "surface form": "lakes" } + ] + }, + { + "id": "116", + "answertype": "resource", + "aggregation": false, + "onlydbo": false, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Who was called Rodzilla?", + "keywords": "called, Rodzilla" + } + ], + "query": { + "sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://xmlns.com/foaf/0.1/nick> \"Rodzilla\"@en }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rodney_Blake" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Rodzilla", + "surface form": "Rodzilla" + } + ], + "relations": [ + { "URI": "http://dbpedia.org/ontology/alias", "surface form": "called" } + ] + }, + { + "id": "138", + "answertype": "resource", + "aggregation": false, + "onlydbo": false, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Give me the capitals of all countries in Africa.", + "keywords": "Africa, country, capital" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbc: <http://dbpedia.org/resource/Category:> PREFIX dct: <http://purl.org/dc/terms/> SELECT DISTINCT ?uri WHERE { ?country dct:subject dbc:Countries_in_Africa ; dbo:capital ?uri }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ouagadougou" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mbabane" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kigali" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bissau" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Juba" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Khartoum" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Addis_Ababa" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Libreville" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lilongwe" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nairobi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Djibouti_(city)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lom\u00e9" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Freetown" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Maseru" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bujumbura" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Malabo" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bangui" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mogadishu" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dakar" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Laayoune" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tunis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Harare" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Accra" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Brazzaville" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lusaka" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/S\u00e3o_Tom\u00e9" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rabat" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cape_Town" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Conakry" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Asmara" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Yaound\u00e9" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tifariti" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Monrovia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Niamey" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Yamoussoukro" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bloemfontein" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lobamba" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Porto-Novo" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Victoria,_Seychelles" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Abidjan" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cairo" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tripoli" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/N'Djamena" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bamako" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Antananarivo" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Maputo" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Luanda" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Moroni,_Comoros" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Praia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kinshasa" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pretoria" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Abuja" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Algiers" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nouakchott" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Windhoek" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hargeisa" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Banjul" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dodoma" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Port_Louis" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Countries_of_the_United_Kingdom", + "surface form": "countries" + }, + { + "URI": "http://dbpedia.org/resource/Africa", + "surface form": "Africa" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/principal", + "surface form": "capitals" + } + ] + }, + { + "id": "177", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Which bridges are of the same type as the Manhattan Bridge?", + "keywords": "bridge, same type, Manhattan Bridge" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX dbr: <http://dbpedia.org/resource/> SELECT DISTINCT ?bridge WHERE { dbr:Manhattan_Bridge dbo:type ?type . ?bridge dbo:type ?type ; rdf:type dbo:Bridge }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Claiborne_Pell_Newport_Bridge" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Xihoumen_Bridge" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/\u00cele_d'Orl\u00e9ans_Bridge" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Yichang_Yangtze_River_Highway_Bridge" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chain_Bridge_(Budapest)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Forth_Road_Bridge" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tajik\u2013Afghan_bridge_at_Tem-Demogan" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Beipan_River_Guanxing_Highway_Bridge" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Liede_Bridge" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ask\u00f8y_Bridge" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Yangmingtan_Bridge" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hammersmith_Bridge" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Simon_Kenton_Memorial_Bridge" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Fatih_Sultan_Mehmet_Bridge" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Fort_Steuben_Bridge" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bear_Mountain_Bridge" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Arapuni_Suspension_Bridge" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Malacca_Strait_Bridge__Malacca_Strait_Bridge__1" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Millennium_Bridge,_London" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Two_Cent_Bridge" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Thousand_Islands_Bridge" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Market_Street_Bridge_(Steubenville)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lokkaren_Bridge" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Daly's_bridge" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Fort_Edmonton_Footbridge" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hal_W._Adams_Bridge" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Albert_Bridge,_London" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Peak_Walk" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Samora_Machel_Bridge" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Fyksesund_Bridge" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kurushima-Kaiky\u014d_Bridge" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Namhae_Bridge" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Huangpu_Bridge" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ozimek_Suspension_Bridge" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Menai_Suspension_Bridge" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gwangandaegyo" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Xiling_Yangtze_River_Bridge" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Zunyi_Bridge" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Williamsburg_Bridge" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tamar_Bridge" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bridge_for_Kids" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bosphorus_Bridge" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Shantou_Bay_Bridge" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/\u00c7anakkale_1915_Bridge" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Choluteca_Bridge" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Throgs_Neck_Bridge" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Clifton_Suspension_Bridge" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kuala_Krai_Bridge" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Innoshima_Bridge" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bronx\u2013Whitestone_Bridge" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hennepin_Avenue_Bridge" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gjemnessund_Bridge" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hampden_Bridge_(Kangaroo_Valley)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Oster\u00f8y_Bridge" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Manhattan_Bridge" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Niagara_Falls_Suspension_Bridge" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Angers_Bridge" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Howrah_Bridge" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kvalsund_Bridge" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Yavuz_Sultan_Selim_Bridge" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tancarville_Bridge" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Elisabeth_Bridge_(Budapest)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bidwell_Bar_Bridge" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kattel_Bridge" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gateway_Bridge_(Illinois\u2013Iowa)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Stord_Bridge" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Royal_Gorge_Bridge__Royal_Gorge_Bridge__1" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Grand_Tower_Pipeline_Bridge" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Osman_Gazi_Bridge" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Aizhai_Bridge" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/25_de_Abril_Bridge" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Andy_Warhol_Bridge" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lawas_Bridge" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Roebling's_Delaware_Aqueduct" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Waldo\u2013Hancock_Bridge" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/San_Francisco\u2013Oakland_Bay_Bridge" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hakuch\u014d_Bridge" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ambassador_Bridge" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/St._Johns_Bridge" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Thu\u1eadn_Ph\u01b0\u1edbc_Bridge" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chesapeake_Bay_Bridge" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/A._Murray_MacKay_Bridge" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Erfjord_Bridge" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Otowi_Suspension_Bridge" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Anthony_Wayne_Bridge" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Yeongjong_Bridge" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Varodd_Bridge" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Golden_Gate_Bridge" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/N\u00e6r\u00f8ysund_Bridge" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Carquinez_Bridge" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/U.S._Grant_Bridge" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hakata\u2013\u014cshima_Bridge" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Allen_Street_Bridge_disaster" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Waco_Suspension_Bridge" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dazi_Bridge" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/H\u00f6ga_Kusten_Bridge" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Fourth_Nanjing_Yangtze_Bridge" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sidu_River_Bridge" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Satok_Bridge" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Amu_Darya_Pipeline_Bridge" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Luding_Bridge" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mount_Hope_Bridge" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kutai_Kartanegara_Bridge" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pierre_Laporte_Bridge" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Semey_Bridge" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sewells_Road_Bridge" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tacoma_Narrows_Bridge_(1950)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hercilio_Luz_Bridge" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Humber_Bridge" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chain_Bridge_(Massachusetts)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Emmerich_Rhine_Bridge" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Yi_Sun-sin_Bridge" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Walter_Taylor_Bridge" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/South_Tenth_Street_Bridge" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Riegelsville_Bridge" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Matadi_Bridge" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kingston\u2013Port_Ewen_Suspension_Bridge" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jim_Stynes_Bridge" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Puente_Colgante_(Manila)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Brooklyn_Bridge" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Runyang_Yangtze_River_Bridge" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Roberto_Clemente_Bridge" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rombak_Bridge" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/\u014cnaruto_Bridge" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hirado_Bridge" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/EG_LNG_Pipeline_Suspension_Bridge" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pingsheng_Bridge" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Humen_Pearl_River_Bridge" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Great_Belt_Fixed_Link" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Beaver_Bridge_(Arkansas)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tjeldsund_Bridge" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Haicang_Bridge" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mid-Hudson_Bridge" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Seaway_International_Bridge" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vincent_Thomas_Bridge" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/\u00c4lvsborg_Bridge" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lions_Gate_Bridge" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Yangluo_Yangtze_River_Bridge" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Triborough_Bridge" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Beipan_River_Hukun_Expressway_Bridge" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kangaroo_Point_Bridge" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hardanger_Bridge" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Puente_de_Occidente" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nicholas_Chain_Bridge" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jiangyin_Yangtze_River_Bridge" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tajik\u2013Afghan_Friendship_Bridge" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tacoma_Narrows_Bridge_(1940)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Akashi_Kaiky\u014d_Bridge" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pont_d'Aquitaine" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lumberville\u2013Raven_Rock_Bridge" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Angus_L._Macdonald_Bridge" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/B\u00f8mla_Bridge" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Guy_West_Bridge" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lysefjord_Bridge" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Severn_Bridge" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Wheeling_Suspension_Bridge" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mackinac_Bridge" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sotra_Bridge" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ogdensburg\u2013Prescott_International_Bridge" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Porthill_Bridge" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Manhattan_Bridge", + "surface form": "Manhattan Bridge" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/abstract", + "surface form": "bridges" + }, + { "URI": "http://dbpedia.org/ontology/type", "surface form": "type" } + ] + }, + { + "id": "101", + "answertype": "number", + "aggregation": true, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "How many companies were founded by the founder of Facebook?", + "keywords": "companies, founded by, founder, Facebook" + } + ], + "query": { + "sparql": "SELECT (COUNT(DISTINCT ?x) AS ?c) WHERE { <http://dbpedia.org/resource/Facebook> <http://dbpedia.org/ontology/foundedBy> ?uri . ?x <http://dbpedia.org/ontology/foundedBy> ?uri }" + }, + "answers": [ + { + "head": { "vars": ["c"] }, + "results": { + "bindings": [{ "c": { "type": "literal", "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/Facebook", + "surface form": "Facebook" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/foundingYear", + "surface form": "founded" + }, + { + "URI": "http://dbpedia.org/ontology/founder", + "surface form": "founder" + } + ] + }, + { + "id": "14", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Show me hiking trails in the Grand Canyon where there's no danger of flash floods.", + "keywords": "hiking trails, Grand Canyon, no danger of flash floods" + } + ], + "query": { + "sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/trailheads> <http://dbpedia.org/resource/Grand_Canyon> FILTER NOT EXISTS { ?uri <http://dbpedia.org/property/hazards> <http://dbpedia.org/resource/Flash_flood> } }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bright_Angel_Trail" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Hiking", + "surface form": "hiking trails" + }, + { + "URI": "http://dbpedia.org/resource/Grand_Canyon", + "surface form": "Grand Canyon" + } + ], + "relations": [ + { "URI": "http://dbpedia.org/ontology/show", "surface form": "show" }, + { + "URI": "http://dbpedia.org/ontology/leader", + "surface form": "danger" + }, + { + "URI": "http://dbpedia.org/ontology/band", + "surface form": "flash floods" + } + ] + }, + { + "id": "87", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Which book has the most pages?", + "keywords": "book, the most pages" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Book ; dbo:numberOfPages ?n } ORDER BY DESC(?n) OFFSET 0 LIMIT 1" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Tolkien_Reader" + } + } + ] + } + } + ], + "entities": [], + "relations": [ + { "URI": "http://dbpedia.org/ontology/volume", "surface form": "book" } + ] + }, + { + "id": "148", + "answertype": "resource", + "aggregation": false, + "onlydbo": false, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "What is the largest state in the United States?", + "keywords": "largest state, United States" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dct: <http://purl.org/dc/terms/> PREFIX dbc: <http://dbpedia.org/resource/Category:> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT ?uri WHERE { ?uri dct:subject dbc:States_of_the_United_States ; rdf:type dbo:AdministrativeRegion ; dbo:areaTotal ?area } ORDER BY DESC(?area) OFFSET 0 LIMIT 1" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Alaska" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/United_States", + "surface form": "United States" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/areaTotal", + "surface form": "largest" + } + ] + }, + { + "id": "43", + "answertype": "resource", + "aggregation": false, + "onlydbo": false, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Give me the websites of companies with more than 500000 employees.", + "keywords": "website, company, employee, more than 500000" + } + ], + "query": { + "sparql": "PREFIX foaf: <http://xmlns.com/foaf/0.1/> PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> SELECT distinct ?web WHERE { ?sub dbo:numberOfEmployees ?obj . ?sub foaf:homepage ?web FILTER( xsd:integer(?obj) > 500000 ) . }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { "uri": { "type": "uri", "value": "https://www.usps.com/" } }, + { + "uri": { + "type": "uri", + "value": "http://www.baytexenergy.com/" + } + }, + { + "uri": { + "type": "uri", + "value": "http://www.petrochina.com.cn/ptr/" + } + }, + { + "uri": { "type": "uri", "value": "http://www.koelnmesse.com" } + }, + { "uri": { "type": "uri", "value": "http://www.umw.com.my" } }, + { "uri": { "type": "uri", "value": "http://www.molmed.com/" } }, + { "uri": { "type": "uri", "value": "http://en.mvd.ru" } }, + { + "uri": { + "type": "uri", + "value": "http://www.sgcc.com.cn/ywlm/default.shtml" + } + }, + { "uri": { "type": "uri", "value": "http://www.moe.gov.my/" } }, + { "uri": { "type": "uri", "value": "http://volkswagenag.com" } }, + { "uri": { "type": "uri", "value": "http://www.tcs.com/" } }, + { "uri": { "type": "uri", "value": "http://www.umw.com.my/" } }, + { "uri": { "type": "uri", "value": "http://www.oxy.com" } }, + { + "uri": { "type": "uri", "value": "http://www.peopleready.com" } + }, + { "uri": { "type": "uri", "value": "http://www.issworld.com/" } }, + { "uri": { "type": "uri", "value": "http://www.foxconn.com" } }, + { "uri": { "type": "uri", "value": "http://www.defense.gov" } }, + { "uri": { "type": "uri", "value": "http://www.yum.com/" } }, + { + "uri": { "type": "uri", "value": "http://www.carverbank.com" } + }, + { + "uri": { "type": "uri", "value": "http://www.chinapost.com.cn" } + }, + { + "uri": { + "type": "uri", + "value": "http://www.molmed.com/financial-reports?language=en" + } + }, + { "uri": { "type": "uri", "value": "http://www.marykay.com/" } }, + { + "uri": { + "type": "uri", + "value": "http://www.cpgroupglobal.com" + } + }, + { "uri": { "type": "uri", "value": "http://www.errt.org/" } }, + { "uri": { "type": "uri", "value": "http://www.mod.gov.pk/" } }, + { + "uri": { "type": "uri", "value": "http://www.baytexenergy.com" } + }, + { "uri": { "type": "uri", "value": "http://lindenlab.com/" } }, + { "uri": { "type": "uri", "value": "http://www.tesco.com" } }, + { "uri": { "type": "uri", "value": "http://www.tcs.com" } }, + { + "uri": { + "type": "uri", + "value": "http://www.permasteelisagroup.com/" + } + }, + { "uri": { "type": "uri", "value": "http://rostec.ru/en/" } }, + { "uri": { "type": "uri", "value": "http://en.mvd.ru/" } }, + { + "uri": { "type": "uri", "value": "http://www.bundespost.de/" } + }, + { + "uri": { "type": "uri", "value": "http://www.cnpc.com.cn/en/" } + }, + { + "uri": { "type": "uri", "value": "http://www.bahriatown.com/" } + }, + { "uri": { "type": "uri", "value": "http://www.tata.com/" } }, + { + "uri": { + "type": "uri", + "value": "http://www.indianrailways.gov.in" + } + }, + { "uri": { "type": "uri", "value": "http://www.avic.com/en" } }, + { "uri": { "type": "uri", "value": "http://www.nuffnang.com" } }, + { "uri": { "type": "uri", "value": "http://www.telent.com/" } }, + { + "uri": { + "type": "uri", + "value": "http://www.moiegypt.gov.eg/english" + } + }, + { + "uri": { + "type": "uri", + "value": "http://www.indianrailways.gov.in/" + } + }, + { "uri": { "type": "uri", "value": "http://g4s.com" } } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Websites_blocked_in_Pakistan", + "surface form": "websites" + }, + { + "URI": "http://dbpedia.org/resource/Companies_listed_on_the_New_York_Stock_Exchange_(J)", + "surface form": "companies" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/numberOfEmployees", + "surface form": "500000 employees" + } + ] + }, + { + "id": "179", + "answertype": "resource", + "aggregation": false, + "onlydbo": false, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "What were the names of the three ships by Columbus?", + "keywords": "three ships, used, Columbus" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dct: <http://purl.org/dc/terms/> PREFIX dbc: <http://dbpedia.org/resource/Category:> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT ?uri WHERE { ?uri rdf:type dbo:Ship ; dct:subject dbc:Christopher_Columbus ; dct:subject dbc:Exploration_ships }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Santa_Mar\u00eda_(ship)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pinta_(ship)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ni\u00f1a" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Columbus", + "surface form": "Columbus" + } + ], + "relations": [ + { "URI": "http://dbpedia.org/ontology/title", "surface form": "names" }, + { + "URI": "http://dbpedia.org/ontology/shipBeam", + "surface form": "ships" + } + ] + } + ] +} diff --git a/data/qald-9-train-linked-tokenized.csv b/data/qald-9-train-linked-tokenized.csv new file mode 100644 index 0000000000000000000000000000000000000000..fb6d2e8908cdb7529301a54c1f1a8ce745b8e5e8 --- /dev/null +++ b/data/qald-9-train-linked-tokenized.csv @@ -0,0 +1,409 @@ +text,summary +"List all boardgames by res:Generic_Mapping_Tools.", "SELECT ?uri WHERE { ?uri dbo:publisher res:GMT_Games }" +"Who developed res:Skype?", "SELECT DISTINCT ?uri WHERE { res:Skype dbo:developer ?uri. }" +"Which people were born in res:Heraklion?", "SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Person ; onto:birthPlace res:Heraklion. }" +"In which U.S. state is res:Area_51 located?", "SELECT DISTINCT ?uri WHERE { res:Area_51 dbo:location ?uri . ?uri dbo:country res:United_States. }" +"Who is the mayor of res:New_York_City?", "SELECT DISTINCT ?uri WHERE { res:New_York_City dbo:leaderName ?uri }" +"Which res:Countries_of_the_United_Kingdom have places with more than two res:Caves_of_Aggtelek_Karst_and_Slovak_Karst?", "SELECT DISTINCT ?uri WHERE { ?cave rdf:type dbo:Cave ; dbo:location ?uri . ?uri rdf:type dbo:Country } GROUP BY ?uri HAVING ( COUNT( ?cave) 2 )" +"Where did res:Abraham_Lincoln die?", "SELECT DISTINCT ?uri WHERE { res:Abraham_Lincoln dbo:deathPlace ?uri. }" +"Which airports does res:Air_China serve?", "SELECT DISTINCT ?uri WHERE { res:Air_China dbo:targetAirport ?uri }" +"Give me all actors starring in movies directed by and starring res:William_Shatner.", "SELECT DISTINCT ?uri WHERE { ?x dbo:director res:William_Shatner ; dbo:starring res:William_Shatner { ?x dbo:starring ?uri } UNION { ?x dbp:starring ?uri } }" +"What are the official languages of the res:Philippines?", "SELECT DISTINCT ?uri WHERE { res:Philippines dbo:officialLanguage ?uri }" +"Give me all res:Denmark.", "SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Film ; dbo:country res:Denmark }" +"Which movies starring res:Brad_Pitt were directed by res:Guy_Ritchie?", "SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Film ; dbo:starring res:Brad_Pitt ; dbo:director res:Guy_Ritchie }" +"Give me the grandchildren of res:Bruce_Lee.", "SELECT DISTINCT ?uri WHERE { res:Bruce_Lee dbo:child ?child . ?child dbp:children ?uri }" +"Which other weapons did the designer of the res:Uzi develop?", "SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Weapon ; dbp:designer ?x . res:Uzi dbp:designer ?x FILTER ( ?uri != res:Uzi ) }" +"Who is the owner of res:Universal_Studios?", "SELECT DISTINCT ?uri WHERE { res:Universal_Studios dbo:owner ?uri }" +"Which state of the res:Usa_District,_Ōita has the res:Population_density?", "SELECT DISTINCT ?uri WHERE { ?uri rdf:type yago:WikicatStatesOfTheUnitedStates ; dbp:densityrank ?rank } ORDER BY ASC(?rank) LIMIT 1" +"Which monarchs were married to a res:Germany?", "SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Monarch ; dbo:spouse ?spouse { ?spouse dbo:birthPlace res:Germany } UNION { ?spouse dbo:birthPlace ?p . ?p dbo:country res:Germany } }" +"Which organizations were founded in res:1950?", "SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Organisation { ?uri dbo:formationYear ?date } UNION { ?uri dbo:foundingYear ?date } UNION { ?uri dbp:foundation ?date } UNION { ?uri dbp:formation ?date } FILTER regex(?date, "^1950") }" +"Who created the res:Captain_Comic?", "SELECT DISTINCT ?uri WHERE { res:Captain_America dbo:creator ?uri }" +"Give me the res:Apollo_14.", "SELECT DISTINCT ?uri WHERE { ?uri dbo:mission res:Apollo_14 }" +"Who wrote the book The pillars of the Earth?", "SELECT DISTINCT ?uri WHERE { res:The_Pillars_of_the_Earth dbo:author ?uri }" +"Which state of the res:United_States has the highest density?", "SELECT ?uri WHERE { ?uri dbp:densityrank ?density } ORDER BY ASC(?density) LIMIT 1" +"Which spaceflights were launched from res:Baikonur_Cosmodrome_Site_110?", "SELECT DISTINCT ?uri WHERE { ?uri dbp:launchPad res:Baikonur_Cosmodrome }" +"Give me a list of all res:Trumpet that were res:List_of_American_big_band_bandleaders.", "SELECT DISTINCT ?uri WHERE { ?uri dbo:occupation res:Bandleader ; dbo:instrument res:Trumpet }" +"Which U.S. states are in the same timezone as res:Utah?", "SELECT DISTINCT ?uri WHERE { res:Utah dbp:timezone ?x . ?uri rdf:type yago:WikicatStatesOfTheUnitedStates ; dbp:timezone ?x FILTER ( ?uri != res:Utah ) }" +"Which U.S. states possess gold minerals?", "SELECT DISTINCT ?uri WHERE { ?uri rdf:type yago:WikicatStatesOfTheUnitedStates ; dbp:mineral ?mineral FILTER regex(?mineral, "gold", "i") }" +"Who is the daughter of res:Ingrid_Bergman married to?", "SELECT DISTINCT ?uri WHERE { res:Ingrid_Bergman dbo:child ?child . ?child dbp:spouse ?uri }" +"How deep is res:Lake_Placid?", "SELECT DISTINCT ?n WHERE { res:Lake_Placid_(Texas) dbo:maximumDepth ?n }" +"Show me all res:Museums_in_Aalborg in res:London.", "SELECT DISTINCT ?uri WHERE { ?uri a dbo:Museum ; dbo:location res:London }" +"Which res:Caves_of_Aggtelek_Karst_and_Slovak_Karst have more than 3 entrances?", "SELECT DISTINCT ?uri WHERE { ?uri a dbo:Cave ; dbp:entranceCount ?entrance FILTER ( ?entrance 3 ) }" +"Who is the tallest player of the res:Atlanta_Falcons?", "SELECT DISTINCT ?uri WHERE { ?uri dbo:team res:Atlanta_Falcons ; dbo:height ?h } ORDER BY DESC(?h) OFFSET 0 LIMIT 1" +"What are the res:Action_role-playing_games according to res:IGN?", "SELECT DISTINCT ?uri WHERE { ?uri http://purl.org/dc/terms/subject res:Category:Action_role-playing_video_games ; dbp:ign ?score } ORDER BY DESC(?score) LIMIT 10" +"Give me all writers that won the res:Nobel_Prize in res:Literature.", "SELECT DISTINCT ?uri WHERE { ?uri a dbo:Writer ; dbo:award res:Nobel_Prize_in_Literature }" +"Show me all res:National_Basketball_Players_Association that are higher than 2 meters.", "SELECT DISTINCT ?uri WHERE { ?uri a dbo:BasketballPlayer ; dbo:height ?n FILTER ( ?n 2.0 ) }" +"When was the res:Statue_of_Liberty built?", "SELECT DISTINCT ?date WHERE { res:Statue_of_Liberty dbp:beginningDate ?date }" +"Which states border res:Illinois?", "SELECT DISTINCT ?uri WHERE { res:Illinois dbp:borderingstates ?uri }" +"Who developed res:Minecraft?", "SELECT DISTINCT ?uri WHERE { res:Minecraft dbo:developer ?uri }" +"Where did res:Hillel_Slovak die?", "SELECT DISTINCT ?uri WHERE { res:Hillel_Slovak dbo:deathPlace ?uri }" +"What movies does res:Jesse_Eisenberg play in?", "SELECT DISTINCT ?uri WHERE { ?uri a dbo:Film ; dbo:starring res:Jesse_Eisenberg }" +"Give all res:Swimmers_(film) that were born in res:Moscow.", "SELECT DISTINCT ?uri WHERE { ?uri a dbo:Swimmer ; dbo:birthPlace res:Moscow }" +"Give me all cosmonauts.", "SELECT DISTINCT ?uri WHERE { ?uri a dbo:Astronaut { ?uri dbo:nationality res:Russia } UNION { ?uri dbo:nationality res:Soviet_Union } }" +"Give me all res:Non–profit_organizations_based_in_California.", "SELECT DISTINCT ?uri WHERE { ?uri dbo:type res:Nonprofit_organization { ?uri dbo:location res:Switzerland } UNION { ?uri dbo:location ?x . ?x dbo:country res:Switzerland } }" +"Which presidents were born in res:1945?", "SELECT DISTINCT ?uri WHERE { ?uri a dbo:President ; dbo:birthDate ?date FILTER regex(?date, "^1945") }" +"What kind of music did res:Lou_Reed play?", "SELECT DISTINCT ?uri WHERE { res:Lou_Reed dbo:genre ?uri }" +"Where do the res:Boston_Red_Sox play?", "SELECT DISTINCT ?uri WHERE { res:Boston_Red_Sox dbp:ballpark ?uri }" +"Show a list of soccer clubs that play in the res:Bundesliga.", "SELECT DISTINCT ?uri WHERE { ?uri a dbo:SoccerClub ; dbo:league res:Bundesliga }" +"Which res:Billings_Volcanos_(basketball) in res:Japan erupted since res:2000?", "SELECT DISTINCT ?uri WHERE { ?uri a dbo:Volcano ; dbo:locatedInArea res:Japan ; dbo:eruptionYear ?date FILTER ( year(?date) = 2000 ) }" +"Which bridges cross the res:Seine?", "SELECT DISTINCT ?uri WHERE { ?uri a dbo:Bridge ; dbo:crosses res:Seine }" +"What is the official color of the res:University_of_Oxford?", "SELECT DISTINCT ?string WHERE { res:University_of_Oxford dbo:officialSchoolColour ?string }" +"How many films did res:Hal_Roach produce?", "SELECT (COUNT( DISTINCT ?uri) AS ?c) WHERE { ?uri dbo:producer res:Hal_Roach }" +"Give me all res:Denmark.", "SELECT DISTINCT ?uri WHERE { ?uri a dbo:Film ; dbo:country res:Denmark }" +"What is the most frequent cause of death?", "SELECT DISTINCT ?x WHERE { ?uri dbo:deathCause ?x . } ORDER BY DESC(COUNT( DISTINCT ?uri)) OFFSET 0 LIMIT 1" +"Who are the four youngest res:NBA_Most_Valuable_Player_Award res:National_Basketball_Players_Association?", "SELECT DISTINCT ?uri WHERE { ?uri a dbo:BasketballPlayer ; dbo:birthDate ?date ; dbp:highlights ?h FILTER regex(?h, "MVP") } ORDER BY DESC(?date) OFFSET 0 LIMIT 4" +"Give me all res:Companies_listed_on_the_New_York_Stock_Exchange_(J) in res:Munich.", "SELECT DISTINCT ?uri WHERE { ?uri a dbo:Company { ?uri dbo:location res:Munich } UNION { ?uri dbo:headquarter res:Munich } UNION { ?uri dbo:locationCity res:Munich } }" +"Give me the capitals of all res:Countries_of_the_United_Kingdom that the res:Himalayas run through.", "SELECT DISTINCT ?uri WHERE { res:Himalayas dbo:country ?country . ?country dbo:capital ?uri }" +"How many movies did res:Park_Chan-wook?", "SELECT COUNT( DISTINCT ?uri AS ?uri) WHERE { ?uri dbo:director res:Park_Chan-wook . }" +"Which rivers flow into a res:Germany?", "SELECT DISTINCT ?uri WHERE { ?uri a dbo:River . ?x dbo:inflow ?uri ; a dbo:Lake ; dbo:country res:Germany }" +"How many airlines are there?", "SELECT (COUNT( DISTINCT ?uri) AS ?c) WHERE { ?uri a dbo:Airline }" +"Give me all islands that belong to res:Japan.", "SELECT DISTINCT ?uri WHERE { ?uri a dbo:Island ; dbo:country res:Japan }" +"How many inhabitants does res:Maribor have?", "SELECT DISTINCT ?num WHERE { res:Maribor dbo:populationTotal ?num }" +"Give me all res:Apollo_14.", "SELECT DISTINCT ?uri WHERE { ?uri dbo:mission res:Apollo_14 }" +"Which res:Companies_listed_on_the_New_York_Stock_Exchange_(J) have more than 1 million employees?", "SELECT DISTINCT ?uri WHERE { ?uri a dbo:Company { ?uri dbo:numberOfEmployees ?n } UNION { ?uri dbp:numEmployees ?n } FILTER ( ?n 1000000 ) }" +"In which films directed by res:Garry_Marshall starring?", "SELECT DISTINCT ?uri WHERE { ?uri a dbo:Film ; dbo:starring res:Julia_Roberts ; dbo:director res:Garry_Marshall }" +"Give me all soccer clubs in the res:Premier_League.", "SELECT DISTINCT ?uri WHERE { ?uri a dbo:SoccerClub ; dbo:league res:Premier_League }" +"What is the highest place of the res:Urals_Mussorgsky_State_Conservatoire?", "SELECT DISTINCT ?uri WHERE { res:Ural_Mountains dbp:highest ?uri }" +"Who is the governor of res:Wyoming?", "SELECT DISTINCT ?uri WHERE { res:Wyoming dbp:governor ?uri }" +"Where did the architect of the res:Eiffel_Tower?", "SELECT DISTINCT ?uri WHERE { res:Eiffel_Tower dbo:architect ?x . ?x dbp:almaMater ?uri }" +"Give me all world heritage sites designated within the past two years.", "SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:WorldHeritageSite . { ?uri dbp:year '2013'^^xsd:integer . } UNION { ?uri dbp:year '2014'^^xsd:integer . } }" +"Give me all actors who were born in res:Paris after res:1950.", "SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Actor . ?uri dbo:birthPlace res:Paris . ?uri dbo:birthDate ?date . FILTER ( ?date = xsd:dateTime('1950-12-31T00:00:00Z')) }" +"Which movies star both res:Liz:_The_Elizabeth_Taylor_Story and res:Richard_Burton?", "SELECT DISTINCT ?uri WHERE { ?uri dbo:starring res:Elizabeth_Taylor ; dbo:starring res:Richard_Burton }" +"Give me all res:Australia.", "SELECT DISTINCT ?uri WHERE { ?uri dbo:type res:Nonprofit_organization { ?uri dbo:locationCountry res:Australia } UNION { ?uri dbo:location ?x . ?x dbo:country res:Australia } }" +"Which pope succeeded res:John_Paul res:Ii?", "SELECT DISTINCT ?uri WHERE { res:Pope_John_Paul_II dbp:successor ?uri }" +"Give me all res:European_Free_Trade_Association_Surveillance_Authority astronauts.", "SELECT DISTINCT ?uri WHERE { ?uri a dbo:Astronaut ; dbp:type res:European_Space_Agency }" +"Who was president of res:Pakistan in res:1978?", "SELECT DISTINCT ?uri WHERE { ?uri dbp:title res:President_of_Pakistan ; dbp:years 1978 }" +"Who is the owner of res:Rolls-Royce?", "SELECT DISTINCT ?uri WHERE { res:Rolls-Royce_Motors dbo:owner ?uri }" +"How many res:Museums_in_Aalborg does res:Paris have?", "SELECT DISTINCT ?uri WHERE { ?uri a dbo:Museum ; dbo:location res:Paris }" +"Where was res:John_F._Kennedy_International_Airport assassinated?", "SELECT DISTINCT ?uri WHERE { res:John_F._Kennedy dbo:deathPlace ?uri }" +"Give me all federal chancellors of res:Germany.", "SELECT DISTINCT ?uri WHERE { ?uri a dbo:Person { ?uri dbo:office "Chancellor of Germany" } UNION { ?uri dbp:office res:Chancellor_of_Germany } }" +"Show me everyone who was born on res:Halloween.", "SELECT DISTINCT ?uri WHERE { ?uri a dbo:Person { ?uri dbo:birthDate ?date } UNION { ?uri dbp:birthDate ?date } res:Halloween dbp:date ?date }" +"Which beer originated in res:Ireland?", "SELECT DISTINCT ?uri WHERE { ?uri dbp:type res:Beer ; dbo:origin res:Beer_in_Ireland }" +"To which res:Countries_of_the_United_Kingdom does the res:Himalayan system extend?", "SELECT DISTINCT ?uri WHERE { res:Himalayas dbo:country ?uri }" +"Which actors were born in res:Germany?", "SELECT DISTINCT ?uri WHERE { ?uri a dbo:Actor { ?uri dbo:birthPlace res:Germany } UNION { ?uri dbo:birthPlace ?place . ?place dbo:country res:Germany } }" +"How much res:Carby does res:Peanut_butter have?", "SELECT DISTINCT ?carbs WHERE { res:Peanut_butter dbp:carbs ?carbs }" +"Who produced the most films?", "SELECT DISTINCT ?uri WHERE { ?film rdf:type dbo:Film . ?film dbo:producer ?uri . } ORDER BY DESC(COUNT( ?film)) OFFSET 0 LIMIT 1" +"How many employees does res:Google have?", "SELECT DISTINCT ?num WHERE { res:Google dbo:numberOfEmployees ?num }" +"Give me all actors who were born in res:Berlin.", "SELECT DISTINCT ?uri WHERE { ?uri a dbo:Actor ; dbo:birthPlace res:Berlin }" +"Who created res:Goofy?", "SELECT DISTINCT ?uri WHERE { res:Goofy dbo:creator ?uri }" +"Which music albums contain the res:The_Last_Song_(film)?", "SELECT DISTINCT ?uri WHERE { ?single dbo:album ?uri ; rdfs:label "Last Christmas"@en }" +"When was res:Alberta admitted as province?", "SELECT DISTINCT ?date WHERE { res:Alberta dbp:admittancedate ?date }" +"How many missions does the res:Soyuz_programme have?", "SELECT (COUNT( DISTINCT ?uri) AS ?c) WHERE { ?uri dbp:programme res:Soyuz_programme }" +"Give me all the res:Tv_test_pattern shows with res:Neil_Patrick_Harris.", "SELECT DISTINCT ?uri WHERE { ?uri a dbo:TelevisionShow ; dbo:starring res:Neil_Patrick_Harris }" +"When were the res:Hells_Angels founded?", "SELECT DISTINCT ?date WHERE { res:Hells_Angels dbp:founded ?date }" +"What is the net income of res:Apple_Inc.?", "SELECT DISTINCT ?ni WHERE { res:Apple_Inc. dbo:netIncome ?ni }" +"Give me all res:Sweden.", "SELECT DISTINCT ?uri WHERE { ?uri a dbo:Holiday ; dbo:country res:Sweden }" +"In which city was the res:Juliana_Maria_of_Brunswick-Wolfenbüttel buried?", "SELECT DISTINCT ?uri WHERE { res:Juliana_of_the_Netherlands dbp:burialPlace ?uri . ?uri a dbo:Settlement }" +"List all the musicals with music by res:Leonard_Bernstein.", "SELECT DISTINCT ?uri WHERE { ?uri a dbo:Musical ; dbo:musicBy res:Leonard_Bernstein }" +"Give me all res:Companies_listed_on_the_New_York_Stock_Exchange_(J) in the advertising industry.", "SELECT (COUNT( DISTINCT ?uri) AS ?c) WHERE { ?uri a dbo:Company { ?uri dbo:industry res:Advertising } UNION { ?uri dbo:industry ?industry FILTER regex(?industry, "advertising", "i") } }" +"What is the res:Metropolitan_area in res:Washington state?", "SELECT DISTINCT ?uri WHERE { res:Washington_(state) dbp:largestmetro ?uri }" +"Who killed res:John_Lennon?", "SELECT DISTINCT ?uri WHERE { ?uri a dbo:Person ; dbp:conviction res:Death_of_John_Lennon }" +"Which writers studied in res:Istanbul?", "SELECT DISTINCT ?uri WHERE { ?uri a dbo:Writer { ?uri dbo:almaMater ?x } UNION { ?uri dbo:education ?x } { ?x dbo:city res:Istanbul } UNION { ?x dbp:city res:Istanbul } }" +"Give me all res:Australia.", "SELECT DISTINCT ?uri WHERE { ?uri a dbo:Band ; dbo:genre res:Metalcore { ?uri dbo:hometown res:Australia } UNION { ?uri dbo:hometown ?h . ?h dbo:country res:Australia } }" +"Which res:Countries_of_the_United_Kingdom adopted the res:Euro?", "SELECT DISTINCT ?uri WHERE { ?uri a dbo:Country { ?uri dbo:currency res:Euro } UNION { ?uri dbp:currencyCode "EUR"@en } }" +"Give me all types of eating res:Disorders_of_consciousness.", "SELECT DISTINCT ?uri WHERE { ?uri a yago:WikicatEatingDisorders }" +"Was res:Marc_Chagall a jew?", "ASK WHERE { res:Marc_Chagall dbp:ethnicity "Jewish"@en }" +"What was res:Brazil's res:RANK in the res:FIFA res:WBSC_World_Rankings?", "SELECT DISTINCT ?n WHERE { res:Brazil_national_football_team dbp:fifaMin ?n }" +"How many films did res:Leonardo_DiCaprio in?", "SELECT (COUNT( DISTINCT ?uri) AS ?c) WHERE { ?uri a dbo:Film ; dbo:starring res:Leonardo_DiCaprio }" +"Was res:Margaret_Thatcher a res:Chemist?", "ASK WHERE { res:Margaret_Thatcher dbo:profession res:Chemist }" +"Which U.S. states are in the same time zone as res:Utah?", "SELECT DISTINCT ?uri WHERE { res:Utah dbp:timezone ?x . ?uri a yago:WikicatStatesOfTheUnitedStates ; dbp:timezone ?x FILTER ( ?uri != res:Utah ) }" +"Give me all books written by res:Danielle_Steel.", "SELECT DISTINCT ?uri WHERE { ?uri a dbo:Book ; dbo:author res:Danielle_Steel }" +"Which country has the most official languages?", "SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Country . ?uri dbp:officialLanguages ?language . } ORDER BY DESC(COUNT( ?language)) OFFSET 0 LIMIT 1" +"What is the total amount of men and women serving in the res:FDNY_Racing?", "SELECT DISTINCT ?num WHERE { res:New_York_City_Fire_Department dbp:employees ?num }" +"Which actor played res:Chewbacca?", "SELECT DISTINCT ?uri WHERE { res:Chewbacca dbo:portrayer ?uri }" +"Give me all res:Libraries_in_Brighton_and_Hove established earlier than res:1400.", "SELECT DISTINCT ?uri WHERE { ?uri a dbo:Library ; dbp:established ?year FILTER ( ?year 1400 ) }" +"Which programming languages were influenced by res:Perl?", "SELECT DISTINCT ?uri WHERE { ?uri a dbo:ProgrammingLanguage { ?uri dbo:influencedBy res:Perl } UNION { res:Perl dbo:influenced ?uri } }" +"In which U.S. state is res:Denali located?", "SELECT DISTINCT ?uri WHERE { res:Mount_McKinley dbo:wikiPageRedirects ?x . ?x dbo:locatedInArea ?uri. ?uri rdf:type yago:WikicatStatesOfTheUnitedStates }" +"What airlines are part of the res:SkyTeam?", "SELECT DISTINCT ?uri WHERE { ?uri a dbo:Airline { ?uri dbo:alliance res:SkyTeam } UNION { ?uri dbo:Alliance res:SkyTeam } }" +"Which ships were called after res:Benjamin_Franklin?", "SELECT DISTINCT ?uri WHERE { ?uri dbp:shipNamesake res:Benjamin_Franklin }" +"Give me all res:Chicago_Politicians.", "SELECT DISTINCT ?uri WHERE { ?uri a dbo:Politician ; dbo:religion res:Methodism }" +"What other books have been written by the author of res:The_Fault_in_Our_Stars?", "SELECT ?books WHERE { ?books dbo:author res:John_Green_(author) }" +"What is the highest mountain?", "SELECT DISTINCT ?uri WHERE { ?uri a dbo:Mountain ; dbo:elevation ?elevation } ORDER BY DESC(?elevation) OFFSET 0 LIMIT 1" +"Which poet wrote the most books?", "SELECT DISTINCT ?uri WHERE { ?uri dbo:occupation res:Poet . ?x dbo:author ?uri . ?x rdf:type dbo:Book . } ORDER BY DESC(COUNT( ?x)) OFFSET 0 LIMIT 1" +"Which programming languages influenced Javascript?", "SELECT DISTINCT ?uri WHERE { ?uri a dbo:ProgrammingLanguage ; dbo:influenced res:JavaScript }" +"Which musician wrote the most books?", "SELECT DISTINCT ?uri WHERE { ?uri dbo:occupation res:Musician . ?x dbo:author ?uri . ?x rdf:type dbo:Book . } ORDER BY DESC(COUNT( ?x)) OFFSET 0 LIMIT 1" +"Which films starring res:Clint_Eastwood did he direct himself?", "SELECT DISTINCT ?uri WHERE { ?uri dbo:director res:Clint_Eastwood ; dbo:starring res:Clint_Eastwood }" +"Which res:Software_Publishing_Corporation has been developed by organizations founded in res:California?", "SELECT DISTINCT ?uri WHERE { ?uri a dbo:Software . ?company a dbo:Company . ?uri dbo:developer ?company . ?company dbo:foundationPlace res:California }" +"Which instruments does res:Cat_Stevens play?", "SELECT DISTINCT ?uri WHERE { res:Cat_Stevens dbo:instrument ?uri }" +"How many airlines are members of the res:Star_Alliance?", "SELECT (COUNT( DISTINCT ?uri) AS ?c) WHERE { ?uri a dbo:Airline ; dbo:alliance res:Star_Alliance }" +"Give me all actors called res:Baldwin.", "SELECT DISTINCT ?uri WHERE { ?uri foaf:surname 'Baldwin'@en . { ?uri dbo:occupation res:Actor . } UNION { ?uri rdf:type dbo:Actor . } }" +"Who wrote res:The_Hunger_Games?", "SELECT DISTINCT ?uri WHERE { res:The_Hunger_Games dbp:author ?uri }" +"For which label did res:Elvis_(1973_album) record his first album?", "SELECT DISTINCT ?uri WHERE { ?x rdf:type dbo:Album ; dbo:artist res:Elvis_Presley ; dbo:releaseDate ?y ; dbo:recordLabel ?uri } ORDER BY ASC(?y) OFFSET 0 LIMIT 1" +"Is res:Christian_Bale starring in res:Batman_Begins?", "ASK WHERE { res:Batman_Begins dbo:starring res:Christian_Bale }" +"Where is the residence of the prime minister of res:Spain?", "SELECT DISTINCT ?uri WHERE { res:Prime_Minister_of_Spain dbp:residence ?uri }" +"Which actor was casted in the most movies?", "SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Actor . ?f rdf:type dbo:Film . ?f dbo:starring ?uri . } ORDER BY DESC(COUNT( DISTINCT(?f))) OFFSET 0 LIMIT 1" +"Which res:Countries_of_the_United_Kingdom have more than two official languages?", "SELECT DISTINCT ?uri WHERE { ?uri a dbo:Country ; dbo:officialLanguage ?language } GROUP BY ?uri HAVING ( COUNT( ?language) 2 )" +"Which res:Countries_of_the_United_Kingdom have more than ten res:Caves_of_Aggtelek_Karst_and_Slovak_Karst?", "SELECT DISTINCT ?uri WHERE { ?uri a dbo:Country . ?cave a dbo:Cave { ?cave dbo:location ?uri } UNION { ?cave dbo:location ?loc . ?loc dbo:country ?uri } } GROUP BY ?uri HAVING ( COUNT( ?cave) 10 )" +"Show me all songs from res:Bruce_Springsteen released between res:1980 and res:1990.", "SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Song . ?uri dbo:artist res:Bruce_Springsteen . ?uri dbo:releaseDate ?date . FILTER (?date = '1980-01-01'^^xsd:date && ?date = '1990-12-31'^^xsd:date) }" +"Which television shows were created by res:John_Cleese?", "SELECT DISTINCT ?uri WHERE { ?uri a dbo:TelevisionShow ; dbo:creator res:John_Cleese }" +"When did res:Join res:Basque_language?", "SELECT DISTINCT ?date WHERE { res:Latvia dbp:accessioneudate ?date }" +"Which res:American_professional_soccer_players_abroad were born on res:Malta?", "SELECT DISTINCT ?uri WHERE { ?uri a dbo:SoccerPlayer ; dbo:birthPlace res:Malta }" +"How many res:Politicians_of_The_Wire graduated from res:Columbia_University?", "SELECT (COUNT( DISTINCT ?uri) AS ?c) WHERE { ?uri dbo:profession res:Politician ; dbo:almaMater res:Columbia_University }" +"Give me the birthdays of all actors of the res:Charmed.", "SELECT DISTINCT ?date WHERE { res:Charmed dbo:starring ?actor . ?actor dbo:birthDate ?date }" +"Which res:Complex_organizations are located in res:Belgium?", "SELECT (COUNT( DISTINCT ?uri) AS ?c) WHERE { ?uri a dbo:Organisation { ?uri dbo:industry res:Telecommunication } UNION { ?uri dbp:industry ?industry FILTER regex(?industry, "Telecommunications") } { ?uri dbo:location res:Belgium } UNION { ?uri dbp:locationCountry "Belgium"@en } }" +"Give me a list of all lakes in res:Denmark.", "SELECT DISTINCT ?uri WHERE { { ?uri a dbo:Lake ; dbo:country res:Denmark } UNION { ?uri a yago:LakesOfDenmark } }" +"How many children does res:Eddie_Murphy have?", "SELECT DISTINCT ?n WHERE { res:Eddie_Murphy dbp:children ?n }" +"Show me all res:English_Gothic_architecture.", "SELECT ?uri WHERE { ?uri a dbo:Building ; dbo:architecturalStyle res:English_Gothic_architecture ; dbo:location res:Kent }" +"Who is the manager of res:Real_Madrid_C.F.?", "SELECT DISTINCT ?uri WHERE { res:Real_Madrid_C.F. dbo:manager ?uri }" +"In which res:Countries_of_the_United_Kingdom can you pay using the West African res:CFA franc?", "SELECT DISTINCT ?uri WHERE { ?uri dbo:currency res:West_African_CFA_franc }" +"Which holidays are celebrated around the world?", "SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Holiday }" +"What is the longest river?", "SELECT DISTINCT ?uri WHERE { ?uri a dbo:River { ?uri dbo:length ?l } UNION { ?uri dbp:length ?l } } ORDER BY DESC(?l) OFFSET 0 LIMIT 1" +"Which organizations were founded in res:1930?", "SELECT DISTINCT ?uri WHERE { ?uri a dbo:Organisation { ?uri dbo:formationYear ?date } UNION { ?uri dbo:foundingYear ?date } FILTER regex(?date, "^1930") }" +"What is the birth name of res:Angela_Merkel?", "SELECT DISTINCT ?string WHERE { res:Angela_Merkel dbp:birthName ?string }" +"Who has res:Tom_Cruise been married to?", "SELECT DISTINCT ?uri WHERE { ?uri dbo:spouse res:Tom_Cruise }" +"Which weapons did res:Heckler_&_Koch develop?", "SELECT DISTINCT ?uri WHERE { ?uri a dbo:Weapon ; dbp:designer res:Heckler_&_Koch }" +"What is the smallest city by area in res:Germany?", "SELECT ?city WHERE { ?m skos:broader dbc:Cities_in_Germany . ?city dct:subject ?m ; dbo:areaTotal ?area } ORDER BY ?area LIMIT 1" +"What is the ruling party in res:Lisbon?", "SELECT DISTINCT ?uri WHERE { res:Lisbon dbp:leaderParty ?uri }" +"How heavy is res:Jupiter's res:Lightest_Supersymmetric_Particle?", "SELECT DISTINCT ?n WHERE { ?uri dbp:satelliteOf res:Jupiter ; dbo:mass ?n } ORDER BY ASC(?n) OFFSET 0 LIMIT 1" +"How many employees does res:IBM have?", "SELECT DISTINCT ?number WHERE { res:IBM dbo:numberOfEmployees ?number }" +"List all episodes of the first season of the HBO television series The res:The_Sopranos!", "SELECT DISTINCT ?uri WHERE { ?uri dbo:series res:The_Sopranos ; dbo:seasonNumber 1 }" +"What does res:Icrossing_Inc stand for?", "SELECT DISTINCT ?uri WHERE { ?uri dbo:abbreviation "ICRO" }" +"Does the new Battlestar Galactica series have more episodes than the old one?", "ASK WHERE { res:Battlestar_Galactica_%281978_TV_series%29 dbo:numberOfEpisodes ?x . res:Battlestar_Galactica_%282004_TV_series%29 dbo:numberOfEpisodes ?y FILTER ( ?y ?x ) }" +"Give me all films produced by res:Hal_Roach.", "SELECT DISTINCT ?uri WHERE { ?uri a dbo:Film ; dbo:producer res:Hal_Roach }" +"Who played res:Agent_Smith in Matrix?", "SELECT DISTINCT ?uri WHERE { res:Agent_Smith dbo:portrayer ?uri }" +"Which res:Greece?", "SELECT DISTINCT ?uri WHERE { ?uri a dbo:PoliticalParty ; dbo:country res:Greece ; dbo:ideology res:Pro-Europeanism }" +"Give me a list of all res:Geraldo_(bandleader) that play trumpet.", "SELECT DISTINCT ?uri WHERE { ?uri dbo:occupation res:Bandleader ; dbo:instrument res:Trumpet }" +"What is the second highest mountain on res:Earth?", "SELECT DISTINCT ?uri WHERE { ?uri a dbo:Mountain ; dbo:elevation ?elevation } ORDER BY DESC(?elevation) OFFSET 1 LIMIT 1" +"Is res:Largest_octopus also its capital?", "ASK WHERE { res:Egypt dbo:largestCity ?large ; dbo:capital ?capital FILTER ( ?large = ?capital ) }" +"Which rockets were launched from res:Baikonur_Cosmodrome_Site_109?", "SELECT DISTINCT ?uri WHERE { ?uri a dbo:Rocket ; dbo:launchSite res:Baikonur_Cosmodrome }" +"How many programming languages are there?", "SELECT (COUNT( DISTINCT ?uri) AS ?c) WHERE { ?uri a dbo:ProgrammingLanguage }" +"Which res:The_Chess_Players_(film) died in the same place they were born in?", "SELECT DISTINCT ?uri WHERE { ?uri a dbo:ChessPlayer ; dbo:birthPlace ?x ; dbo:deathPlace ?y FILTER ( ?x = ?y ) }" +"Who is the owner of res:Facebook?", "SELECT DISTINCT ?uri WHERE { res:Facebook dbo:foundedBy ?uri }" +"Give me all movies with res:Tom_Cruise.", "SELECT DISTINCT ?uri WHERE { ?uri a dbo:Film ; dbo:starring res:Tom_Cruise }" +"In which res:United_States state is res:Fort_Knox located?", "SELECT DISTINCT ?uri WHERE { res:Fort_Knox dbo:location ?uri . ?uri dbo:country res:United_States }" +"Give me all cities in res:New_Jersey with more than res:100000_(disambiguation).", "SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:City ; dbo:isPartOf res:New_Jersey ; dbo:populationTotal ?inhabitants FILTER ( ?inhabitants 100000 ) }" +"Which mountains are higher than the res:Nanga_Parbat?", "SELECT DISTINCT ?uri WHERE { res:Nanga_Parbat dbo:elevation ?elevation . ?uri a dbo:Mountain { ?uri dbo:elevation ?otherelevation } UNION { ?uri dbp:elevationM ?otherelevation } FILTER ( ?otherelevation ?elevation ) }" +"Give me all res:The_B-Sides.", "SELECT DISTINCT ?string WHERE { ?x dbo:musicalArtist res:Ramones ; dbo:bSide ?string }" +"What are the res:Traditional_Specialities_Guaranteed of the res:UNC res:Health_care?", "SELECT DISTINCT ?uri WHERE { res:UNC_Health_Care dbp:speciality ?uri }" +"When was res:Olof_Palme shot?", "SELECT DISTINCT ?date WHERE { res:Olof_Palme dbo:deathDate ?date }" +"List the seven kings of res:Rome.", "SELECT DISTINCT ?uri WHERE { ?uri dbp:title res:King_of_Rome }" +"Give me all people that were born in res:Vienna and died in res:Berlin.", "SELECT DISTINCT ?uri WHERE { ?uri dbo:birthPlace res:Vienna ; dbo:deathPlace res:Berlin }" +"Is res:Darth_Vader?", "ASK WHERE { res:Darth_Vader dbo:child res:Luke_Skywalker }" +"Show me all the breweries in Australia.", "SELECT DISTINCT ?uri WHERE { ?uri a dbo:Brewery { ?uri dbo:location res:Australia } UNION { ?uri dbo:location ?x . ?x dbo:country res:Australia } }" +"Give me all films produced by res:Steven_Spielberg with a budget of at least res:Boeing_80 million.", "SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Film . ?uri dbo:director res:Steven_Spielberg . ?uri dbo:budget ?b . FILTER( xsd:double(?b) = 8.0E7 ) }" +"Give me all soccer clubs in res:Spain.", "SELECT DISTINCT ?uri WHERE { ?uri a dbo:SoccerClub { ?uri dbo:ground res:Spain } UNION { ?uri dbp:ground ?ground FILTER regex(?ground, "Spain") } }" +"Who produced films starring Natalie Portman?", "SELECT DISTINCT ?uri WHERE { ?film a dbo:Film ; dbo:starring res:Natalie_Portman ; dbo:producer ?uri }" +"Give me all breeds of the res:Germany.", "SELECT DISTINCT ?uri WHERE { ?uri dbp:breed res:German_Shepherd }" +"Who is the heaviest player of the res:Chicago_Bulls?", "SELECT DISTINCT ?uri WHERE { ?uri a dbo:Person ; dbo:weight ?num { ?uri dbp:team res:Chicago_Bulls } UNION { ?uri dbp:draftTeam res:Chicago_Bulls } UNION { ?uri dbo:draftTeam res:Chicago_Bulls } } ORDER BY DESC(?num) OFFSET 0 LIMIT 1" +"Which languages are spoken in res:Estonia?", "SELECT DISTINCT ?uri WHERE { ?uri dbo:spokenIn res:Estonia }" +"What is the largest country in the world?", "SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Country ; dbo:areaTotal ?n } ORDER BY DESC(?n) OFFSET 0 LIMIT 1" +"What is the largest city in america?", "SELECT ?lcity WHERE { dbr:United_States dbo:largestCity ?lcity }" +"Who was the pope that founded the res:Vatican_Television_Center?", "SELECT ?uri WHERE { ?uri rdf:type dbo:Pope . res:Vatican_Television_Center dbo:foundedBy ?uri }" +"Who discovered res:Ceres_(dwarf_planet)?", "SELECT DISTINCT ?uri WHERE { res:Ceres_(dwarf_planet) dbo:discoverer ?uri }" +"Who is the king of the res:Netherlands?", "SELECT DISTINCT ?uri WHERE { res:Netherlands dbo:leader ?uri . ?uri rdf:type dbo:Royalty }" +"Is res:Cola a beverage?", "ASK WHERE { res:Cola rdf:type dbo:Beverage }" +"What is the alma mater of the chancellor of res:Angela_Merkel?", "SELECT ?Almamater WHERE { dbr:Angela_Merkel dbo:almaMater ?Almamater }" +"Who wrote the res:La_Terre?", "SELECT DISTINCT ?uri WHERE { res:The_Pillars_of_the_Earth dbo:author ?uri }" +"Which airports does res:Yeti_Airlines serve?", "SELECT DISTINCT ?uri WHERE { res:Yeti_Airlines dbo:targetAirport ?uri }" +"Where is the birthplace of res:Goethe_Prize?", "SELECT ?Goethe WHERE { dbr:Johann_Wolfgang_von_Goethe dbo:birthPlace ?Goethe }" +"Was the res:Cuba earlier than res:Bay_of_Pigs_Invasion?", "ASK WHERE { res:Cuban_Missile_Crisis dbo:date ?x . res:Bay_of_Pigs_Invasion dbo:date ?y FILTER ( ?x ?y ) }" +"Which ingredients do res:I need for res:Carrot_cake?", "SELECT DISTINCT ?uri WHERE { res:Carrot_cake dbo:ingredient ?uri }" +"Who created res:Wikipedia?", "SELECT DISTINCT ?uri WHERE { res:Wikipedia dbo:author ?uri }" +"What is the highest mountain in res:Frankenstein,_Saxony?", "SELECT ?m WHERE { ?m dbo:mountainRange dbr:Ore_Mountains ; dbo:elevation ?height } ORDER BY DESC(?height) LIMIT 1" +"Who is the res:Current_prime_minister_of_Canada of finance in res:Germany?", "SELECT ?leader WHERE { res:Federal_Ministry_of_Finance_(Germany) dbo:leader ?leader }" +"In which country is res:Mecca located?", "SELECT DISTINCT ?uri WHERE { res:Mecca dbo:country ?uri }" +"Who played res:Gus_Fring in res:Breaking_Bad?", "SELECT DISTINCT ?uri WHERE { res:Gus_Fring dbo:portrayer ?uri }" +"In which country does the res:Nile start?", "SELECT DISTINCT ?uri WHERE { res:Nile dbo:sourceCountry ?uri }" +"In which state res:Pennsylvania_State_University is located?", "SELECT ?s WHERE { dbr:Pennsylvania_State_University dbo:state ?s }" +"What is the biggest stadium in res:Spain?", "SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Stadium ; dbo:location res:Spain ; dbo:seatingCapacity ?n } ORDER BY DESC(?n) OFFSET 0 LIMIT 1" +"Who is the coach of res:Ankara's res:Greece_national_ice_hockey_team?", "SELECT DISTINCT ?uri WHERE { ?x dbo:city res:Ankara ; dbo:league res:Turkish_Ice_Hockey_First_League ; dbo:coach ?uri }" +"How large is the area of res:United_Kingdom?", "SELECT ?area WHERE { dbr:United_Kingdom dbo:areaTotal ?area }" +"Who created res:Batman?", "SELECT DISTINCT ?uri WHERE { res:Batman dbo:creator ?uri }" +"Was res:Sigmund_Freud?", "ASK WHERE { dbr:Sigmund_Freud dbo:spouse ?uri }" +"Who are the developers of res:DBpedia?", "SELECT DISTINCT ?uri WHERE { res:DBpedia dbo:developer ?uri }" +"Give me all movies directed by res:Francis_Ford_Coppola.", "SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Film ; dbo:director res:Francis_Ford_Coppola }" +"Are tree frogs a type of res:Amphibian?", "ASK WHERE { res:Hylidae dbo:class res:Amphibian }" +"What is the location of the res:Palace_of_Westminster?", "SELECT ?uri WHERE { res:Palace_of_Westminster dbo:location ?uri }" +"how much is the elevation of res:Düsseldorf_Airport ?", "SELECT ?ele WHERE { dbr:Düsseldorf_Airport dbo:elevation ?ele } LIMIT 1" +"How much is the population of mexico city ?", "SELECT ?Mexico_City WHERE { dbr:Mexico_City dbo:populationTotal ?Mexico_City }" +"when was the founding date of french fifth republic?", "SELECT ?ff WHERE { dbr:French_Fifth_Republic dbo:foundingDate ?ff }" +"Who was the first res:List_of_English_monarchs?", "SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Royalty ; rdf:type yago:WikicatEnglishMonarchs ; dbo:activeYearsStartYear ?date } ORDER BY ASC(?date) OFFSET 0 LIMIT 1" +"Who is the editor of res:Forbes?", "SELECT DISTINCT ?uri WHERE { res:Forbes dbo:editor ?uri }" +"Which awards did res:Douglas_Hofstadter win?", "SELECT DISTINCT ?uri WHERE { res:Douglas_Hofstadter dbo:award ?uri }" +"Who is the youngest res:Andrew_Gilding?", "SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:DartsPlayer ; dbo:birthDate ?date } ORDER BY DESC(?date) OFFSET 0 LIMIT 1" +"Is horse racing a sport?", "ASK WHERE { dbr:Horse_racing rdf:type dbo:Sport }" +"Which river does the res:Brooklyn_Bridge cross?", "SELECT DISTINCT ?uri WHERE { res:Brooklyn_Bridge dbo:crosses ?uri }" +"How many people live in res:Poland?", "SELECT DISTINCT ?uri WHERE { res:Poland dbo:populationTotal ?uri }" +"When was the last episode of the res:Tv_test_pattern res:Thomas_&_Friends_(series_18) aired?", "SELECT ?date WHERE { dbr:Friends dbo:completionDate ?date }" +"Is the wife of president res:Barack_Obama called Michelle?", "ASK WHERE { res:Barack_Obama dbo:spouse ?spouse . ?spouse rdfs:label ?name FILTER regex(?name, "Michelle") }" +"Who is 8th president of res:United_States?", "SELECT ?name WHERE { dbr:8th_President_of_the_United_States dbo:wikiPageRedirects ?link . ?link dbp:name ?name }" +"how much is the total population of european union?", "SELECT ?europop WHERE { dbr:European_Union dbo:populationTotal ?europop }" +"Give me all launch pads operated by res:NASA.", "SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:LaunchPad ; dbo:operator res:NASA }" +"Who developed the res:World_of_Warcraft?", "SELECT DISTINCT ?uri WHERE { res:World_of_Warcraft dbo:developer ?uri }" +"What is the birth name of res:Adele?", "SELECT ?bn WHERE { dbr:Adele dbo:birthName ?bn }" +"What is the population of res:Cairo?", "SELECT ?pop WHERE { dbr:Cairo dbo:populationTotal ?pop }" +"Is res:Frank_Herbert still alive?", "ASK WHERE { OPTIONAL { res:Frank_Herbert dbo:deathDate ?date } FILTER ( ! bound(?date) ) }" +"What is the last work of res:Dan_Brown?", "SELECT ?book WHERE { { ?book dbo:author dbr:Dan_Brown . ?book dbp:releaseDate ?date } UNION { ?book dbo:author dbr:Dan_Brown . ?book dbo:publicationDate ?date} } ORDER BY DESC(xsd:date(?date)) LIMIT 1" +"Where is res:Sungkyunkwan_University?", "SELECT DISTINCT ?country WHERE { dbr:Sungkyunkwan_University dbo:city ?city ; dbo:country ?country }" +"Who is the author of the interpretation of dreams?", "SELECT ?Author WHERE { dbr:The_Interpretation_of_Dreams dbo:author ?Author }" +"When was the death of res:William_Shakespeare?", "SELECT ?x WHERE { dbr:William_Shakespeare dbo:deathDate ?x } LIMIT 1" +"Who developed res:Slack?", "SELECT DISTINCT ?uri WHERE { ?uri dbo:product res:Slack_(software) }" +"Where is the origin of res:Carolina_Reaper?", "REFIX dbr: res: SELECT ?uri WHERE { dbr:Carolina_Reaper dbo:origin ?uri}" +"In which year was res:Rachel_Stevens born?", "SELECT DISTINCT ?uri WHERE { res:Rachel_Stevens dbo:birthYear ?uri }" +"How often did res:Jane_Fonda marry?", "SELECT (COUNT( DISTINCT ?uri) AS ?c) WHERE { res:Jane_Fonda dbo:spouse ?uri }" +"Was the wife of president res:Abraham_Lincoln called Mary?", "ASK WHERE { res:Abraham_Lincoln dbo:spouse ?spouse . ?spouse rdfs:label ?name FILTER regex(?name, "Mary") }" +"Which cities does the res:Weser flow through?", "SELECT DISTINCT ?uri WHERE { res:Weser dbo:city ?uri }" +"In which programming language is res:GIMP written?", "SELECT DISTINCT ?uri WHERE { res:GIMP dbo:programmingLanguage ?uri }" +"Which university did res:Angela_Merkel attend?", "SELECT DISTINCT ?university WHERE { res:Angela_Merkel dbo:almaMater ?university }" +"List all the musicals with music by res:Elton_John.", "SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Musical ; dbo:musicBy res:Elton_John }" +"How many res:Aldi are there?", "SELECT DISTINCT ?number WHERE { res:Aldi dbo:numberOfLocations ?number }" +"What is the longest river in the world?", "SELECT ?uri WHERE { ?uri rdf:type dbo:BodyOfWater ; dbo:length ?length } ORDER BY DESC(?length) LIMIT 1" +"When was res:John_Adams born?", "SELECT DISTINCT ?date WHERE { res:John_Adams dbo:birthDate ?date }" +"Which res:Companies_listed_on_the_New_York_Stock_Exchange_(J) produce hovercrafts?", "SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Company ; dbo:product res:Hovercraft }" +"Who was the wife of U.S. president res:Abraham_Lincoln?", "SELECT DISTINCT ?uri WHERE { res:Abraham_Lincoln dbo:spouse ?uri }" +"Which species does an elephant belong?", "SELECT ?species WHERE { dbr:Elephant dbp:species ?species }" +"How many people live in the capital of res:Australia?", "SELECT DISTINCT ?num WHERE { res:Australia dbo:capital ?x . ?x dbo:populationTotal ?num }" +"In which ancient empire could you pay with res:Cocoa_bean?", "SELECT DISTINCT ?uri WHERE { ?uri dbo:currency res:Cocoa_bean }" +"How many res:Theories_of_cloaking did res:Albert_Einstein come up with?", "SELECT (COUNT( ?uri) AS ?count) WHERE { dbr:Albert_Einstein dbo:knownFor ?uri }" +"Who composed the res:Soundtrack_for_a_Revolution for res:Cameron's res:Titanic_(1953_film)?", "SELECT DISTINCT ?uri WHERE { res:Titanic_(1997_film) dbo:musicComposer ?uri }" +"Give me the runtime of res:Toy_Story.", "SELECT DISTINCT ?runtime WHERE { res:Toy_Story dbo:runtime ?runtime }" +"With how many res:Low_Countries has borders?", "SELECT ?border WHERE { dbr:Geography_of_Iran dbp:borders ?border } LIMIT 8" +"Which res:Novak_Electronics were founded in res:Beijing?", "SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Company ; dbo:industry res:Electronics ; dbo:foundationPlace res:Beijing }" +"Who was the successor of John res:F. Kennedy?", "SELECT DISTINCT ?uri WHERE { res:John_F._Kennedy dbo:successor ?uri }" +"Who is the mayor of res:Paris?", "SELECT DISTINCT ?uri WHERE { res:Paris dbo:mayor ?uri }" +"Did res:Arnold_Schwarzenegger attend a university?", "ASK WHERE { res:Arnold_Schwarzenegger dbo:almaMater ?x . ?x rdf:type dbo:University }" +"Is res:James_Bond married?", "ASK WHERE { res:James_Bond dbo:spouse ?uri }" +"Does the res:Isar flow into a lake?", "ASK WHERE { ?x dbo:inflow res:Isar ; rdf:type dbo:Lake }" +"Which res:India has the most employees?", "SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Company ; dbo:location res:India ; dbo:numberOfEmployees ?n } ORDER BY DESC(?n) OFFSET 0 LIMIT 1" +"Who was res:John_F._Kennedy's vice president?", "SELECT DISTINCT ?uri WHERE { res:John_F._Kennedy dbo:vicePresident ?uri }" +"Which country does the creator of res:Miffy come from?", "SELECT DISTINCT ?uri WHERE { res:Miffy dbo:creator ?x . ?x dbo:nationality ?uri }" +"In what city is the res:Rosmalen_Grass_Court_Championships?", "SELECT DISTINCT ?uri WHERE { res:Heineken dbo:manufacturer ?x . ?x dbo:locationCity ?uri }" +"Is res:Barack_Obama a democrat?", "ASK WHERE { res:Barack_Obama dbo:party res:Democratic_Party_(United_States) }" +"List the children of res:Margaret_Thatcher.", "SELECT DISTINCT ?uri WHERE { res:Margaret_Thatcher dbo:child ?uri }" +"From which region is the res:Melon_de_Bourgogne?", "SELECT DISTINCT ?uri WHERE { res:Melon_de_Bourgogne dbo:wineRegion ?uri }" +"how big is the total area of res:North_Rhine-Westphalia?", "SELECT ?tarea WHERE { dbr:North_Rhine-Westphalia dbo:areaTotal ?tarea }" +"Which city has the most inhabitants?", "SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:City ; dbo:populationTotal ?pop } ORDER BY DESC(?pop) OFFSET 0 LIMIT 1" +"What is res:Donald_Trump's res:The_Main_Monkey_Business?", "SELECT ?owner WHERE { ?owner dbo:owner dbr:Donald_Trump }" +"When will start the final match of the football world cup 2018?", "SELECT ?Date WHERE { dbr:2018_FIFA_World_Cup dbp:date ?Date } ORDER BY DESC(?Date) LIMIT 1" +"Which films did res:Stanley_Kubrick?", "SELECT DISTINCT ?uri WHERE { ?uri dbo:director res:Stanley_Kubrick }" +"how much is the res:Population?", "SELECT ?pIraq WHERE { dbr:Iraq dbo:populationTotal ?pIraq }" +"How many inhabitants does the largest city in res:Canada have?", "SELECT DISTINCT ?num WHERE { res:Canada dbo:largestCity ?city . ?city dbo:populationTotal ?num }" +"Who is the mayor of the capital of res:France?", "SELECT DISTINCT ?uri WHERE { res:French_Polynesia dbo:capital ?x . ?x dbo:mayor ?uri }" +"Give me all actors starring in movies directed by res:William_Shatner.", "SELECT DISTINCT ?uri WHERE { ?x dbo:director res:William_Shatner ; dbo:starring ?uri }" +"How tall is res:Claudia_Schiffer?", "SELECT DISTINCT ?height WHERE { res:Claudia_Schiffer dbo:height ?height }" +"how much is the res:RANK of res:Germany?", "SELECT ?rank WHERE { dbr:Germany dbp:populationDensityRank ?rank }" +"What is the highest mountain in res:Italy?", "SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Mountain ; dbo:locatedInArea res:Italy ; dbo:elevation ?num } ORDER BY DESC(?num) OFFSET 0 LIMIT 1" +"List all games by res:Generic_Mapping_Tools.", "SELECT DISTINCT ?uri WHERE { ?uri dbo:publisher res:GMT_Games }" +"What is the official language of res:Suriname?", "SELECT DISTINCT ?uri WHERE { res:Suriname dbo:officialLanguage ?uri }" +"In which city did res:Nikos_Kazantzakis die?", "SELECT DISTINCT ?uri WHERE { res:Nikos_Kazantzakis dbo:deathPlace ?uri . ?uri rdf:type dbo:Town }" +"What is in a res:Chocolate_chip_cookie?", "SELECT DISTINCT ?uri WHERE { res:Chocolate_chip_cookie dbo:ingredient ?uri }" +"In which country is the res:Limerick_Lake?", "SELECT DISTINCT ?uri WHERE { res:Limerick_Lake dbo:country ?uri }" +"Give me all video games published by res:Mean_Hamster_Software.", "SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:VideoGame ; dbo:publisher res:Mean_Hamster_Software }" +"Give me all members of res:The_Prodigy.", "SELECT DISTINCT ?uri WHERE { res:The_Prodigy dbo:bandMember ?uri }" +"In which time zone is res:Rome?", "SELECT DISTINCT ?uri WHERE { res:Rome dbo:timeZone ?uri }" +"How high is the lighthouse in Colombo?", "SELECT DISTINCT ?num WHERE { res:Colombo_Lighthouse dbo:height ?num }" +"Who are the writers of the res:Pink_Floyd_–_The_Wall?", "SELECT ?writers WHERE { dbr:The_Wall dbp:writer ?writers }" +"Who is the mayor of res:Rotterdam?", "SELECT DISTINCT ?uri WHERE { res:Rotterdam dbo:leaderName ?uri }" +"What is the largest city in res:Australia?", "SELECT DISTINCT ?uri WHERE { res:Australia dbo:largestCity ?uri }" +"Who was married to res:Jacques_Chirac?", "SELECT DISTINCT ?uri WHERE { res:Jacques_Chirac dbo:spouse ?uri }" +"What form of government is found in res:South_Africa?", "SELECT ?uri WHERE { dbr:South_Africa dbo:governmentType ?uri }" +"How high is the res:Yokohama_Marine_Tower?", "SELECT DISTINCT ?num WHERE { res:Yokohama_Marine_Tower dbo:height ?num }" +"Which holidays are celebrated around the world? res:Testa", "SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Holiday }" +"Who is the tallest basketball player?", "SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:BasketballPlayer ; dbo:height ?num } ORDER BY DESC(?num) OFFSET 0 LIMIT 1" +"How many languages are spoken in res:Turkmenistan?", "SELECT (COUNT( DISTINCT ?x) AS ?c) WHERE { res:Turkmenistan dbo:language ?x }" +"Did res:Che_Guevara have children?", "ASK WHERE { res:Che_Guevara dbo:child ?uri }" +"Did res:Aki_Kaurismäki ever win the res:Grand_Prix_(Cannes_Film_Festival)?", "ASK WHERE { res:Aki_Kaurismäki dbo:award res:Grand_Prix_(Cannes_Film_Festival) }" +"To which party does the mayor of res:Paris belong?", "SELECT DISTINCT ?uri WHERE { res:Paris dbo:mayor ?x . ?x dbo:party ?uri }" +"Who is the res:Race_Driver:_Create_&_Race with the most races?", "SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:FormulaOneRacer ; dbo:races ?x } ORDER BY DESC(?x) OFFSET 0 LIMIT 1" +"What country is res:Sitecore from?", "SELECT DISTINCT ?uri WHERE { res:Sitecore dbo:foundationPlace ?uri }" +"Give me the birth place of res:Frank_Sinatra.", "SELECT DISTINCT ?place WHERE { res:Frank_Sinatra dbo:birthPlace ?place }" +"Is res:Christian_Bale starring in res:Velvet_Goldmine?", "ASK WHERE { res:Velvet_Goldmine dbo:starring res:Christian_Bale }" +"Who is the son of res:Cher?", "SELECT DISTINCT ?uri WHERE { ?uri dbo:parent res:Cher ; dbo:parent res:Sonny_Bono }" +"How many ethnic groups live in res:Slovenia?", "SELECT (COUNT( DISTINCT ?uri) AS ?c) WHERE { res:Slovenia dbo:ethnicGroup ?uri }" +"What is the capital of res:Cameroon?", "SELECT DISTINCT ?uri WHERE { res:Cameroon dbo:capital ?uri }" +"Was res:Natalie_Portman born in the res:United_States?", "ASK WHERE { res:Natalie_Portman dbo:birthPlace ?city . ?city dbo:country res:United_States }" +"How many pages does res:War_and_Peace have?", "SELECT DISTINCT ?n WHERE { res:War_and_Peace dbo:numberOfPages ?n }" +"Who is the oldest child of res:Meryl_Streep?", "SELECT DISTINCT ?uri WHERE { res:Meryl_Streep dbo:child ?uri . ?uri dbo:birthDate ?d } ORDER BY ASC(?d) OFFSET 0 LIMIT 1" +"Which television shows were created by res:Walt_Disney?", "SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:TelevisionShow ; dbo:creator res:Walt_Disney }" +"What does IYCM stand for?", "SELECT DISTINCT ?uri WHERE { ?uri dbo:abbreviation "IYCM" }" +"Which types of grapes grow in res:Oregon?", "SELECT DISTINCT ?uri WHERE { res:Oregon_wine dbo:growingGrape ?uri }" +"Was U.S. president res:Andrew_Jackson involved in a war?", "ASK WHERE { res:Andrew_Jackson dbo:battle ?battle }" +"When was the res:Titanic_(1953_film) completed?", "SELECT DISTINCT ?date WHERE { res:RMS_Titanic dbo:completionDate ?date }" +"Did res:Nikola_Tesla win a res:Nobel_Prize_in_Physics in physics?", "ASK WHERE { res:Nikola_Tesla dbo:award res:Nobel_Prize_in_Physics }" +"How many states are in res:Mexico?", "SELECT (COUNT( ?uri) AS ?count) WHERE { ?uri dbo:type dbr:States_of_Mexico }" +"Which scientist is known for the res:Manhattan_Project and the res:Nobel_Peace_Prize?", "SELECT DISTINCT ?uri WHERE { ?uri dbo:knownFor res:Manhattan_Project ; rdf:type dbo:Scientist ; dbo:knownFor res:Nobel_Peace_Prize }" +"How much did the res:The_Lego_Movie cost?", "SELECT DISTINCT ?n WHERE { res:The_Lego_Movie dbo:budget ?n }" +"Who composed the music for res:Harold_and_Maude?", "SELECT DISTINCT ?uri WHERE { res:Harold_and_Maude dbo:musicComposer ?uri }" +"List all episodes of the first season of the res:HBO res:The_Sopranos_(episode).", "SELECT DISTINCT ?uri WHERE { ?uri dbo:series res:The_Sopranos ; dbo:seasonNumber 1 }" +"Which city has the least inhabitants?", "SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:City ; dbo:populationTotal ?pop } ORDER BY ASC(?pop) OFFSET 0 LIMIT 1" +"Where is res:Syngman_Rhee buried?", "SELECT DISTINCT ?uri WHERE { res:Syngman_Rhee dbo:restingPlace ?uri }" +"Does res:Neymar play for res:Jorge_Meré?", "ASK WHERE { res:Neymar dbo:team res:Real_Madrid_C.F. }" +"Who wrote the book res:The_Pillars_of_the_Earth?", "SELECT DISTINCT ?uri WHERE { res:The_Pillars_of_the_Earth dbo:author ?uri }" +"Do res:Prince_Harry and res:Prince_William,_Duke_of_Cambridge have the same parents?", "ASK WHERE { res:Prince_William,_Duke_of_Cambridge dbo:parent ?x . res:Prince_Harry dbo:parent ?x }" +"Who was the doctoral supervisor of res:Albert_Einstein?", "SELECT DISTINCT ?uri WHERE { res:Albert_Einstein dbo:doctoralAdvisor ?uri }" +"Does res:Breaking_Bad have more episodes than res:Game_of_Thrones?", "ASK WHERE { res:Breaking_Bad dbo:numberOfEpisodes ?x . res:Game_of_Thrones dbo:numberOfEpisodes ?y FILTER ( ?y ?x ) }" +"Who was res:Vincent_van_Gogh inspired by?", "SELECT DISTINCT ?uri WHERE { ?uri dbo:influenced res:Vincent_van_Gogh }" +"Which building after the res:Burj_Khalifa has the most floors?", "SELECT DISTINCT ?uri WHERE { res:Burj_Khalifa dbo:floorCount ?burj . ?uri rdf:type dbo:Building ; dbo:floorCount ?proj FILTER ( ?proj ?burj ) } ORDER BY DESC(?proj) LIMIT 1" +"What was the final result of the res:The_War_of_the_Roses_(film)?", "SELECT DISTINCT ?result WHERE { ?uri dbo:isPartOfMilitaryConflict dbr:Wars_of_the_Roses ; dbo:result ?result ; dbo:date ?date } ORDER BY DESC(?date) OFFSET 0 LIMIT 1" +"How much did res:Pulp_Fiction cost?", "SELECT DISTINCT ?n WHERE { res:Pulp_Fiction dbo:budget ?n }" +"Is proinsulin a protein?", "ASK WHERE { res:Proinsulin rdf:type dbo:Protein }" +"Do res:Urdu_Wikipedia have a common root?", "ASK WHERE { dbr:Urdu dbo:languageFamily ?uri . dbr:Persian_language dbo:languageFamily ?uri }" +"Who is starring in res:Spain produced by res:Benicio_del_Toro?", "SELECT DISTINCT ?uri WHERE { ?film rdf:type dbo:Film ; dbo:country res:Spain ; dbo:producer res:Benicio_del_Toro ; dbo:starring ?uri . ?uri rdf:type dbo:Person }" +"Is Lake Baikal bigger than the Great Bear Lake?", "ASK WHERE { res:Lake_Baikal dbo:areaTotal ?a1 . res:Great_Bear_Lake dbo:areaTotal ?a2 FILTER ( ?a1 ?a2 ) }" +"Show me all books in res:Asimov_(disambiguation)'s res:Foundation_series.", "SELECT DISTINCT ?uri WHERE { ?uri dbo:series res:Foundation_series }" +"Where was res:Johann_Sebastian_Bach born?", "SELECT DISTINCT ?uri WHERE { res:Johann_Sebastian_Bach dbo:birthPlace ?uri }" +"Which city has the oldest running metro?", "SELECT ?loc WHERE { ?uri dbo:type dbr:Rapid_transit ; dbo:openingYear ?date ; dbo:location ?loc . ?loc rdf:type dbo:City } ORDER BY ASC(?date) LIMIT 1" +"Who designed the res:Brooklyn_Bridge?", "SELECT DISTINCT ?uri WHERE { res:Brooklyn_Bridge dbo:architect ?uri }" +"How many people live in res:Eurasia?", "SELECT DISTINCT ?population WHERE { res:Eurasia dbo:populationTotal ?population }" +"Who is the host of the res:BBC res:BBC_Wildlife_Specials?", "SELECT DISTINCT ?uri WHERE { res:BBC_Wildlife_Specials dbo:presenter ?uri }" +"What is the total population of res:Melbourne,_Florida?", "SELECT ?uri WHERE { res:Melbourne,_Florida dbo:populationTotal ?uri }" +"What country is res:Mount_Everest in?", "SELECT DISTINCT ?uri WHERE { res:Mount_Everest dbo:locatedInArea ?uri . ?uri rdf:type dbo:Country }" +"To which artistic movement did the painter of res:The_Three_Dancers belong?", "SELECT DISTINCT ?uri WHERE { res:The_Three_Dancers dbo:author ?person . ?person dbo:movement ?uri }" +"When did res:Operation_Overlord?", "SELECT DISTINCT ?d WHERE { res:Operation_Overlord dbo:date ?d }" +"What is the bridge with the longest span?", "SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Bridge ; dbo:mainspan ?s } ORDER BY DESC(?s) OFFSET 0 LIMIT 1" +"Is there a video game called res:Battle_Chess?", "ASK WHERE { ?uri rdf:type dbo:VideoGame ; rdfs:label "Battle Chess"@en }" +"Who was buried in the res:Great_Pyramid_of_Giza?", "SELECT ?uri WHERE { ?uri dbo:restingPlace dbr:Great_Pyramid_of_Giza }" +"Does the res:Ford_Motor_Company have a manufacturing plant in res:Malaysia?", "ASK WHERE { ?uri dbo:assembly dbr:Malaysia ; dbo:manufacturer dbr:Ford_Motor_Company }" +"Did res:Socrates influence res:Aristotle?", "ASK WHERE { res:Aristotle dbo:influencedBy res:Socrates }" +"How many children did res:Benjamin_Franklin have?", "SELECT (COUNT( DISTINCT ?uri) AS ?c) WHERE { res:Benjamin_Franklin dbo:child ?uri }" +"How tall is res:Michael_Jordan?", "SELECT DISTINCT ?num WHERE { res:Michael_Jordan dbo:height ?num }" +"In which res:United_Kingdom city are the headquarters of the res:Secret_Intelligence_Service?", "SELECT DISTINCT ?uri WHERE { res:Secret_Intelligence_Service dbo:headquarter ?uri . ?uri dbo:country res:United_Kingdom }" +"Who created res:Family_Guy?", "SELECT DISTINCT ?uri WHERE { res:Family_Guy dbo:creator ?uri }" +"In which city does the res:Chile_Route_68?", "SELECT DISTINCT ?uri WHERE { res:Chile_Route_68 dbo:routeEnd ?uri }" +"Give me the grandchildren of res:Elvis_Presley.", "SELECT DISTINCT ?uri WHERE { res:Elvis_Presley dbo:child ?child . ?child dbo:child ?uri }" +"When did the res:Ming_dynasty?", "SELECT DISTINCT ?date WHERE { res:Ming_dynasty dbo:dissolutionDate ?date }" +"In which military conflicts did res:T._E._Lawrence participate?", "SELECT DISTINCT ?uri WHERE { res:T._E._Lawrence dbo:battle ?uri }" +"What is the timezone in res:San_Pedro_de_Atacama?", "SELECT DISTINCT ?uri WHERE { res:San_Pedro_de_Atacama dbo:timeZone ?uri }" +"Give me all books by res:William_Goldman with more than res:300 pages.", "SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Book ; dbo:author res:William_Goldman ; dbo:numberOfPages ?x FILTER ( ?x 300 ) }" +"What did res:Bruce_Carver die from?", "SELECT DISTINCT ?uri WHERE { res:Bruce_Carver dbo:deathCause ?uri }" +"Which subsidiary of res:Lufthansa serves both res:Dortmund_Airport and res:Berlin_Tegel_Airport?", "SELECT DISTINCT ?uri WHERE { res:Lufthansa dbo:subsidiary ?uri . ?uri dbo:targetAirport res:Dortmund_Airport ; dbo:targetAirport res:Berlin_Tegel_Airport }" +"Does res:Abraham_Lincoln's res:This_Place_Is_Death have a res:Website?", "ASK WHERE { res:Abraham_Lincoln dbo:deathPlace ?p . ?p dbo:website ?w }" +"Did res:Elvis_Presley have children?", "ASK WHERE { res:Elvis_Presley dbo:child ?uri }" +"Is res:Michelle_Obama the wife of res:Barack_Obama?", "ASK WHERE { res:Barack_Obama dbo:spouse res:Michelle_Obama }" +"In which city does res:Sylvester_Stallone live?", "SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:City . res:Sylvester_Stallone dbo:residence ?uri }" +"Which books by res:Jack_Kerouac were published by res:Viking_Press?", "SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Book ; dbo:publisher res:Viking_Press ; dbo:author res:Jack_Kerouac }" +"Who wrote the res:Hotel_California?", "SELECT DISTINCT ?uri WHERE { res:Hotel_California dbo:writer ?uri }" +"What is the capital of res:Canada?", "SELECT DISTINCT ?uri WHERE { res:Canada dbo:capital ?uri }" +"Who is the mayor of res:Tel_Aviv?", "SELECT DISTINCT ?uri WHERE { res:Tel_Aviv dbo:leaderName ?uri }" +"What form of government does res:Russia have?", "SELECT DISTINCT ?uri WHERE { res:Russia dbo:governmentType ?uri }" +"Show me the book that res:Muhammad_Ali wrote.", "SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Book ; dbo:author res:Muhammad_Ali }" +"Who was the first to climb res:Mount_Everest?", "SELECT DISTINCT ?uri WHERE { res:Mount_Everest dbo:firstAscentPerson ?uri }" +"How many languages are spoken in res:Colombia?", "SELECT (COUNT( DISTINCT ?uri) AS ?c) WHERE { ?uri rdf:type dbo:Language . res:Colombia dbo:language ?uri }" +"What is the currency of the res:Czech_Republic?", "SELECT DISTINCT ?uri WHERE { res:Czech_Republic dbo:currency ?uri }" +"Where in res:France is res:Sparkling_wines produced?", "SELECT DISTINCT ?uri WHERE { ?uri dbo:wineProduced res:Sparkling_wine ; dbo:location res:France }" +"When did res:Boris_Becker end his active career?", "SELECT DISTINCT ?d WHERE { res:Boris_Becker dbo:activeYearsEndDate ?d }" +"Which movies starring res:Mickey_Rourke were directed by res:Guy_Ritchie?", "SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Film ; dbo:starring res:Mickey_Rourke ; dbo:director res:Guy_Ritchie }" +"In which films did res:Julia_Roberts as well as res:Richard_Gere play?", "SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Film ; dbo:starring res:Julia_Roberts ; dbo:starring res:Richard_Gere }" +"Show me res:Hemingway_House's res:Autobiography.", "SELECT DISTINCT ?uri WHERE { ?uri dbo:author res:Ernest_Hemingway ; dbo:literaryGenre res:Autobiography }" +"How tall is res:Amazon_Eve?", "SELECT DISTINCT ?height WHERE { res:Amazon_Eve dbo:height ?height }" +"What are the five boroughs of res:New_York?", "SELECT DISTINCT ?uri WHERE { ?uri dbo:governmentType res:Borough_(New_York_City) }" +"Give me all res:Canada.", "SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:RecordLabel ; dbo:genre res:Grunge ; dbo:country res:Canada }" +"In which country does the res:Ganges start?", "SELECT DISTINCT ?uri WHERE { res:Ganges dbo:sourceCountry ?uri }" +"Who is the founder of res:Penguin_Books?", "SELECT DISTINCT ?uri WHERE { res:Penguin_Books dbo:founder ?uri }" +"Who wrote the res:Game_of_Thrones theme?", "SELECT DISTINCT ?uri WHERE { res:Game_of_Thrones dbo:composer ?uri }" +"Who is the president of res:Eritrea?", "SELECT DISTINCT ?uri WHERE { res:Eritrea dbo:leader ?uri ; dbo:leaderTitle "President"@en }" +"In which city did res:John_F._Kennedy die?", "SELECT DISTINCT ?uri WHERE { res:John_F._Kennedy dbo:deathPlace ?uri . ?uri rdf:type dbo:City }" +"What is the highest mountain in res:Australia?", "SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Mountain ; dbo:locatedInArea res:Australia ; dbo:elevation ?elevation } ORDER BY DESC(?elevation) LIMIT 1" +"Who writes the res:Farmers_Creek_Township,_Jackson_County,_Iowa' res:Project_Almanac?", "SELECT ?uri WHERE { res:Farmers'_Almanac dbp:editor ?uri }" +"Give me the currency of res:China.", "SELECT DISTINCT ?uri WHERE { res:China dbo:currency ?uri }" +"Give me all res:Sweden.", "SELECT DISTINCT ?uri WHERE { ?uri dbo:field res:Oceanography ; dbo:birthPlace res:Sweden }" +"In which city are the res:Headquarters_of_the_United_Nations?", "SELECT DISTINCT ?uri WHERE { res:Headquarters_of_the_United_Nations dbo:location ?uri . ?uri rdf:type dbo:City }" +"Is res:Rita_Wilson the wife of res:Tom_Hanks?", "ASK WHERE { res:Tom_Hanks dbo:spouse res:Rita_Wilson }" +"In which res:Countries_of_the_United_Kingdom do people speak res:Japan?", "SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Country ; dbo:language res:Japanese_language }" +"Which of res:Tim_Burton's films had the highest budget?", "SELECT DISTINCT ?uri WHERE { ?uri dbo:director res:Tim_Burton ; dbo:budget ?b } ORDER BY ?b OFFSET 0 LIMIT 1" +"Which museum in res:New_York_City has the most visitors?", "SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Museum ; dbo:location res:New_York_City ; dbo:numberOfVisitors ?num } ORDER BY DESC(?num) OFFSET 0 LIMIT 1" +"What was the first res:Queen_(Queen_album)?", "SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Album ; dbo:artist res:Queen_(band) ; dbo:releaseDate ?d } ORDER BY ASC(?d) OFFSET 0 LIMIT 1" +"What was the first name of the res:Queens_of_the_Stone_Age?", "SELECT DISTINCT ?name WHERE { res:Queens_of_the_Stone_Age dbo:alias ?name }" +"What was the last movie with res:Alec_Guinness?", "SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Film ; dbo:starring res:Alec_Guinness ; dbo:releaseDate ?date } ORDER BY DESC(?date) LIMIT 1" +"Give me all actors starring in res:Last_Action_Hero.", "SELECT DISTINCT ?uri WHERE { res:Last_Action_Hero dbo:starring ?uri }" +"Who discovered res:Pluto?", "SELECT ?uri WHERE { dbr:Pluto dbo:discoverer ?uri }" diff --git a/data/qald-9-train-linked.json b/data/qald-9-train-linked.json index 90b28342f0fa9e20e61ff432773b20c27a873e9b..8a1456c94de30e69e57e47f26d15532f93ea1eb7 100644 --- a/data/qald-9-train-linked.json +++ b/data/qald-9-train-linked.json @@ -1 +1,104205 @@ -{"dataset": {"id": "qald-9-train"}, "questions": [{"id": "1", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "List all boardgames by GMT.", "keywords": "boardgame, GMT"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> SELECT ?uri WHERE { ?uri dbo:publisher res:GMT_Games }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Washington's_War"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fields_of_Fire_(game)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Commands_&_Colors:_Ancients"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/A_World_At_War"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sword_of_Rome"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Twilight_Struggle"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Paths_of_Glory_(board_game)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chandragupta_(board_game)"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Generic_Mapping_Tools", "surface form": "GMT"}, {"URI": "http://dbpedia.org/resource/Belarus", "surface form": "Boardgames by"}], "relations": []}, {"id": "2", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Who developed Skype?", "keywords": "develop, Skype"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> SELECT DISTINCT ?uri WHERE { res:Skype dbo:developer ?uri. }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Microsoft"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Skype_Technologies"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Skype", "surface form": "Skype"}], "relations": [{"URI": "http://dbpedia.org/ontology/developer", "surface form": "developed"}]}, {"id": "3", "answertype": "resource", "aggregation": false, "onlydbo": false, "hybrid": false, "question": [{"language": "en", "string": "Which people were born in Heraklion?", "keywords": "people, born, heraklion"}], "query": {"sparql": "PREFIX yago: <http://dbpedia.org/class/yago/> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Person ; onto:birthPlace <http://dbpedia.org/resource/Heraklion>. }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kapsetaki_duo"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gianna_Angelopoulos-Daskalaki"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lefteris_Gialousis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Elia_del_Medigo"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Christoforos_Papakaliatis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Meletius_I_Pegas"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ilya_Livykou"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Maria_Spiridaki"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Minas_Pitsos"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Manolis_Stefanoudakis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dimitris_Raptakis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Michael_Katehakis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fotis_Kafatos"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Odysseas_Elytis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Antonis_Bourselis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Stiliani_Pilatou"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Stavros_Labrakis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Manolis_Moniakis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/El_Greco"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Andreas_Musalus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nikos_Androulakis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Labros_Kefaloukos"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Manolis_Saliakas"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ieroklis_Stoltidis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Yannis_Markopoulos"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Georgios_Sarris"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Manolis_Kefalogiannis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cyril_Lucaris__Hieromartyr_Cyril_Lucaris__1"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Beata_Kitsikis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Leonidas_Kyrkos"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Argyro_Strataki"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Michael_Koukoulakis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Anastasios_Triantafyllou"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Maria_Papapetros"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Francisco_Leontaritis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Janus_Plousiadenos"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cyril_Lucaris"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Notis_Sfakianakis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Albi_Alla"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Manolis_Tzanakakis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nektarios_Tavernarakis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Christos_Saloustros"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nikos_Kazantzakis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Christoforos_Liontakis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Romylos_Kedikoglou"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nadia_Valavani"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lena_Platonos"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nikonas_Spiliotakis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Michalis_Sifakis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Christos_Kozyrakis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Giannis_Domatas"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Giorgos_Grammatikakis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Charalampos_Damianakis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chrysovalantis_Kozoronis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Apelles_of_Heraklion"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rhea_Galanaki"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Konstanty_Korniakt"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Stephanos_Sahlikis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Manolis_Rasoulis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Joseph_Sifakis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Konstantinos_Gouvis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Konstantinos_Volanakis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Zacharias_Kavousakis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lili_Zografou"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/\u0130brahim_Senil"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Iosif_Daskalakis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Spyros_Danellis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Angelos_Akotantos"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Joseph_Solomon_Delmedigo"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Abraham_III_of_Armenia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Georgios_Kalaitzakis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nicholas_Kalliakis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Andreas_Ritzos"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nikos_Marinakis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nikos_Machlas"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sapfo_Notara"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Elli_Alexiou"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Manolis_Roubakis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ntinos_Konstantakis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Manolis_Papadrakakis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Theophanes_the_Cretan"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dimitrios_Kiliaras"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Giannis_Vardinogiannis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nikos_Karelis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Georgios_Samaras"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Michail_Fragoulakis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Greg_Massialas"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rika_Dialina"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Michael_Damaskinos"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Giorgos_Giakoumakis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nikos_Kousidis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Francesco_Barozzi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Aristeidis_Stergiadis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Georges_Panayotis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Andreas_Bouchalakis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Manolis_Rovithis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Peter_Diamandopoulos"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Heraklion", "surface form": "Heraklion"}], "relations": [{"URI": "http://dbpedia.org/ontology/birthPlace", "surface form": "born"}]}, {"id": "4", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "In which U.S. state is Area 51 located?", "keywords": "Area 51, located, U.S. state"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> SELECT DISTINCT ?uri WHERE { res:Area_51 dbo:location ?uri . ?uri dbo:country res:United_States. }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nevada"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lincoln_County,_Nevada"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/United_States", "surface form": "US"}, {"URI": "http://dbpedia.org/resource/Area_51", "surface form": "Area 51"}], "relations": [{"URI": "http://dbpedia.org/ontology/gross", "surface form": "located"}]}, {"id": "5", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Who is the mayor of New York City?", "keywords": "New York City, mayor"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:New_York_City dbo:leaderName ?uri }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bill_de_Blasio"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/New_York_City", "surface form": "New York City"}], "relations": [{"URI": "http://dbpedia.org/ontology/mayor", "surface form": "mayor"}]}, {"id": "6", "answertype": "resource", "aggregation": true, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Which countries have places with more than two caves?", "keywords": "country, place, cave, more than two"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?cave rdf:type dbo:Cave ; dbo:location ?uri . ?uri rdf:type dbo:Country } GROUP BY ?uri HAVING ( COUNT(?cave) > 2 )"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/India"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Philippines"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Japan"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Greece"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Spain"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Turkey"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vietnam"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/United_States"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Australia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Italy"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Republic_of_Ireland"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Venezuela"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mexico"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Georgia_(country)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Austria"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Germany"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Slovenia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gibraltar"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Serbia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/France"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Abkhazia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jamaica"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/China"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/South_Africa"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Brazil"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Azerbaijan"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Countries_of_the_United_Kingdom", "surface form": "countries"}, {"URI": "http://dbpedia.org/resource/Caves_of_Aggtelek_Karst_and_Slovak_Karst", "surface form": "caves"}], "relations": [{"URI": "http://dbpedia.org/ontology/place", "surface form": "places"}]}, {"id": "7", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Where did Abraham Lincoln die?", "keywords": "Abraham Lincoln, die"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> SELECT DISTINCT ?uri WHERE { res:Abraham_Lincoln dbo:deathPlace ?uri. }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Washington,_D.C."}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Petersen_House_(Washington,_D.C.)"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Abraham_Lincoln", "surface form": "Abraham Lincoln"}], "relations": [{"URI": "http://dbpedia.org/ontology/deathDate", "surface form": "die"}]}, {"id": "8", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Which airports does Air China serve?", "keywords": "airports, Air China"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Air_China dbo:targetAirport ?uri }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tianjin_Binhai_International_Airport"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Guangzhou_Baiyun_International_Airport"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chongqing_Jiangbei_International_Airport"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Shanghai_Hongqiao_International_Airport"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Wuhan_Tianhe_International_Airport"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lhasa_Gonggar_Airport"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hohhot_Baita_International_Airport"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hangzhou_Xiaoshan_International_Airport"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Guiyang_Longdongbao_International_Airport"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Air_China", "surface form": "Air China"}], "relations": [{"URI": "http://dbpedia.org/ontology/hubAirport", "surface form": "airports"}, {"URI": "http://dbpedia.org/property/row", "surface form": "serve"}]}, {"id": "9", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Give me all actors starring in movies directed by and starring William Shatner.", "keywords": "actor, starring, movie, direct, starring, William Shatner"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX dbp: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { ?x dbo:director res:William_Shatner ; dbo:starring res:William_Shatner { ?x dbo:starring ?uri } UNION { ?x dbp:starring ?uri } }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tom_Towles"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Brenda_Bakke"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/William_Shatner"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/John_Prosky"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dan_Martin_(actor)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Duane_Whitaker"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chuck_Williams_(actor)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dick_Van_Patten"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/J.T._Colosa"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dan_Gauthier"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Amy_Acker"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rickey_Medlocke"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/William_Shatner", "surface form": "William Shatner"}], "relations": [{"URI": "http://dbpedia.org/ontology/artist", "surface form": "actors"}, {"URI": "http://dbpedia.org/ontology/starring", "surface form": "starring"}, {"URI": "http://dbpedia.org/ontology/film", "surface form": "movies"}, {"URI": "http://dbpedia.org/property/directedby", "surface form": "directed"}, {"URI": "http://dbpedia.org/ontology/starring", "surface form": "starring"}]}, {"id": "10", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "What are the official languages of the Philippines?", "keywords": "Philippines, official language"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Philippines dbo:officialLanguage ?uri }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Philippine_English"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Filipino_language"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Philippines", "surface form": "Philippines"}], "relations": [{"URI": "http://dbpedia.org/ontology/officialLanguage", "surface form": "official languages"}]}, {"id": "11", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Give me all Danish films.", "keywords": "film, Denmark"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Film ; dbo:country res:Denmark }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Stolen_Spring_(film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Frode_og_alle_de_andre_r\u00f8dder__Frode_og_alle_de_andre_r\u00f8dder__1"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tr\u00e6llene_/_The_Thralls"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Breaking_the_Waves"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ronal_the_Barbarian"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Valhalla_(film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Little_Brother,_Big_Trouble:_A_Christmas_Adventure"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Forbidden_Team"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fidibus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Skal_vi_v\u00e6dde_en_million%3F"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Asterix_and_the_Vikings"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Monastery:_Mr._Vig_and_the_Nun"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Open_Hearts"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Red_Meadows"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Inheritance_(2003_film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dancer_in_the_Dark"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Den_farlige_alder"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Str\u00f8mer"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Danmarks_N\u00e6ste_Topmodel_(cycle_4)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Next_Stop_Paradise"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/After_the_Wedding"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Flickering_Lights"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Princess_(2006_film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nation_Estate"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/You_Are_Not_Alone_(film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/H\u00f8jt_paa_en_kvist"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sons_of_the_Soil"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jeg_har_elsket_og_levet"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Constance_(1998_film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bornholms_stemme"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Family_Matters_(film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Burma_VJ"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Khomeini's_Boys"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/De_blaa_drenge"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/ID_A"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Venner_for_altid"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/K\u00f8benhavnere"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/En_slem_Dreng"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ghost_Train_International"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/N\u00f8ddebo_Pr\u00e6steg\u00e5rd"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Familien_Pille_som_Spejdere"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pelle_the_Conqueror"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Babette's_Feast"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/K\u00f8rsel_med_Gr\u00f8nlandske_Hunde"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/A_Summer_Tale"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bang_Bang_Orangutang"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Don_Olsen_kommer_til_byen"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Arn_\u2013_The_Knight_Templar"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Vicar_of_Vejlby_(1931_film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Viking_Watch_of_the_Danish_Seaman"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Songs_from_the_Second_Floor"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Klown_Forever"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bionicle:_Mask_of_Light"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/De_5_i_fedtefadet"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sunes_familie"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ditte,_Child_of_Man"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gasolin'_(film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Credo_(1997_film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Farlig_Ungdom"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Herberg_for_Hjeml\u00f8se"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Susanne_(1950_film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Benny's_Bathtub"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Der_kom_en_dag"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/We_Meet_at_Tove's"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Murk_(film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Den_kul\u00f8rte_Slavehandler"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/What_No_One_Knows"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hotel_Paradis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kira's_Reason:_A_Love_Story"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Busters_verden"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Eye_of_the_Eagle_(film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/De_Udstillede"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nynne"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kong_Buksel\u00f8s"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Eksperimentet"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Perfect_Human"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nordhavets_m\u00e6nd"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Echo_(2007_film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/De_besejrede_Pebersvende"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vildledt_Elskov"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fr\u00e6kke_Frida_og_de_frygtl\u00f8se_spioner"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Af_banen"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bag_K\u00f8benhavns_kulisser"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Giv_Gud_en_chance_om_s\u00f8ndagen"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Stjerneskud"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/K\u00e6rlighed_og_Mobilisering"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Karlas_kabale"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Samson_&_Sally"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Journey_to_Saturn"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/A_War"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Antichrist_(film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Crying_for_Love"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Supervoksen"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Help!_I'm_a_Fish"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jag_\u00e4r_din_krigare"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Webmaster_(film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Frk._M\u00f8llers_jubil\u00e6um"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/That's_Me,_Too"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Der_var_engang_en_vicev\u00e6rt"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Let's_Get_Lost_(1997_film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/When_the_Light_Comes"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Smiling_in_a_War_Zone"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Reptilicus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/L\u00f8vejagten"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Regel_nr._1"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Sinful_Dwarf"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pusher_(film_series)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Journey_to_the_Seventh_Planet"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Der_rote_Kreis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Something_Better_to_Come"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Torremolinos_73"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Stealing_Rembrandt"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Teddy_Bear_(2012_film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Terribly_Happy"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Melody_of_Murder"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Monas_verden"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Minor_Mishaps"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ai_Weiwei:_The_Fake_Case"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Manslaughter_(2005_film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kun_en_Tigger"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Denmark", "surface form": "Danish films"}, {"URI": "http://dbpedia.org/resource/List_of_Danish_films", "surface form": "Danish films"}], "relations": [{"URI": "http://dbpedia.org/ontology/country", "surface form": ""}]}, {"id": "12", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Which movies starring Brad Pitt were directed by Guy Ritchie?", "keywords": "movies, starring, Brad Pitt, directed, Guy Ritchie"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Film ; dbo:starring res:Brad_Pitt ; dbo:director res:Guy_Ritchie }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Snatch_(film)"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Brad_Pitt", "surface form": "Brad Pitt"}, {"URI": "http://dbpedia.org/resource/Guy_Ritchie", "surface form": "Guy Ritchie"}], "relations": [{"URI": "http://dbpedia.org/ontology/film", "surface form": "movies"}, {"URI": "http://dbpedia.org/ontology/starring", "surface form": "starring"}, {"URI": "http://dbpedia.org/ontology/president", "surface form": "directed"}]}, {"id": "13", "answertype": "number", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Give me the grandchildren of Bruce Lee.", "keywords": "Bruce Lee, grandchildren"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Bruce_Lee dbo:child ?child . ?child <http://dbpedia.org/property/children> ?uri }"}, "answers": [{"head": {"vars": ["c"]}, "results": {"bindings": [{"c": {"type": "literal", "value": "1"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Bruce_Lee", "surface form": "Bruce Lee"}], "relations": [{"URI": "http://dbpedia.org/ontology/child", "surface form": "grandchildren"}]}, {"id": "14", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Which other weapons did the designer of the Uzi develop?", "keywords": "Uzi, designer, develop, weapon"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX dbp: <http://dbpedia.org/property/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Weapon ; dbp:designer ?x . res:Uzi dbp:designer ?x FILTER ( ?uri != res:Uzi ) }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Minebea_PM-9"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Uzi", "surface form": "Uzi"}], "relations": [{"URI": "http://dbpedia.org/property/weapons", "surface form": "weapons"}, {"URI": "http://dbpedia.org/ontology/designer", "surface form": "designer"}, {"URI": "http://dbpedia.org/ontology/result", "surface form": "develop"}]}, {"id": "15", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Who is the owner of Universal Studios?", "keywords": "Universal Studios, owner"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Universal_Studios dbo:owner ?uri }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Comcast"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Universal_Studios", "surface form": "Universal Studios"}], "relations": [{"URI": "http://dbpedia.org/property/owner", "surface form": "owner"}]}, {"id": "16", "answertype": "resource", "aggregation": false, "onlydbo": false, "hybrid": false, "question": [{"language": "en", "string": "Which state of the USA has the highest population density?", "keywords": "state, USA, population density, highest"}], "query": {"sparql": "PREFIX yago: <http://dbpedia.org/class/yago/> PREFIX dbp: <http://dbpedia.org/property/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type yago:WikicatStatesOfTheUnitedStates ; dbp:densityrank ?rank } ORDER BY ASC(?rank) LIMIT 1"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/New_Jersey"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Usa_District,_\u014cita", "surface form": "USA"}, {"URI": "http://dbpedia.org/resource/Population_density", "surface form": "highest population density"}], "relations": []}, {"id": "17", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Which monarchs were married to a German?", "keywords": "monarch, married, German"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Monarch ; dbo:spouse ?spouse { ?spouse dbo:birthPlace res:Germany } UNION { ?spouse dbo:birthPlace ?p . ?p dbo:country res:Germany } }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mieszko_I_of_Poland"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Boles\u0142aw_III_Wrymouth"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Germany", "surface form": "German"}, {"URI": "http://dbpedia.org/resource/German", "surface form": "German"}], "relations": [{"URI": "http://dbpedia.org/ontology/leader", "surface form": "monarchs"}, {"URI": "http://dbpedia.org/ontology/spouse", "surface form": "married"}, {"URI": "http://dbpedia.org/ontology/country", "surface form": ""}, {"URI": "http://dbpedia.org/ontology/country", "surface form": ""}]}, {"id": "18", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Which organizations were founded in 1950?", "keywords": "organization, founded, 1950"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbp: <http://dbpedia.org/property/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Organisation { ?uri dbo:formationYear ?date } UNION { ?uri dbo:foundingYear ?date } UNION { ?uri dbp:foundation ?date } UNION { ?uri dbp:formation ?date } FILTER regex(?date, \"^1950\") }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/B.A._Schiff_&_Associates"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alamo_Heights_High_School"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CBA_(Christian_trade_association)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Centex"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kra\u0161"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sasol"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Boxoffice_International_Pictures"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Thomas_A._Edison_High_School_(Queens)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Arctic_Circle_Restaurants"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Allied_Carpets"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kopp's_Frozen_Custard"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Keller_Group"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Coral_Gables_Senior_High_School"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Economic_Stabilization_Agency"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Liga_Na\u021bional\u0103_(women's_basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Otto-Hahn-Gymnasium"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Netherlands_Organisation_for_Scientific_Research"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hafei"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Texas_A&M_Transportation_Institute"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Florida_Bar"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mark_Hall_Academy"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CDI_Corporation"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Department_of_Fuel,_Shipping_and_Transport"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lord_Byron_School_(Gyumri)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ministry_of_National_Defense_(Portugal)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Abcdin"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Salpointe_Catholic_High_School"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Menorca_B\u00e0squet"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Herschend_Family_Entertainment"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Legal_Sea_Foods"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Royal_Canadian_Numismatic_Association"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/University_of_Texas_Press"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/O'Bannon_High_School"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Copa_del_Rey_de_Voleibol"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/United_Electrical_Industries_Limited"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kagoshima_commercial_course_junior_college"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Stasi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Shenendehowa_Central_School_District"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/St_Ivo_School"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Noerr"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Julius_Berger_(construction_company)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/International_Communication_Association"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Stahl_Brandenburg_Rugby"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Universal_Music_Group_Nashville"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lotte_Chilsung"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Harold's_Chicken_Shack"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Br\u00fctsch"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Heng_Siew_Chiang_Sendirian_Berhad"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Greenhill_School_(Addison,_Texas)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/King's_Schools"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Club_Med"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Southeastern_Freight_Lines"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/BlueCross_BlueShield_of_South_Carolina"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Franklin_County_High_School_(Rocky_Mount,_Virginia)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vanee_Foods"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Decatur_High_School_(Alabama)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/List_of_Australian_Ambassadors_to_Egypt"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Orient_Watch"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/St._Augustine_Girls'_High_School"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/London_Nationals"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fabbri_Group"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/International_Association_of_Gerontology_and_Geriatrics"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mercy_Career_&_Technical_High_School"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kansenshi_Secondary_School"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/W._R._Myers_High_School"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/ANUIES"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Thurstan_College"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/International_Press_Institute"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Democratic_Agrarian_Party"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/LPGA"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bluebell_Records"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cabasse_(company)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Terry_Fox_Secondary_School"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Washington_School,_Buenos_Aires,_Argentina"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pondok_Pesantren_Walibarokah_Burengan_Banjaran_Kediri"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chemische_Werke_Kluthe"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/KK_Sloboda_U\u017eice"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Central_High_School_(Independence,_Oregon)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bishop_Brossart_High_School"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rogers_&_Cowan"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Planning_Commission_(India)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bersa"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Saddle_Rock_Elementary_School"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Miss_Israel"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_People's_Party_(Indonesia)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/American_College_of_Osteopathic_Family_Physicians"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ministry_of_Education_(Myanmar)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Indiana_University_Press"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bromley_College_of_Further_&_Higher_Education"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Southeast_Unitarian_Universalist_Summer_Institute"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Acorn_Records"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Archbishop_Bergan_High_School"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/UD_Trucks"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Viplavakari_Lanka_Sama_Samaja_Party"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tamasu_(corporation)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fennada-Filmi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Idsall_School"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Arab_Socialist_Movement"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Elektra_Records"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vetter_Pharma"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pakistan_Bureau_of_Statistics"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/St_Joseph's_Secondary_School,_Tulla"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gorenje"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/DFCU_Financial"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Santa_Barbara_Catholic_School"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gonzaga_College"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Salesian_English_School"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/International_Art_Materials_Trade_Association"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/American_Medical_Student_Association"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/AZ_Electronic_Materials"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Canadian_Society_of_Hospital_Pharmacists"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/W._B._Ray_High_School"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bernard_Matthews_Ltd"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Institute_of_Neurological_Disorders_and_Stroke"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kimball_International"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bristol_Broadcasting_Company"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Church_Society"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nippon_Professional_Baseball"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/MANPA"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Orange_Field_Tea_Factory"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Santa_Catalina_School"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Socialist_Workers_Party_(UK)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/United_Bank_of_India"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Crown_American"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Austrian_Physical_Society"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/SOKO"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Montreal_School_for_the_Deaf"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tarini_Charan_Girls_School"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Taiyo_Yuden"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fretter"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Macksville_High_School"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/China_Food_and_Drug_Administration"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Churchmead_School"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Window_Rock_High_School"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Halifax_Harbour_Bridges"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Haywards_Heath_RFC"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Idalia_School"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Reconstruction_Front_(Greece)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/China_Minmetals"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nagoya_Diamond_Dolphins"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Swain_County_High_School"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Simonds_High_School"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/University_of_Santo_Tomas_Education_High_School"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Association_of_British_Travel_Agents"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lord's_Taverners"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Murray_Goulburn_Co-operative"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mill_Hill_School,_Derbyshire"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Riverview_Rural_High_School"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Wage_Stabilization_Board"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Razi_High_School"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/One_Nevada_Credit_Union"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Soltam_Systems"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/International_Organization_for_Succulent_Plant_Study"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/EV_Aicall_Zeltweg"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/David's_Bridal"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Council_on_Aging"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/EMS_(pharmaceuticals)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Deutscher_Amateur-Radio-Club"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/FIBA_Basketball_World_Cup"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hamburger_RC"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Conference_of_Consulting_Actuaries"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Wing_Wah"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pa\u015fabah\u00e7e_S.K."}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Patchway_Community_College"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fleetwood_Enterprises"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/SEAT"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Merck_Sharp_&_Dohme_Federal_Credit_Union"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mayr-Melnhof"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/South_Peninsula_High_School"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Toshiba_Kawasaki_Brave_Thunders"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/BLC_bank"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Codiscos"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/RTI_International_Metals"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Damascus_High_School"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Roscrea_RFC"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/High_School_Affiliated_to_Fudan_University"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bill_Miller_Bar-B-Q_Enterprises"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ganz_(toy_company)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bikanervala"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Orascom_Construction_Industries"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Toyo_Rikagaku_Kenkyusho"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chess_Records"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Budapesti_Honv\u00e9d_SE_(fencing)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cleveland_Pipers"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Franklin_County_High_School_(Tennessee)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Banco_Latino"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Willow_Glen_High_School"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Aurora_Plastics_Corporation"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mater_Dei_High_School_(Santa_Ana,_California)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/East_Leeds_Family_Learning_Centre"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Retired_Police_Association_of_NY"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bank_Persatuan"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Caverna_High_School"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pakistan_Oilfields"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Canaccord_Genuity"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Portuguese_Volleyball_Second_Division"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Schichau_Seebeckwerft"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/China_Railway_Engineering_Corporation"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Oriental_Institute_in_Sarajevo"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/De_La_Salle_Frere"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pondok_Pesantren_Al_Manshurin_Metro_Lampung"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/KK_Triglav_Kranj"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Carrs-Safeway"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pierre_Cardin__The_House_of_Cardin__1"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Loux_(company)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Humorama"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Avalon_Books"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Philadelphia_Parking_Authority"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/SMA_Negeri_2_Medan"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/British_School,_Caracas"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chandler_School"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Titanium_Metals_Corporation"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Turkeyfoot_Valley_Area_Junior/Senior_High_School"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/PulteGroup"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/East_Mecklenburg_High_School"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/BK_Dukla_Praha"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chandpara_Bani_Vidhay_Bithi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pilgrim_Mother_Campaign"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Diners_Club_International"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/S\u00e9minaire_Sainte-Marie"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Changfeng_Motor"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Celco"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bishop_DuBourg_High_School"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mechanical_and_Chemical_Industry_Corporation"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Daneshill_School"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Katanning_Senior_High_School"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Indian_School,_Bahrain"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/SunRice"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Avangard_Omsk"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Marion_Merrell_Dow"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Civil_Service_Police_Unit"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Belgian_Film_Critics_Association"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Croatian_Mountain_Rescue_Service"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Southside_High_School_(San_Antonio)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/North_Peace_Hockey_League"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ritenour_High_School"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Grupo_Lala"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Shropshire_County_Premier_Football_League"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Divizia_A1_(Volei_Feminin)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bombay_Sweets"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ross_Dress_for_Less"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Marcellin_College,_Bulleen"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Democratic_Party_(Japan)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Junior's"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mattachine_Society"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Zehrs_Markets"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Yellow_Front_Stores"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alvirne_High_School"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dunkin'_Brands"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Grupo_Antolin"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bundesverband_Junger_Unternehmer"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Miss_Iceland"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Progressive_Records"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Japanese_La_Salle_Academy"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Barristers'_Association_of_Philadelphia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Triveni_Kala_Sangam"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Saugeen_Valley_Conservation_Authority"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/St._Mary's_Academy_of_Caloocan_City"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/General_Directorate_of_Highways_(Turkey)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Budapesti_Honv\u00e9d_SE_(men's_water_polo)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Budapesti_Honv\u00e9d_SE_(men's_basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nathan_Eckstein_Middle_School"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rutelaget_Ask\u00f8y\u2013Bergen"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bishop_McGuinness_Catholic_High_School_(Oklahoma)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bridgewater-Raritan_High_School"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Korea_Coal_Corporation"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Grupo_Elektra"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Georgios_Papandreou_Party"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/China_National_Salt_Industry_Corporation"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Inland_Empire_Utilities_Agency"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Royal_High_Corstorphine_RFC"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Irish_History_Students'_Association"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Election_Commission_of_India"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Como_West_Public_School"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/BTU_International"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hamilton_Tiger-Cats"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Douglas_MacArthur_High_School_(San_Antonio)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Taipei_Adventist_American_School"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sagar_Films"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/International_Union_of_Psychological_Science"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hegang_No.1_High_School"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pathfinders_(Seventh-day_Adventist)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sikh_Pioneers_&_Sikh_Light_Infantry_Association_UK"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hagley_Park_Academy"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/TRU-SPEC"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/R\u00f6hm_Gesellschaft"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bhaluka_Pilot_High_School"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/United_States_Maritime_Administration"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/All-German_Bloc/League_of_Expellees_and_Deprived_of_Rights"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/BC_Dinamo_Tirana"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_American_Assembly"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/IPIP_SA"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Southwestern_Regional_Football_Association"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Howard_School_(Atlanta)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Aspen_Institute"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dornbracht"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lewis_Roca_Rothgerber_Christie"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Grupo_Abril"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rugby_Club_Vannes"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/People's_United_Party"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Democratic_Alignment_(1950)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Third_Amateur_Football_League_(Bulgaria)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bensons_for_Beds"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/SINTEF"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Perth_High_School"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Crimpy"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ministry_of_Health_(Saudi_Arabia)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Northern_Elements_Progressive_Union"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Taekwang_Group"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fa\u00e7onnable"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/China_National_Machinery_Import_and_Export_Corporation"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Booker_T._Washington_High_School_(Shreveport,_Louisiana)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bishop_Rosecrans_High_School"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Emery_Telcom"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/East_Northumberland_Secondary_School"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alfa_Pastry"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bethpage_High_School"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Capuchino_High_School"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jerrold_Electronics"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sacred_Heart_High_School_(Pennsylvania)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Aviamilano"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Saraswati_Mandir_High_School"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ferring_Pharmaceuticals"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Department_of_Supply"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mainichi_Broadcasting_System"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dinamo-Energija_Yekaterinburg"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Heathfield_Community_College"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lancaster_and_Morecambe_College"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Christ_Our_King-Stella_Maris_School"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Changchun_Film_Group_Corporation"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mowag"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/King's_High_School"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hatboro-Horsham_Senior_High_School"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jenapharm"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gent_Hawks"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/International_Penal_and_Penitentiary_Foundation"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tohoku_Bank"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Economic_and_Social_Development_Board"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kono_Model_Academy"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Naprz\u00f3d_Jan\u00f3w"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fabri-Kal"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/John_Mansfield_School"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bishop's_Stortford_High_School"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rayyithunge_Muthagaddim_Party"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Essex_Skating_Club"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ruhrpumpen"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pic_'N'_Save"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Christian_Academy_in_Japan"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/United_Community_Bank"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/James_Wood_High_School"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Scosa"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/North_Fork_Bank"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Leprino_Foods"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Wa_Senior_High_Technical_School"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Capitol_Institute"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Indian_Rare_Earths"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Maroussi_B.C."}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/San_Lorenzo_High_School"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nazareth_Catholic_College,_Adelaide"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Zumtobel_Group"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Evansville_Agogans"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Eastern_High_School_(Louisville,_Kentucky)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/St_Paul's_College,_Raheny"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lakeshore_Collegiate_Institute"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Civil_Defence_Ireland"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Farlingaye_High_School"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bellevue_Christian_School"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Helen_Lowry_Higher_Secondary_School"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/World_Vision_International"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gold_Medal_Books"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/RockResorts"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cincinnati_Financial"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jefferson_County_Public_Schools_(Colorado)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/BAPS_Charities"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Shenendehowa_High_School"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Public_Power_Corporation_S.A."}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/International_Association_of_Universities"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sibpur_S.S.P.S._Vidyalaya"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Taxation_Administration"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Simard-Beaudry_Construction"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Segunda_Divisi\u00f3n_de_M\u00e9xico"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cherry_(keyboards)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lake_Oswego_High_School"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Editora_Abril"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Guinness_Nigeria"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Budapesti_Honv\u00e9d_SE_(canoeing)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cooperation_and_Brotherhood"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Majlis-e-Tahaffuz-e-Khatme_Nabuwwat"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nippon_Steel_&_Sumitomo_Metal"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Huddinge_IK"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Royal_Scottish_Pipe_Band_Association_Northern_Ireland_Branch"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Thrybergh_Academy"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vadodara_Municipal_Corporation"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Southington_High_School"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Philips_Records"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lewis_Silkin_LLP"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/World_Veterans_Federation"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Studios_Herg\u00e9"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/High_School_Attached_to_Northeast_Normal_University"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/United_States_Civil_Administration_of_the_Ryukyu_Islands"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Green_Meadow_Waldorf_School"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Taiyuan_Heavy"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Leadership_Conference_on_Civil_and_Human_Rights"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Asko_Cylinda"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Charlotte_Christian_School"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Constantin_Film"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Miss_University_of_Florida"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Baipu_Middle_school"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/International_Association_for_Plant_Taxonomy"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Association_of_Teachers_of_Mathematics"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Orana_Incorporated"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Reavis_High_School"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Blue_Ridge_Communications"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Second_Professional_Football_League_(Bulgaria)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/West_Geauga_High_School"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nantou_County_Government"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mid-Somerset_Football_League"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chance_Records"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/2._Oberliga_S\u00fcd"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Miss_Norway"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gesell_Institute"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mira_Costa_High_School"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Belize_Electricity_Limited"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gladstone_Secondary_School"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Okinawa_Social_Mass_Party"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/County_Line_High_School"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/\u0160kolska_knjiga"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Wardley_(company)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Blonder_Tongue_Labs"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cook_Islands_Round_Cup"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Burma_Workers_Party"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Anti-Assassins"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sierra_Springs"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Southeast_High_School_(Ohio)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Wolford"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alpha_Secondary_School"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Riverboat_Discovery"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Yunnan_People's_Publishing_House"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Maffra_Secondary_College"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Freetown_Elementary_School"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Luzhou_Laojiao"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pensby_High_School"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dot_Records"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Athletic_Trainers'_Association"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tamron"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Churchill_School_(Harare)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mackinac_Bridge_Authority"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Central_Motors"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Instituto_Tecnol\u00f3gico_de_Ciudad_Madero"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Auxiliary_Medical_Service"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Uganda_Clays_Limited"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hefame_Group"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ace_Communication_Group"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Troy_High_School_(Michigan)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Miss_Sweden"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/King's_College,_Guildford"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Capitol_Records_Nashville"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Whitney_M._Young_Gifted_&_Talented_Leadership_Academy"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lippo_Group"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Supermercado_De_Candido"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Clontarf_Beach_State_High_School"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/R\u00e9union_Premier_League"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dupont_Brewery"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Grey_Court_School"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Camden_Military_Academy"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Northwestern_Lehigh_School_District"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Springer_Publishing"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Stratton_Upper_School"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CSK_VVS_Samara_(ice_hockey)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/International_Economic_Association"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sponeta_(corporation)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bottega_Giotti"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kurgan_Wheel_Tractor_Plant"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/East_Africa_rugby_union_team"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Reserve_Officers_Association"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Office_of_Foreign_Assets_Control"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Liga_Premier_de_Ascenso"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fairfax_County_Park_Authority"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Whitley_Academy"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Heritage_Academy_Longmeadow"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Equitable_PCI_Bank"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Delaware_County_Christian_School"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/International_Francophone_Press_Union"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Institute_of_Diabetes_and_Digestive_and_Kidney_Diseases"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/St._Stephen's_Episcopal_School_(Austin,_Texas)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lebanese_Fourth_Division"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Desilu_Productions"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/AmeriCU_Credit_Union"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Winters_Brothers"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chittaranjan_Locomotive_Works"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Villar_Records"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Department_of_National_Development_(1950\u201372)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Transworld_Publishers"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Schoenherr_(law_firm)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/American_Association_of_Physician_Specialists"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sinohydro"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/DMA_Distribuidora"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ladywood_High_School"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Elizabeth_Lowell_High_School"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/United_Issarak_Front"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lebanese_Third_Division"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/North_Harford_High_School"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/DDR-Liga"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Amer_Sports"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ramco-Gershenson_Properties_Trust"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Star_Micronics"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Denver_Falcons"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bridgewater_School"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/A._A._Turki_Group"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Liberal_Party_(Japan,_1950)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Palmyra-Macedon_High_School"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Old_Hall_Comprehensive_School"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Questar_Corporation"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Colegio_del_Verbo_Divino"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Your_Credit_Union_(Canada)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sinochem_Group"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Izumi_Chuo_High_School"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hidroconstruc\u021bia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fairmont_Heights_High_School_(Maryland)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Head_(company)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/M._Firon_&_Co."}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Intermountain_Indian_School"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Zeeland_Farm_Services"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bharatiya_Vidya_Bhavan's_Mehta_Vidyalaya"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Suhrkamp_Verlag"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Univar_Canada"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Genstar_Development_Company"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vanguard_Records"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Villa_Angela-St._Joseph_High_School"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Schurman_Retail_Group"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vitra_(furniture)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Atomic_Energy_Commission"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/James_Lick_High_School"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Norwin_High_School"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/KK_Celje"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/People's_Progressive_Party_(Guyana)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Brockbank_Jr._High"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pearl_Izumi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sanyo"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/St_John_Fisher_Catholic_High_School,_Wigan"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/St._Benedict_High_School_(Chicago,_Illinois)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ministry_of_Labour_and_Social_Affairs_(Iran)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Venice_High_School_(Venice,_Florida)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sinotrans"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tr\u00f8nderEnergi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Professional_Basketball_League_(1950\u201351)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Institute_of_Electronics_Engineers_of_the_Philippines"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/St._Peter's_College_Tororo"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Grenada_United_Labour_Party"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Redbank_Valley_Junior/Senior_High_School"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Itaca_Records"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Junior_Engineering_Technical_Society"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cheung_Kong_Holdings"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/MKB_Bank"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bishop_Challoner_School"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Catholic_Central_High_School_(London,_Ontario)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nuclear_Measurements_Corporation"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/History_of_the_FIBA_Basketball_World_Cup"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Primera_D"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Zamboni_Company"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Radio_Society_of_Sri_Lanka"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kazanorgsintez"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Muscular_Dystrophy_Association"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/HAECO"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Racal"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Science_Board"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gillotts_School"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chapel_Hill_High_School_(Tyler,_Texas)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Butte_County_High_School"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Academia_San_Jos\u00e9"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jun\u00edpero_Serra_High_School_(Gardena,_California)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Galuapur_Inter_College"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Big_Walnut_High_School"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/1950", "surface form": "1950"}], "relations": [{"URI": "http://dbpedia.org/ontology/company", "surface form": "organizations"}, {"URI": "http://dbpedia.org/ontology/author", "surface form": "founded"}]}, {"id": "19", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Who created the comic Captain America?", "keywords": "comic, Captain America, create"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Captain_America dbo:creator ?uri }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jack_Kirby"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Joe_Simon"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Captain_Comic", "surface form": "comic Captain America"}], "relations": [{"URI": "http://dbpedia.org/ontology/creator", "surface form": "created"}]}, {"id": "20", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Give me the Apollo 14 astronauts.", "keywords": "astronaut, Apollo 14"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { ?uri dbo:mission res:Apollo_14 }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Stuart_Roosa"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alan_Shepard"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Edgar_Mitchell"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Apollo_14", "surface form": "Apollo 14 astronauts"}], "relations": []}, {"id": "21", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Who wrote the book The pillars of the Earth?", "keywords": "wrote, book, The pillars of the Earth"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> SELECT DISTINCT ?uri WHERE { res:The_Pillars_of_the_Earth dbo:author ?uri }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ken_Follett"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/The_Pillars_of_the_Earth", "surface form": "The Pillars of the Earth"}], "relations": [{"URI": "http://dbpedia.org/ontology/author", "surface form": "wrote"}]}, {"id": "22", "answertype": "resource", "aggregation": false, "onlydbo": false, "hybrid": false, "question": [{"language": "en", "string": "Which state of the United States of America has the highest density?", "keywords": "state, united, states, america, highest, density"}], "query": {"sparql": "PREFIX yago: <http://dbpedia.org/class/yago/> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> PREFIX dbp: <http://dbpedia.org/property/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT ?uri WHERE { ?uri dbp:densityrank ?density } ORDER BY ASC(?density) LIMIT 1"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/New_Jersey"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/United_States", "surface form": "United States of America"}], "relations": [{"URI": "http://dbpedia.org/ontology/populationDensity", "surface form": "highest density"}]}, {"id": "23", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Which spaceflights were launched from Baikonur?", "keywords": "spaceflight, launched, Baikonur"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/launchPad> res:Baikonur_Cosmodrome }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Orbital_Piloted_Assembly_and_Experiment_Complex"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Salyut_7"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Salyut_6"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/DOS-2"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kosmos_557"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/International_Space_Station"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kosmos_1686"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Salyut_5"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Priroda"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Salyut_4"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Salyut_3"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Salyut_2"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Salyut_1"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Baikonur_Cosmodrome_Site_110", "surface form": "Baikonur"}], "relations": [{"URI": "http://dbpedia.org/ontology/countryWithFirstSpaceflight", "surface form": "spaceflights"}, {"URI": "http://dbpedia.org/ontology/totalLaunches", "surface form": "launched"}]}, {"id": "24", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Give me a list of all trumpet players that were bandleaders.", "keywords": "trumpet player, bandleader"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { ?uri dbo:occupation res:Bandleader ; dbo:instrument res:Trumpet }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Terumasa_Hino"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Adam_Taubitz"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jacobo_Rubalcaba"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jimmy_Dorsey"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pacho_Galan"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Abatte_Barihun"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jimmy_Vivino"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Billie_Rogers"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lloyd_Hunter"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hot_Lips_Page"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Wayne_Bergeron"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Clifford_Thornton"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Richard_Maltby,_Sr."}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Doc_Cheatham"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ovie_Alston"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pete_Brown_(jazz_musician)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Don_Albert"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bobby_Hackett"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Charlie_Spivak"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Guy_Barker"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Neil_Yates"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Louis_Prima"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gerald_Wilson"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Willie_Mitchell_(musician)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Orbert_Davis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sean_Jones_(trumpeter)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Henry_Jerome"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Brad_Turner_(musician)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ollie_Mitchell"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Artie_Fields"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ernest_%22Doc%22_Paulin"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mark_Masters_(musician)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Erskine_Hawkins"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jack_Jackson_(British_radio)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gerard_Presencer"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Joe_Wilder"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Doc_Severinsen"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alan_Silva"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Red_Perkins"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Wingy_Manone"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cleveland_Eaton"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Papa_Celestin"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Danny_Davis_(country_musician)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Maynard_Ferguson"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Theodore_Carpenter"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Marlon_Jordan"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Trumpet", "surface form": "trumpet players"}, {"URI": "http://dbpedia.org/resource/List_of_American_big_band_bandleaders", "surface form": "bandleaders"}], "relations": []}, {"id": "25", "answertype": "resource", "aggregation": false, "onlydbo": false, "hybrid": false, "question": [{"language": "en", "string": "Which U.S. states are in the same timezone as Utah?", "keywords": "U.S. state, same, timezone, Utah"}], "query": {"sparql": "PREFIX yago: <http://dbpedia.org/class/yago/> PREFIX res: <http://dbpedia.org/resource/> PREFIX dbp: <http://dbpedia.org/property/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { res:Utah dbp:timezone ?x . ?uri rdf:type yago:WikicatStatesOfTheUnitedStates ; dbp:timezone ?x FILTER ( ?uri != res:Utah ) }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nebraska"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/New_Mexico"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Illinois"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alabama"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vermont"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Virginia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Minnesota"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kansas"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Missouri"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Wyoming"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Texas"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Connecticut"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Georgia_(U.S._state)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Maryland"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hawaii"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/North_Dakota"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Massachusetts"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kentucky"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Oklahoma"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/South_Dakota"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mississippi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Idaho"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Indiana"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/North_Carolina"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Louisiana"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Delaware"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Arizona"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rhode_Island"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Colorado"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Maine"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Washington_(state)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Florida"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Iowa"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/West_Virginia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/South_Carolina"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pennsylvania"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Wisconsin"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Michigan"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/New_Hampshire"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Montana"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nevada"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tennessee"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alaska"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Arkansas"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/New_Jersey"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Usk,_Washington", "surface form": "US"}, {"URI": "http://dbpedia.org/resource/Utah", "surface form": "Utah"}], "relations": [{"URI": "http://dbpedia.org/ontology/timeZone", "surface form": "timezone"}]}, {"id": "26", "answertype": "resource", "aggregation": false, "onlydbo": false, "hybrid": false, "question": [{"language": "en", "string": "Which U.S. states possess gold minerals?", "keywords": "U.S. state, mineral, gold"}], "query": {"sparql": "PREFIX yago: <http://dbpedia.org/class/yago/> PREFIX dbp: <http://dbpedia.org/property/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type yago:WikicatStatesOfTheUnitedStates ; dbp:mineral ?mineral FILTER regex(?mineral, \"gold\", \"i\") }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mississippi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/California"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/North_Carolina"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/United_States", "surface form": "US"}], "relations": [{"URI": "http://dbpedia.org/ontology/owner", "surface form": "possess"}, {"URI": "http://dbpedia.org/ontology/champion", "surface form": "gold minerals"}]}, {"id": "27", "answertype": "string", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Who is the daughter of Ingrid Bergman married to?", "keywords": "Ingrid Bergman, daughter, married"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Ingrid_Bergman dbo:child ?child . ?child <http://dbpedia.org/property/spouse> ?uri }"}, "answers": [{"head": {"vars": ["string"]}, "results": {"bindings": [{"string": {"type": "literal", "value": "Joseph Daly"}}, {"string": {"type": "literal", "value": "John Carley"}}, {"string": {"type": "literal", "value": "Fuller Earle Callaway, III"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Ingrid_Bergman", "surface form": "Ingrid Bergman"}], "relations": [{"URI": "http://dbpedia.org/ontology/child", "surface form": "daughter"}, {"URI": "http://dbpedia.org/property/spouse", "surface form": "married"}]}, {"id": "28", "answertype": "number", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "How deep is Lake Placid?", "keywords": "Lake Placid, depth"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> SELECT DISTINCT ?n WHERE { <http://dbpedia.org/resource/Lake_Placid_(Texas)> dbo:maximumDepth ?n }"}, "answers": [{"head": {"vars": ["c"]}, "results": {"bindings": [{"c": {"type": "literal", "value": "12.192"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Lake_Placid", "surface form": "Lake Placid"}], "relations": [{"URI": "http://dbpedia.org/ontology/capital", "surface form": "deep"}]}, {"id": "29", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Show me all museums in London.", "keywords": "museums, London"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Museum> ; <http://dbpedia.org/ontology/location> <http://dbpedia.org/resource/London> }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Leighton_House_Museum"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ben_Uri_Gallery"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sir_John_Soane's_Museum"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Free_Art_and_Technology_Lab"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/InIVA"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Foundling_Museum"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Old_Operating_Theatre_Museum_and_Herb_Garret"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tate_Britain"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Portrait_Gallery,_London"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Wimbledon_Lawn_Tennis_Museum"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gasworks_Gallery"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chisenhale_Gallery"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tate_Modern"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Peckham_Platform"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Imperial_War_Museum"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/HMS_Belfast_(C35)__HMS_Belfast_Museum_ship__1"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Royal_Academy_of_Arts"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Maritime_Museum"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Unit_London"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Carlyle's_House"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Queen's_Gallery"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Islington_Museum"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Serpentine_Galleries"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/V&A_Museum_of_Childhood"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Museum_of_Croydon"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kirkaldy_Testing_Museum"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/London_Canal_Museum"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Winston_Churchill's_Britain_At_War_Experience"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/William_Morris_Gallery"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Academia_Rossica"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Museum_of_Wimbledon"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Gallery"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jack_the_Ripper_Museum"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Photographers'_Gallery"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fan_Museum"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hayward_Gallery"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Victoria_and_Albert_Museum"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Wellcome_Collection"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Arsenal_Football_Club_Museum"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Science_Museum,_London"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Museum_of_the_Order_of_St_John"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dairy_Art_Centre"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Cartoon_Museum"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Museum_of_Brands,_Packaging_&_Advertising"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Courtauld_Gallery"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Churchill_War_Rooms"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Postal_Museum"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bishopsgate_Institute"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bridgeman_Art_Library"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Leverian_collection"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/British_School_at_Rome"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Saatchi_Gallery"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Royal_Air_Force_Museum_London"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Royal_Society_of_Chemistry__Burlington_House__1"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Museum_of_London_Docklands"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Whitechapel_Gallery"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Keats_House"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pushkin_House_(London)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Walthamstow_Pumphouse_Museum"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sartorial_Contemporary_Art"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/London_Dungeon"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vestry_House_Museum"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Museum_of_Domestic_Design_and_Architecture"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Army_Museum"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jewish_Museum_London"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Geffrye_Museum"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sherlock_Holmes_Museum"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/British_Museum"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dulwich_Picture_Gallery"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Museum_of_London"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Design_Museum"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Natural_History_Museum,_London"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/London_Transport_Museum"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Institute_of_Contemporary_Arts"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/October_Gallery"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Florence_Nightingale_Museum"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Horniman_Museum"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Grant_Museum_of_Zoology_and_Comparative_Anatomy"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Freud_Museum"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Carpenters_Workshop_Gallery"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Museums_in_Aalborg", "surface form": "museums"}, {"URI": "http://dbpedia.org/resource/London", "surface form": "London"}], "relations": [{"URI": "http://dbpedia.org/ontology/show", "surface form": "show"}]}, {"id": "30", "answertype": "resource", "aggregation": false, "onlydbo": false, "hybrid": false, "question": [{"language": "en", "string": "Which caves have more than 3 entrances?", "keywords": "cave, entrance, more than 3"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Cave> ; <http://dbpedia.org/property/entranceCount> ?entrance FILTER ( ?entrance > 3 ) }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ease_Gill_Caverns"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Minori_Cave"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Amat\u00e9rsk\u00e1_Cave"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lost_John's_Cave"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Yordas_Cave"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Great_Douk_Cave"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jenolan_Caves"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gouffre_Jean-Bernard"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fingal's_Cave"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ingleborough_Cave"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Short_Drop_Cave_-_Gavel_Pot_System"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jackson's_Bay_Cave"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Traungold_Cave"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pollnagollum"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Badami_cave_temples"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Porth_yr_Ogof"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sistema_Sac_Actun"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kharosa"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gargantua_(cave)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gruta_das_Torres"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sistema_Dos_Ojos"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/B\u00fd\u010d\u00ed_sk\u00e1la_Cave"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Steinbr\u00fccken_Cave"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Redmond_Caves"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/New_Athos_Cave"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Phong_Nha_Cave"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Windsor_Great_Cave"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Trail_Creek_Caves"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Seneca_Caverns_(Ohio)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gaping_Gill"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Karla_Caves"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Candelaria_Caves"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Callao_Cave"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mahakali_Caves"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bhaja_Caves"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Yar\u0131mburgaz_Cave"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Wookey_Hole_Caves"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kanheri_Caves"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Three_Counties_System"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Shuang_River_Cave_Group"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sistema_Ox_Bel_Ha"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hang_S\u01a1n_\u0110o\u00f2ng"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Seneca_Caverns_(West_Virginia)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Buchan_Caves"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sistema_Nohoch_Nah_Chich"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Green_Grotto_Caves"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Boho_Caves"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mammoth_Cave_(Utah)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kazumura_Cave"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Caves_of_Aggtelek_Karst_and_Slovak_Karst", "surface form": "caves"}], "relations": [{"URI": "http://dbpedia.org/ontology/iso6393Code", "surface form": "3 entrances"}]}, {"id": "31", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Who is the tallest player of the Atlanta Falcons?", "keywords": "Atlanta Falcons, player, tallest"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/team> <http://dbpedia.org/resource/Atlanta_Falcons> ; <http://dbpedia.org/ontology/height> ?h } ORDER BY DESC(?h) OFFSET 0 LIMIT 1"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Matt_Schaub"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Atlanta_Falcons", "surface form": "Atlanta Falcons"}], "relations": [{"URI": "http://dbpedia.org/ontology/coach", "surface form": "tallest player"}]}, {"id": "32", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "What are the top-10 action role-playing video games according to IGN?", "keywords": "top-10, action, role-playing games, IGN"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://purl.org/dc/terms/subject> <http://dbpedia.org/resource/Category:Action_role-playing_video_games> ; <http://dbpedia.org/property/ign> ?score } ORDER BY DESC(?score) LIMIT 10"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mass_Effect_2:_Lair_of_the_Shadow_Broker"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vagrant_Story"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jade_Empire"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Diablo_III"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fallout_4"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fable_II"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mass_Effect_2"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mass_Effect_3"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dark_Souls_III"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Battleheart_Legacy"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Action_role-playing_games", "surface form": "top-10 action role-playing video games"}, {"URI": "http://dbpedia.org/resource/IGN", "surface form": "IGN"}], "relations": []}, {"id": "33", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Give me all writers that won the Nobel Prize in literature.", "keywords": "writer, win, Nobel Prize in literature"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Writer> ; <http://dbpedia.org/ontology/award> <http://dbpedia.org/resource/Nobel_Prize_in_Literature> }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hermann_Hesse"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Aleksandr_Solzhenitsyn"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ernest_Hemingway"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Czes\u0142aw_Mi\u0142osz"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Joseph_Brodsky"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jos\u00e9_Saramago"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Wis\u0142awa_Szymborska"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/John_Steinbeck"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gerhart_Hauptmann"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Eugene_O'Neill"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Thomas_Mann"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Toni_Morrison"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/T._S._Eliot"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Svetlana_Alexievich"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/William_Golding"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pablo_Neruda"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alice_Munro"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Patrick_Modiano"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Juan_Ram\u00f3n_Jim\u00e9nez"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Harold_Pinter"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Seamus_Heaney"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Nobel_Prize", "surface form": "Nobel Prize"}, {"URI": "http://dbpedia.org/resource/Literature", "surface form": "literature"}], "relations": [{"URI": "http://dbpedia.org/ontology/writer", "surface form": "writers"}, {"URI": "http://dbpedia.org/ontology/award", "surface form": "won"}]}, {"id": "34", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Show me all basketball players that are higher than 2 meters.", "keywords": "basketball players, higher than 2 meters"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/BasketballPlayer> ; <http://dbpedia.org/ontology/height> ?n FILTER ( ?n > 2.0 ) }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/J\u0101nis_Porzi\u0146\u0123is"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sylvania_Watkins"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Emanuel_Neto"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Michael_Gbinije"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Eloy_Vargas"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Michalis_Kamperidis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cam_Rigby"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Todd_Cauthorn"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nemanja_Krsti\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dejan_Bodiroga"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Art_Spoelstra"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cliff_Robinson_(basketball,_born_1966)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bamba_Fall"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Aleksandar_\u0160terjov"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Randolph_Morris"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kasib_Powell"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Royce_White"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Windi_Graterol"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bla\u017e_\u010cre\u0161nar"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Elias_Harris"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Furkan_Aldemir"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Anthony_Mason_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jim_Chones"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dragan_Api\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Juan_Pablo_Vaulet"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Murilo_Becker"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ralph_Sampson"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Andreas_Kanonidis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ryan_Stack"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rudy_Tomjanovich"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sergio_De_Randamie"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Wayne_Simien"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Larry_Turner_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Augusto_Lima"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jason_Collier"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Paul_Ruffner"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Charlie_Villanueva"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Popeye_Jones"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jo\u00e3o_Gomes_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tony_Zeno"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ga\u0161per_Vidmar"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mike_Bantom"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jason_Thompson_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cameron_Echols"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Barry_Sumpter"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Marc_Iavaroni"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lee_Davis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/David_Wear"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Omer_Abdelqader"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jody_Lumpkin"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Eric_Montross"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Aleks_Mari\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Han_Dejun"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Emeka_Okafor"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Josh_Powell"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Micah_Downs"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tim_Behrendorff"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rodney_Rogers"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ante_Krapi\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/David_Thirdkill"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ben_McCauley"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chris_Daniels_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/\u0130nan\u00e7_Ko\u00e7"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Moses_Malone"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Efkan_Eren"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Justin_Rutty"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Brian_Randle"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/DeQuan_Jones"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jai_Lewis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bryan_Bracey"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tyrone_Washington"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/George_Stone_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Billy_White_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ron_Ellis_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ken_Spain"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Uro\u0161_Lu\u010di\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Joe_Barry_Carroll"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vin_Baker"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Massimo_Masini"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Charles_Shackleford"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Remon_van_de_Hare"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pete_Chilcutt"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Diamon_Simpson"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Miko_Golubovi\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nikola_Kalini\u0107_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jack_Marin"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Daniel_Ochefu"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chris_Burgess"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rondae_Hollis-Jefferson"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Detlef_Schrempf"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kelly_Olynyk"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gjorgji_\u010cekovski"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Marcus_Morris_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ivan_Johnson_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/James_Lang_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Valerio_Amoroso"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Marcos_Del\u00eda"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Truck_Robinson"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ben_Altit"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tony_Mitchell_(basketball,_born_1992)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/JJ_Hickson"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/R._T._Guinn"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gary_Freeman_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Joey_Graham"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Eulis_B\u00e1ez"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kiril_Nikolovski"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Doug_Kistler"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Adarrial_Smylie"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/David_Attewell"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/\u0130lkan_Karaman"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cartier_Martin"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Uro\u0161_Slokar"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Steve_Novak"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Juaquin_Hawkins"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kirk_Archibeque"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cleveland_Buckner"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Clyde_Lovellette"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Donatas_Tarolis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dimitrios_Katiakos"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/John_Irving_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Brian_Butch"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Christos_Tapoutos"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Warren_Isaac"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jordan_Aboudou"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Trey_Gilder"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rick_Darnell"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ed_Siudut"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Brandan_Wright"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/John_Williamson_(basketball,_born_1986)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ahmet_D\u00fcverio\u011flu"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rodney_Carney"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Andre_Brown_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tim_McCormick"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tayshaun_Prince"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rub\u00e9n_Garc\u00e9s"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Denis_Krestinin"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/John_Hummer"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Zendon_Hamilton"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Johannes_Voigtmann"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Theodoros_Papaloukas"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mamadou_N'Diaye_(basketball,_born_1975)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Strahinja_Stoja\u010di\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chris_Douglas-Roberts"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chris_Crawford_(basketball,_born_1975)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alonzo_Mourning"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Johan_Grebongo"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rik_Smits"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Larry_Krystkowiak"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jordan_Richard"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Terquin_Mott"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dan_O'Sullivan"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rick_Jackson"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ron_Slay"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dontae'_Jones"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Terry_Davis_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Josh_Grant"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Adri\u00e1n_Zamora"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Wiley_Peck"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jason_Collins"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Darrall_Imhoff"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ronnie_Valentine"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Wayne_Hightower"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Giannis_Sachpatzidis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Franko_Naki\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Andrew_Bogut"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Michalis_Tsairelis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dejan_Musli"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jay-R_Reyes"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dra\u0161ko_Albijani\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Talib_Zanna"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Andriy_Malysh"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pace_Mannion"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Joby_Wright"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Boo_Jackson"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Aaron_Williams_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vitaly_Potapenko"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alessandro_Tonolli"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/\u017darko_Kne\u017eevi\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/\u0110oko_\u0160ali\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jack_Nichols_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Leo_Lyons_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jim_Kissane"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Darryl_Dawkins"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Marko_Dujkovi\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tyler_Cain"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Radoje_Vujo\u0161evi\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nikola_Jevtovi\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Coty_Clarke"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Scot_Pollard"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ivan_Opa\u010dak"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Aleksandar_Radulovi\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Craig_Callahan"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Corsley_Edwards"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mike_Williams_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Justin_Jackson_(basketball,_born_1995)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Brent_Barry"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tomislav_Gabri\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Duane_Ferrell"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Josh_Boone_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Timofey_Mozgov"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Killian_Tillie"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Greg_Stiemsma"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Michael_Smith_(basketball,_born_1965)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Keith_Clanton"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Milan_Dozet"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Milan_Vu\u010di\u0107evi\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mike_Lewis_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Al_Beard"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Goran_Suton"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Joseph_Blair"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Robert_Loe"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Georgeann_Wells"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Perry_Jones"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Harry_Davis_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gary_Gregor"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rasual_Butler"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ed_Stokes"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Donyell_Marshall"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rodney_White"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ron_Riley_(basketball,_born_1950)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Clifford_Rozier"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rico_Hill"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Randy_Breuer"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Robertas_Javtokas"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/LaMarcus_Aldridge"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/John_Mills_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jim_Petersen"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Brice_Johnson"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Johnny_Horan"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Charles_Judson_Wallace"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jared_Homan"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/C._J._Leslie"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lamine_Kant\u00e9"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chris_King_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ram\u00f3n_Rivas"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Johnny_O'Bryant_III"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Josh_Carter"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dragan_Smiljani\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dragan_Labovi\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Julius_Randle"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Danilo_Mijatovi\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tim_James_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dickey_Simpkins"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Steve_Goodrich"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Primo\u017e_Brezec"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dominic_McGuire"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vangelis_Karampoulas"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Guille_Rubio"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Asghar_Kardoust"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pervis_Ellison"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mathieu_Wojciechowski"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rich_Johnson_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Michael_Wright_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kenny_Dennard"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nikos_Kamarianos"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kevin_Restani"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bakari_Hendrix"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Paris_Maragkos"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Drew_Gordon"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kyle_O'Quinn"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Perry_Stevenson"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dexter_Westbrook"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nikola_Milatovi\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Steve_Scheffler"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Al_Salvadori"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gabriel_Fern\u00e1ndez_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Anthony_Randolph"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Al_Miksis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Steffond_Johnson"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Yi_Jianlian"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gary_Alcorn"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Joe_Strawder"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Smiljan_Pavi\u010d"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nikola_Miroti\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Michael_Olowokandi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vadim_Panin"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Eric_Riley"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Darko_Planini\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mike_Allison_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mark_Madsen"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Milan_Jeremi\u0107_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Robert_Krabbendam"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Robert_Archibald"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Zoran_Vrki\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bayard_Forrest"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Wayne_Embry"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kevin_Kunnert"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bill_Schrader"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Siim-Sander_Vene"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vassil_Evtimov"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ken_Smith_(basketball,_born_1953)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tobias_Harris"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Matt_Freije"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ronald_Roberts_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nikos_Barlos"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jamie_Dawson"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rade_Lon\u010dar"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Wayman_Tisdale"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ilia_Londaridze"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Eric_Williams_(basketball,_born_1972)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vineeth_Revi_Mathew"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jonas_Wohlfarth-Bottermann"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Keith_Closs"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Johan_Petro"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Greg_Newton"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sam_Williams_(basketball,_born_1959)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ryan_Evans"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Anthony_Cook_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gorgui_Dieng"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tyrus_Thomas"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kenny_Williams_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chandler_Parsons"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/John_Windsor"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nemanja_Be\u0161ovi\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/V\u00edctor_\u00c1vila"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sa\u0161a_Don\u010di\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Darnell_Jackson"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Antoine_Joseph"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dra\u017een_Zlovari\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Daniel_Orton"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jeremy_McNeil"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Slaven_\u010cupkovi\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Shagari_Alleyne"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Roger_Brown_(basketball,_born_1950)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nerlens_Noel"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Erik_Copes"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Harrison_Barnes"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pat_Calathes"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dimitris_Kaklamanakis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bojan_Radeti\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Stanko_Bara\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dan_Ruland"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sebastien_Bellin"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Charles_Hardnett"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Stan_Love_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Oleksiy_Pecherov"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mo_Charlo"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Terence_Morris"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Robert_Upshaw"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Willie_Williams_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ray_Tolbert"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dallas_Lauderdale"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kevin_Love"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dale_Davis_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tadas_Klimavi\u010dius"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ken_Johnson_(basketball,_born_1962)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Scottie_Pippen"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sylvester_Norris_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Wayne_Sappleton"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Harold_Pressley"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mamadou_Diop_(basketball,_born_1993)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jon_Leuer"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pierre_Valmera"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/\u00d6mer_Yurtseven"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gregory_Kotrotsios"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sotiris_Sakellariou"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jo\u00e3o_Santos_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Devin_Oliver"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alen_Omi\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bob_Netolicky"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Clyde_Lee"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Danuel_House"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Arijan_Komazec"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Curtis_Borchardt"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fabricio_Oberto"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ken_Green_(basketball,_born_1959)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alex_Hannum"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Yvon_Joseph"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lamar_Odom"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/BeeJay_Anya"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/A._C._Green"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Logan_Stutz"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Povilas_Butkevi\u010dius"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ken_Holmqvist"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dwayne_Collins"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Yancy_de_Ocampo"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fran_Guerra"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Yi_Li_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Paul_George"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rudy_LaRusso"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/\u00c9ric_Struelens"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kyle_Wiltjer"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jarrid_Famous"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ryan_Richards"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bob_Houbregs"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Do\u011fukan_S\u00f6nmez"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Quincy_Ford"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/As\u0131m_Pars"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Eddie_Robinson_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Micka\u00ebl_Gelabale"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jim_Brewer_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/J\u00e9r\u00f4me_Mo\u00efso"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Evaldas_Kairys"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jon_Koncak"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/John_Bryant_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Konrad_Wysocki"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Austin_Steed"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gheorghe_Mure\u0219an"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Emilio_Kova\u010di\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Linton_Townes"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Marko_\u0160\u0107eki\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hamdi_Braa"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Marques_Bragg"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hakim_Warrick"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nusret_Y\u0131ld\u0131r\u0131m"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tony_Gugino"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jorge_Coelho"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Angelo_Caloiaro"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nouha_Diakit\u00e9"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Andrejs_Gra\u017eulis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bassel_Bawji"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Terry_Cummings"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sonny_Thoss"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Uri_Kokia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tolga_Ge\u00e7im"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dave_Popson"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ron_Livingstone"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Robert_Thomson_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ousmane_Camara"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mark_Sanford_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/\u0160ime_\u0160pralja"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Eric_Griffin_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Georgios_Karagkoutis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/George_McGinnis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jeff_Wilkins_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Radoslav_Nesterovi\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Israel_Guti\u00e9rrez"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Roberto_Due\u00f1as"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jabari_Smith"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bori\u0161a_Simani\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Travis_Knight_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Melsahn_Basabe"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Curtis_Rowe"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mickey_Johnson"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Uro\u0161_Lukovi\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rafael_Rull\u00e1n"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Joe_Wylie"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/\u00dcmit_Sonkol"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Andre_Patterson"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bangaly_Fofana"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Marcus_Vinicius_Toledo"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nikola_Jestratijevi\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cheikh_Samb"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Georgios_Bogris"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Britton_Johnsen"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Aaron_Gordon"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Malcolm_Thomas_(basketball,_born_1988)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jeff_Sanders"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hugues_Occansey"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Boban_Marjanovi\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Clarence_Grier"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tom_Kondla"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Grant_Hill"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ron_Mercer"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tom_Domako"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Japeth_Aguilar"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Berkay_Candan"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jason_Sasser"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rodney_Hood"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Brock_Motum"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bill_Stricker"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nikos_Oikonomou"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Michael_Andersen"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Predrag_Samard\u017eiski"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Luka_Don\u010di\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/J._J._Anderson"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Darington_Hobson"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kiril_Pavlovski"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Goo_Kennedy"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/John_Turek"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jason_Dixon"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/David_Simon_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tom_McMillen__Tom_McMillen__1"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hutch_Jones"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/John_Pritchard_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Charles_Tabet"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Wil_Carter"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/M._J._Rhett"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Richard_Hamilton_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lou_Roe"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alex_Oriakhi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/\u00dcmit_T\u00fcrko\u011flu"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Karl-Anthony_Towns"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mac_Koshwal"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jasmin_Huki\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Michael_Sweetney"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Derrick_McKey"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ivo_Alfredo"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Deng_Gai"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chris_Owens_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dan_Godfread"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Phil_Hicks"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vyacheslav_Motorchuk"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jozo_Brki\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Darrin_Hancock"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bob_Greacen"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Milovan_Rakovi\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Danny_Granger"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fabien_Paschal"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/JayVaughn_Pinkston"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Laurence_Ekperigin"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Trey_Thompkins"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Yunss_Akinocho"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Filip_Bako\u010d"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ken_Sears"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Trevor_Booker"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Drew_Gooden"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alex_Liatsos"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kyle_Anderson_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Georgios_Printezis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Milo_Komenich"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Henry_James_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/LaVell_Blanchard"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Anthony_Bonner"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Efthymios_Tsakaleris"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sergei_Yuryevich_Panov"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Don_Ford"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Paul_Pierce"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bob_Pettit"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Isaac_Bonga"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ben_Clyde"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nemanja_Radovi\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gur_Shelef"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Orhan_Ayd\u0131n"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nik_Caner-Medley"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Burak_Yacan_Y\u00fcksel"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Maria_Stepanova"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gary_Wilkinson_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Metin_T\u00fcren"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/James_Reaves"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Phillip_Tabet"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gary_Bergen"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/\u017deljko_Zagorac"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alexander_Volkov_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Montrezl_Harrell"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Miguel_Ruiz_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vladimir_Radmanovi\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Justin_Stommes"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Christian_Drejer"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alex_Kirk"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Stanley_Johnson_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jesse_Arnelle"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dragan_Tarla\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ron_Johnson_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Swede_Halbrook"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Qyntel_Woods"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jonathan_Dubas"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nicolas_de_Jong"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vitalis_Chikoko"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ivan_Buva"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jeff_Turner"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nikola_lukic"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alexander_Lokhmanchuk"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Marko_Simonovi\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jamal_Mashburn"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kedrick_Brown"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nikola_Dragovi\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lee_Jong-hyun_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ronalds_Za\u0137is"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Brad_Sellers"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jim_Palmer_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Raven_Barber"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Matti_Nuutinen"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Keith_Askins"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Okaro_White"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Arvid_Kramer"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/M\u0101rti\u0146\u0161_Meiers"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mihajlo_Arsoski"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bonel_Balingit"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gavin_Schilling"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Darnell_Lazare"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nick_Collison"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Slavko_Kotnik"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Maurice_Lucas"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Marty_Byrnes"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/James_Southerland"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Du\u0161ko_Buni\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Martell_Webster"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Michael_McDonald_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dainius_Adomaitis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Zaid_Abbas"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dave_Sorenson"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lawrence_Funderburke"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Len_Bias"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Shareef_Abdur-Rahim"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Raymar_Morgan"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Luol_Deng"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ivan_Batur"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Laurence_Bowers"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gracin_Bakumanya"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lior_Eliyahu"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Reggie_Hanson"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Charles_Smith_(basketball,_born_1965)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Randolph_Mahaffey"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jason_Love_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Joe_Ingles"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/O\u011fuz_Sava\u015f"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tom_Riker"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Clifford_Ray"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mouhamed_Sene"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Miroslav_Todi\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alvin_Jones"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Aleksandar_Petrovi\u0107_(basketball,_born_1987)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Antti_Nikkil\u00e4"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vlad_Moldoveanu"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kostas_Ezomo"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fragiskos_Alvertis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Valeri_Tikhonenko"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jan_Jagla"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Slavko_Vrane\u0161"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Richard_Washington"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mate_Skelin"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Marcin_Gortat"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rade_Zagorac"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Thomas_Robinson_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Marshall_Brown_(basketball,_born_1985)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kiki_Vandeweghe"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Trajko_Rajkovi\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Maurice_Stokes"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/LeRon_Ellis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Henk_Norel"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Du\u0161an_Vuk\u010devi\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Anatoly_Kashirov"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jordan_Mickey"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Antanas_Kavaliauskas"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/St\u00e9phane_Ostrowski"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Darrell_Harris"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/John_Tofi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vukota_Pavi\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/A._J._Bramlett"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Braeden_Anderson"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Michael_Kidd-Gilchrist"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Horacio_Llamas"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Wes_Unseld"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Armen_Gilliam"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Valdas_Vasylius"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Herb_Scherer"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jim_Nolan_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chad_McKnight"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Martin_M\u00fc\u00fcrsepp"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Luka_Bogdanovi\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Petar_Popovi\u0107_(basketball,_born_1979)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Orlando_Phillips"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jack_Cooley"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Marcelinho_Machado"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jos\u00e9_\u00c1ngel_Antelo"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kaspars_B\u0113rzi\u0146\u0161"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Brendan_Haywood"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jason_Cain"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sean_Labanowski"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Abdul_Jeelani"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/DeAndre_Daniels"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Daniel_Mayr"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/John_Trapp_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/\u00c1ngel_Garc\u00eda_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Marquise_Simmons"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bill_Newton_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jerry_Harper"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nenad_\u010canak_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mychal_Thompson"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Greg_Kite"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kevin_Garnett"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Terrance_Roberson"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ivan_Ramljak"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kwame_Brown"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Zach_Randolph"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Brandon_Hunter"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Karl_Malone"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Justino_Victoriano"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sviatoslav_Mykhailiuk"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Roscoe_Smith"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Joakim_Kjellbom"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chris_Christoffersen"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Patrick_McCaw"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Larry_Demic"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Eren_Beyaz"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Andreas_Schreiber"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Eric_Buckner"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kelly_McCarty"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bob_Elliott_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pekka_Markkanen"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jawann_Oldham"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jamie_Vanderbeken"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Blake_Griffin"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Craig_Dykema"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Julius_Nwosu"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Simo_Atanackovi\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Reggie_Bullock"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rod_Knowles"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jordan_Williams_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Aleksandar_Andrejevi\u0107_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Neil_Johnston"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Brice_Vounang"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Festus_Ezeli"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sabahudin_Bilalovi\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Andreas_Pelekoudas"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lindsay_Taylor"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mihailo_Radunovi\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Yinka_Dare"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Germ\u00e1n_Gabriel"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Marko_Jari\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Toma\u017e_Bol\u010dina"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Michael_Smith_(basketball,_born_1972)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Assem_Marei"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kleggie_Hermsen"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alex_Poythress"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nikola_Radulovi\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nigel_Hayes"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Justin_Williams_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jerry_Newsom"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Erwin_Mueller"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Caldwell_Jones"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Walt_Bellamy"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/George_E._Johnson_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cedric_Ball"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dan_Werner"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Stephen_Hoare"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Stevan_Milo\u0161evi\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mark_Hendrickson__Mark_Hendrickson__1"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Travis_Wear"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Art_Long"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Paul_Silas"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Leonidas_Kaselakis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Arsalan_Kazemi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Levon_Kendall"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dave_Hoppen"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ege_Arar"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Greg_Ballard_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Razija_Mujanovi\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cozell_McQueen"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Djibril_Kante"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mickell_Gladness"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tom\u010do_Sokolov"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bruce_Bowen"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gerald_Wallace"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mikki_Moore"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vernon_Goodridge"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rony_Seikaly"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Boris_Bara\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mokhtar_Ghyaza"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Antonis_Fotsis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Richard_Rellford"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Olumide_Oyedeji"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kyle_Korver"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nate_Thurmond"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Zeb_Cope"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ben_Wallace"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jereme_Richmond"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jeff_Withey"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kendal_Pinder"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bill_Wennington"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Neal_Walk"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/J._J._O'Brien"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Guy_Pnini"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Albert_Miralles"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Terrell_Bell_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dylan_Page"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Brian_Beshara"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mehmet_Okur"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jim_McIlvaine"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ond\u0159ej_Balv\u00edn"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Wu_Tai-hao"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Reggie_Slater"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tai_Wesley"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Justas_Sinica"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ethan_Wragge"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lamont_Barnes"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Marcus_Relphorde"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dusty_Rychart"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Babacar_Camara"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Moritz_Wagner_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sonny_Dove"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Patrick_Eddie"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jason_Cipolla"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dejan_Koturovi\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Strahinja_Milo\u0161evi\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jad_Bitar"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Julian_Boyd_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Michael_Ruffin"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bob_Kauffman"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bernard_Toone"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Semyon_Antonov"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ruben_Boumtje-Boumtje"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Damjan_Rude\u017e"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Deron_Washington"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kami_Kabangu"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/David_Benoit_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/C._J._Kupec"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gatis_Jahovi\u010ds"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jim_Rowinski"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jaak_Lipso"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bennie_Swain"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Marcos_Mata"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Roy_Rogers_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Don_Reid_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Theron_Smith"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Shawn_James"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/John_Henson_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tracy_Murray"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Shane_Edwards_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Branislav_\u0110eki\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Venson_Hamilton"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Samaki_Walker"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ben_Coleman_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Richard_Petru\u0161ka"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Andrea_Crosariol"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Elmore_Morgenthaler"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/John_Paul_Erram"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Darius_Dimavi\u010dius"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ned\u017ead_Sinanovi\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Taylor_Coppenrath"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Matt_Steigenga"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cliff_Alexander"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jon_Jaques"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jimmy_Carruth"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Diamond_Stone"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jonathan_Kale"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Craig_Shelton"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Antonio_Granger"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nobel_Boungou_Colo"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alison_Bales"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Christian_Standhardinger"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Joe_Trapani"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Maurice_Sutton"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Yannick_Driesen"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kevin_Jones_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Justin_Knox"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Seth_Doliboa"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bryan_Davis_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Paul_Rees_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Milenko_Tepi\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Austin_Nichols_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/David_Robinson_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Thomas_Kottas"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jos\u00e9_Fabio"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Arman_Zangeneh"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Obinna_Ekezie"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sotirios_Manolopoulos"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cedric_Lewis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dean_Tolson"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Spencer_Dunkley"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dennis_Hamilton"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Micheal_Eric"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dikembe_Mutombo"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/T._J._Cummings"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Robert_Traylor"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dave_Robisch"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Filip_Kraljevi\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lawrence_Roberts_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Th\u00e9rence_Mayimba"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Angelo_Gigli"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dave_Scholz"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Shawn_Daniels"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Stavros_Toutziarakis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ray_Felix"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Keith_Tower"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dwayne_Jones_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Andrew_Nicholson_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Argiris_Papapetrou"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dick_Ricketts"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Livio_Jean-Charles"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Derrick_Brown_(basketball,_born_1987)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Patrick_Patterson_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lawrence_Boston"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Abdul_Shamsid-Deen"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sampson_Carter"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Andre_Drummond"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Deyonta_Davis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Luc_Longley"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Stojan_Gjuroski"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/K\u0161y\u0161tof_Lavrinovi\u010d"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jim_Neal"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sean_May"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Billy_Thompson_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Marlou_Aquino"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Marcus_Eriksson_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ali_Demi\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Derek_Cooke"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ben_Simmons"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Strahinja_Mi\u0107ovi\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rahshon_Turner"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nick_Young_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ivica_Jurkovi\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Luc_Mbah_a_Moute"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chris_Bosh"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sean_Rooks"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/B._B._Davis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kaleb_Tarczewski"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Brett_Vroman"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kerem_\u00d6zkan"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mitch_McGary"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Orlando_S\u00e1nchez_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Shaun_Livingston"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bruno_Boin"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Oct\u00e1vio_Magoli\u00e7o"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Byron_Mullens"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Randy_Duck"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fred_Gentry"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/J._R._Reid"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Laimonas_Kisielius"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Wojciech_Myrda"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dave_Gunther"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Julian_Vaughn"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rick_Fox"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bob_Ferry"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jimmie_Baker_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Aron_Baynes"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jack_Coleman_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/John_Fairchild"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Buck_Johnson"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tom\u00e1\u0161_Satoransk\u00fd"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lucas_Steijn"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Edgar_Jones_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ira_Terrell"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sam_Dekker"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Robin_Smeulders"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vladan_Vukosavljevi\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kawhi_Leonard"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bob_Spessard"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Shaun_Pruitt"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Michael_Stewart_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Art\u016bras_Masiulis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Claude_Gregory"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kris_Joseph"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Yasseen_Musa"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/John_Smith_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/\u017darko_\u010cabarkapa"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Zhou_Peng_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jeremiah_Massey"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Joel_Przybilla"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/John_%22Hot_Rod%22_Williams"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Matja\u017e_Smodi\u0161"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Joe_Burton_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Aleksandar_Raduki\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sam_Smith_(basketball,_born_1944)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tyler_Zeller"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Joel_Bolomboy"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bismack_Biyombo"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nathan_Peavy"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mario_Austin"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Viacheslav_Kravtsov"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jaleel_Cousins"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bob_Boozer"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Stromile_Swift"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Zoran_Jovanovi\u0107_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Paul_Zipser"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Damir_Latovi\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jim_Fritsche"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Juan_Mendez_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Garrick_Sherman"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jason_Kapono"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/John_Williams_(basketball,_born_1966)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Randal_Falker"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alpha_Kaba"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Carlos_Mat\u00edas_Sandes"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dwayne_Bacon"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hank_Finkel"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ken_Johnson_(basketball,_born_1978)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/George_Lynch_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hakeem_Olajuwon"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tauras_Jog\u0117la"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Happy_Hairston"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alex_Jensen"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/John_Shurna"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Anton_Kazarnovski"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Saulius_Kulvietis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Owen_Klassen"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Stefan_Wessels_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Brian_Davis_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sofoklis_Schortsanitis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kim_Hughes_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Phil_Hubbard"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lionel_Simmons"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Efthimios_Rentzias"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Marko_Teji\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Anthony_Vroblicky"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Delonte_Holland"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Joshua_Smith_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mark_Workman"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jurica_Golemac"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Damone_Brown"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Brad_Branson"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Darren_Phillip"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/LaRue_Martin"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Michael_Dunigan"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Brandon_Penn"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Anas_Osama_Mahmoud"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bojan_Tadi\u0107_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bas_Veenstra"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Andrew_DeClercq"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Diamantis_Slaftsakis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Winston_Shepard"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bob_Nash_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Slobodan_Mihajlovski"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tarvis_Williams"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Casey_Sanders"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Larry_Bergh"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Stefano_Rusconi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lonnie_Lynn"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Steve_Hawes"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/C._J._Giles"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Courtney_Sims"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Will_Perdue"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cliff_Robinson_(basketball,_born_1960)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kerry_Boagni"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/H\u00e9ctor_Romero"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Astan_Dabo"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Walter_Sharpe"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Isaiah_Philmore"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Scott_Morrison_(basketball_player)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lavoy_Allen"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ricky_Ledo"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ryan_Kelly_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jay_Murphy"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ron_Crevier"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ray_Scott_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tom_Owens"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jannik_Freese"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Darren_Morningstar"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Calvin_Booth"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Greg_Kelser"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kaloyan_Ivanov"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Stefan_Djordjevi\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mike_Lynn_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ruphin_Kayembe-Tshiabu"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ayman_Adais"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Liz_Cambage"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tim_Breaux"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sharif_Fajardo"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Zvonko_Buljan"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Coby_Dietrick"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Daichi_Taniguchi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jim_Eakins"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mark_Landsberger"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Khris_Middleton"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Georgi_Glouchkov"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Brett_Wheeler"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tom_Workman"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jerome_Beasley"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kenyon_Jones_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Greg_Howard_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Richard_Solomon_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Georgios_Papagiannis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Henry_Ellenson"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Larry_Staverman"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lucas_Nogueira"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dmitry_Korshakov"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pavel_Hou\u0161ka"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ryan_Bowen"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mamadou_Diarra"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tim_Burroughs"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Anthony_Tucker"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Edrice_Adebayo"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Matthew_Bryan-Amaning"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tornike_Shengelia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Luther_Rackley"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chris_Moss"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chris_Commons_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mike_Peplowski"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Daniel_Miller_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Keith_Lee"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Walt_Davis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Brandon_Bowman"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Anthony_Fernandez"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Guido_Gr\u00fcnheid"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Neil_Fingleton"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Al_Henry"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Travele_Jones"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Viktor_Sanikidze"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Simas_Jasaitis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ralph_Drollinger"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Felizardo_Ambr\u00f3sio"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Thijs_Vermeulen"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Richard_Freudenberg"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Talat_Alp_Altunbey"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Marc_Gasol"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/John_Dickson_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Junior_Etou"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kent_Benson"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Yassin_Idbihi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/An\u017eejs_Pase\u010d\u0146iks"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bill_Campion"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kurt_Nimphius"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kenton_Edelin"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Blerim_Mazreku"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jermaine_Bucknor"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ivan_\u017digeranovi\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Andr\u00e9_Roberson"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tony_Gaffney"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Brian_Skinner"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Adam_Chubb"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Caner_Erdeniz"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Brad_Miller_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Egehan_Arna"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/John_Brown_(basketball,_born_1992)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/TaShawn_Thomas"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ed_Manning"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Michael_Bauer_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ratko_Varda"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jim_Ligon"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Darius_Miles"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Antoine_Wright_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Walter_McCarty"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ioannis_Karathanasis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Steve_Mix"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ben_Poquette"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Brandon_Sebirumbi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Charlie_Paulk"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dwight_Powell"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Brandon_Ingram"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jeff_Green_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ruslan_Pateev"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sun_Yue_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chris_Wilcox"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Torgeir_Bryn"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Zlatko_Gocevski"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Maurice_Ndour"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Zhou_Qi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nikola_Joki\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pat_Durham"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Du\u0161an_Stankovi\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ante_Ma\u0161i\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Damen_Bell-Holter"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kermit_Washington"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tracey_Beatty"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bill_Garnett"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dave_Feitl"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Richard_Dumas"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jim_McDaniels"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ed_O'Bannon"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nikola_Markovi\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Linos_Chrysikopoulos"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alexandros_Varitimiadis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mike_Davis_(basketball,_born_1956)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Wang_Zhizhi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Reggie_Lewis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Aaron_Jones_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Luther_Wright"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nikola_Vu\u010durovi\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dwight_Jones_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/LaQuinton_Ross"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mike_Maloy"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Stipe_Modri\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Eugene_Spates"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Petar_Radoji\u010di\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kenny_Gattison"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Prodromos_Dreliozis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Travis_Taylor_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dontonio_Wingfield"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ron_Behagen"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Richard_Fr\u00f6hlich"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mike_Champion_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alvin_Scott"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rafi_Reavis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Serta\u00e7_\u015eanl\u0131"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Brian_Alexander_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Berni_Tamames"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kevin_S\u00e9raphin"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tyren_Johnson"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bob_Harris_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chucky_Brown"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Clive_Weeden"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Darko_Balaban"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kenny_Adeleke"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Johnny_Rogers"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/DeSagana_Diop"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Antonio_Lang"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nika_Metreveli"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Deron_Feldhaus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Karolis_Gu\u0161\u010dikas"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pierre_Jallow"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Audie_Norris"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Eric_Schraeder"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mark_Davis_(basketball,_born_1973)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dave_Lee_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Radisav_\u0106ur\u010di\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nathaniel_Clifton"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bob_Dykstra"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Heiko_Niidas"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Valdel\u00edcio_Joaquim"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Frank_Drmic"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bill_Cartwright"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jim_Springer"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/George_Ackles"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Scott_Burrell"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ioannis_Papapetrou"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jim_Lampley_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Aidin_Nikkhah_Bahrami"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Guy_Williams_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Walter_Palmer_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alex_Galindo"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Brad_Lohaus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Joosep_Toome"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Amida_Brimah"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Shawne_Williams"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/John_Amaechi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Reggie_Johnson_(basketball,_born_1989)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Robin_Benzing"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Davonn_Harp"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cornelius_Cash"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hameed_Kashif"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Wenyen_Gabriel"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Joe_Alexander"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Richie_Edwards_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/George_Trapp"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/James_Augustine"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Derrick_Caracter"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Daniel_Faris"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vernon_Macklin"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Marvin_Williams"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ben_Bentil"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Yancy_Gates"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mindaugas_\u017dukauskas"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Michael_Lee_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Devin_Green"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pau_Gasol"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nkem_Ojougboh"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dyron_Nix"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Shawn_Long"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tony_Koski"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cedric_Henderson_(basketball,_born_1965)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Warren_Carter_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Matt_Howard"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ron_Dunlap"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kostas_Vasileiadis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Justin_Hamilton_(basketball,_born_1990)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rudy_Hackett"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Austin_Dufault"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hank_Whitney"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Taylor_Griffin"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jim_Gregory_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Anthony_Pelle"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/\u00c1lex_Mumbr\u00fa"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Robert_Carter_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jasim_Mohamed"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chinanu_Onuaku"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ram\u00f3n_Clemente"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Aaron_Cel"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bevo_Francis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dennis_Mims"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sotiris_Katoufas"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Greg_Monroe"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alekos_Petroulas"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Andrija_\u017di\u017ei\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jeff_Dowdell"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/\u010cedomir_Vitkovac"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Art_Hillhouse"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Slim_Wintermute"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Amir_Johnson"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kleon_Penn"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dejan_Toma\u0161evi\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vince_Hunter"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nicolas_Batum"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Beau_Beech"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gino_Lanisse"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bryon_Russell"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Amjyot_Singh"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alex_Stivrins"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mel_Daniels"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vladimir_\u0160timac"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Guerschon_Yabusele"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Carl_Herrera"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nicol\u00f2_Melli"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Corey_Brewer"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Aerick_Sanders"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Diego_Osella"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Roshown_McLeod"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Scott_Roth"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Petros_Noeas"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mike_Morrison_(basketball,_born_1989)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Elton_Brown_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kevin_Willis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nikola_Pekovi\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/G\u00ebzim_Morina"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Derrick_Alston"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Garrett_Jackson"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Major_Wingate"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dan_Issel"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/James_Gist"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Randy_White_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Barry_Nelson_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Slobodan_Ago\u010d"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Clint_Capela"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pete_Williams_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Udonis_Haslem"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Maurice_Shaw"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vladimir_Boisa"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Stefan_Glogovac"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Juan_Palacios_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Marko_Radovanovi\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Max_van_Schaik"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nikola_Vu\u010devi\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Georges_Niang"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Petri_Heinonen"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nasos_Galakteros"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alexander_Belov"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jonathan_Kerner"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ersan_\u0130lyasova"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ricardo_Ratliffe"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Joe_Vogel"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cezary_Tryba\u0144ski"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mason_Plumlee"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Carmelo_Anthony"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bison_Dele"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Christian_Watford"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Derek_Strong"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Michael_Cobbins"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Willie_Anderson_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Greg_Oden"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ricky_Blanton"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Isaiah_Austin"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dragan_Zekovi\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sitapha_Savan\u00e9"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alexander_Zakharov_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Marcus_Goree"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Aleksa_Popovi\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Petr_Cornelie"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jordi_Trias"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jonah_Bolden"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Julian_Wright"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jim_Davis_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bora_Pa\u00e7un"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fr\u00e9jus_Zerbo"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nikola_\u010cvorovi\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bryant_Reeves"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ian_Hummer"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Willie_Reed"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kenny_Payne"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bill_Willoughby"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Geoff_Crompton"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vaidas_\u010cepukaitis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Steve_Green_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kenny_Green_(basketball,_born_1967)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Samuel_Ouedraogo"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Steven_Hunter"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rolands_Freimanis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bojan_Trajkovski"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fr\u00e9d\u00e9ric_Adjiwanou"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bus_Whitehead"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Loren_Meyer"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cameron_Moore_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Doug_Edwards"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rub\u00e9n_Wolkowyski"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Isaiah_Armwood"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kenyon_Martin"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cheikh_Mbodj"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hans_Brase"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jaka_Brodnik"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Aleksandar_Kalanj"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Michail_Misunov"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lari_Ketner"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Donald_Hodge_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Uwe_Blab"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kristijan_Milakovi\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Josh_Ritchart"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ronald_Dupree"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gary_McGhee"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sharone_Wright"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gary_Forbes"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Wayne_Molis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Wally_Borrevik"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Shawn_Marion"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jermaine_Blackburn"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nenad_Ziv\u010devi\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hilton_Armstrong"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lawrence_Bonus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rich_King_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Al_Carlson_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Yanick_Moreira"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jeff_Ruland"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Johnny_Taylor_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Garth_Joseph"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ronny_Turiaf"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sigurdur_Thorsteinsson"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Taj_Gibson"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gordon_Hayward"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dragan_Doj\u010din"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/DeVon_Hardin"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kaniel_Dickens"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ivan_McFarlin"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cameron_Bairstow"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Stefan_Popovski-Turanjanin"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jarell_Martin"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Aleksandar_Yanev"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Thierry_Rupert"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Marc_Jackson"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nikola_Ili\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ike_Nwankwo"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Stefan_Jankovi\u0107_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Shawn_Jones_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Art\u016bras_Valeika"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bob_Burrow"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Arnie_Risen"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Al_Jefferson"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nuno_Mar\u00e7al"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/James_Mays"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vlantimir_Giankovits"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Steve_Panos"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Brandon_Costner"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tom_Boerwinkle"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sidney_Wicks"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gyno_Pomare"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Caron_Butler"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Damian_Kulig"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Darrius_Garrett"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Eric_Mobley"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Andrejs_\u0160e\u013cakovs"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Antoine_Rigaudeau"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Desmond_Penigar"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alessandro_Frosini"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ike_Diogu"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cadillac_Anderson"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chris_Singleton_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sean_Denison"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Andrew_Vlahov"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/David_Blu"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pavel_Korobkov"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sean_Banks"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Brian_Martin_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Justin_Sears"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bryant_Dunston"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/George_Zidek"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Don_Rehfeldt"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/De'Mon_Brooks"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gil_Mossinson"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Scott_Meents"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Marko_Brki\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Derrick_Nix"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ira_Harge"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dennis_Horner"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Peter_Cornell"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tony_Parker_(basketball,_born_1993)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ronnie_Grandison"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Samardo_Samuels"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Carl_Landry"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Leo_Rautins"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/D._J._White"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jeronne_Maymon"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Samuel_Dalembert"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Eddie_Miller_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Andrew_Smith_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chris_Richard_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nikita_Shabalkin"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/David_Butler_(basketball,_born_1966)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Branko_Jorovi\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Moala_Tautuaa"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Channing_Frye"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Felton_Spencer"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rosco_Allen"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Magnum_Rolle"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/James_Ray_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gregor_Fu\u010dka"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pete_Darcey"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mirza_Begi\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tai_Wynyard"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bob_McAdoo"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Panagiotis_Vasilopoulos"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Garrett_Stutz"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ricardo_Guill\u00e9n"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Stevan_Na\u0111feji"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Luka_Babi\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Andrae_Patterson"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pops_Mensah-Bonsu"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Josh_Davis_(basketball,_born_1980)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Saulius_Kuzminskas"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Marko_\u0160pica"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rabeh_Al-Hussaini"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vangelis_Margaritis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gordan_Giri\u010dek"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Milan_Milo\u0161evi\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Larry_Sanders_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Paul_Miller_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Shawnelle_Scott"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ido_Kozikaro"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pavel_Antipov"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jacob_Blankenship_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jamie_Watson_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Matt_Bonner"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Randolph_Keys"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Haluk_Y\u0131ld\u0131r\u0131m"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Frank_Hassell"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tom_Black_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Devin_Booker_(basketball,_born_1991)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gary_Trent"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Maurice_Taylor"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fr\u00e9d\u00e9ric_Weis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ashton_Pankey"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chad_Gallagher"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mike_Jackson_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Miralem_Halilovi\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kenrick_Zondervan"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jawad_Williams"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Steve_Hamer"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Art\u016bras_Karni\u0161ovas"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alfa_Diallo"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rich_Yonakor"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mark_Randall_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ioannis_Bourousis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Velimir_Radinovi\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Attarius_Norwood"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Aaron_Anderson_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mark_McNamara"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Aleksandar_Na\u0111feji"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Solomon_Hill_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Malcolm_Mackey"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Edo_Muri\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bernard_King"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kosuke_Takeuchi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Paul_Cooper_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Christian_Laettner"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Michale_Kyser"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tony_Woods_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Robert_Riki\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Steve_Wachalski"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Albert_Burditt"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jimmy_Baxter_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tom_Hammonds"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tony_Meier"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jerry_Beck_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Otto_Porter"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Marvin_Webster"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Marko_Tu\u0161ek"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ron_Anderson_(basketball,_born_1958)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Todd_Fuller"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Marijonas_Petravi\u010dius"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Joseph_Jones_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Stacey_Augmon"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dave_Magley__Dave_Magley__1"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hamady_N'Diaye"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jerai_Grant"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/I\u00f1aki_de_Miguel"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jaylen_Brown"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Andrey_Desyatnikov"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/L\u00e9onardo_Meindl"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Carlos_Rogers_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fran_V\u00e1zquez"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Berend_Weijs"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Zydrunas_Ilgauskas"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Serge_Ibaka"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rodions_Kurucs"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Doug_Roth"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/William_Coleman_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Curtis_Perry"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/John_Lambert_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Michael_Ansley"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jay_Vincent"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ed_Macauley"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Don_Meineke"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Deji_Akindele"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mario_Dela\u0161"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Paul\u00e3o_Prestes"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Will_McDonald"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vanja_Plisni\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mehdi_Cheriet"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Skal_Labissi\u00e8re"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chick_Halbert"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Paul_Griffin_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vangelis_Sklavos"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Michael_Fraser_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Miha_Zupan"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Yakhouba_Diawara"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Marcus_Lee"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Clemon_Johnson"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/James_Hardy_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bill_Henry_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kenny_Carr"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nedim_Y\u00fccel"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Josh_Howard"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jim_Ware_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mark_West_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Keaton_Nankivil"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Leon_Smith_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chris_Jent"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Darvin_Ham"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kenneth_Faried"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kim_Anderson_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Virginijus_Pra\u0161kevi\u010dius"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ivan_Rabb"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lamayn_Wilson"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bob_Hopkins"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lew_Hitch"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Adam_Keefe_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jesse_Branson"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Orlando_Lightfoot"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Swen_Nater"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ante_Grgurevi\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Matt_Stainbrook"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Michalis_Kakiouzis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Adam_Kemp"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Toni_Bizaca"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mindaugas_Timinskas"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rico_Harris"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Miguel_Miranda_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jalen_Rose"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pat_Cummings"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Goran_Grbovi\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ha_Seung-jin"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sam_Thompson_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Terrance_Ferguson"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Akil_Mitchell"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Craig_Smith_(basketball,_born_1983)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lamar_Green"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Matt_Aitch"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Glenn_Robinson_III"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jan_Mart\u00edn"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vladimir_Zujovi\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/\u00c9dgar_Vicedo"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Samuel_Haanp\u00e4\u00e4"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kendall_Gray"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Granville_Waiters"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Steve_Downing"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Robert_Gilchrist_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dime_Tasovski"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bill_Russell"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sam_Timmins"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kris_Lang"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Miljan_Pupovi\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cedric_Simmons"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sim_Bhullar"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Carmelo_Antrone_Lee"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dimitrios_Marmarinos"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lazaros_Papadopoulos"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mart\u00edn_Buesa"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Henry_Wilson_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lionel_Billingy"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ryan_Broekhoff"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cameron_Clark_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Eric_McWilliams"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Efe_Aydan"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Joonas_J\u00e4rvel\u00e4inen"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Melvin_Turpin"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kenny_Frease"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Melvin_Ejim"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jackie_Moreland"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jusuf_Nurki\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Will_Felder"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ville_Kaunisto"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Len_Elmore"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Byron_Jones_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Romeo_Travis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/\u00d6mer_\u00dcnver"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Charles_Rhodes"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nils_Mittmann"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Andy_Ogide"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mindaugas_Kup\u0161as"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jovica_Kecman"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Peter_van_Paassen"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Darnell_Hillman"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Milutin_Aleksi\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tim_Blue"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Carl_Kilpatrick"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Trevor_Ariza"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vern_Mikkelsen"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mike_New"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rich_Peek"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fred_Hetzel"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ali_Haidar_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dante_Cunningham"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dimitrios_Mavroeidis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Davor_Lamesic"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kosta_Koufos"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nemanja_Dangubi\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Micah_Blunt"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Boban_Jankovi\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Serhiy_Lishchuk"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/James_Michael_McAdoo"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/John_Brownlee_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Russell_Cross"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Denis_Agre"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Maurice_Harkless"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Michalis_Perrakis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Marcus_Mann_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Younes_Idrissi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jamal_Olasewere"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Josh_Huestis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pete_Cross"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Manute_Bol"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Patrick_Femerling"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Spencer_Haywood"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Marc_Fern\u00e1ndez"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/O._D._Anosike"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jazwyn_Cowan"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Andrianos_Perdikaris"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Larry_Kenon"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Donnell_Harvey"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Anthony_P\u00e9rez_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ekpe_Udoh"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fernando_Raposo"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sam_Bowie"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nate_Bowman"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nnanna_Egwu"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jakob_P\u00f6ltl"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Doug_Sims"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Luka_Kraljevi\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rickey_Brown"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fab_Melo"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ryan_Pettinella"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Justise_Winslow"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dave_Bustion"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Emre_Bayav"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Javon_McCrea"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ioannis_Athanasoulas"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vladimir_Tica"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ermal_Kuqo"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Marreese_Speights"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Christian_Mar\u00e5ker"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Milo\u0161_\u0160akota"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jon_Horford"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gene_Williams_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bojan_Dubljevi\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/James_Johnson_(basketball,_born_1987)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Marcus_Lewis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Blake_Schilb"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Paul_Lindemann"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gus_Gerard"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Andre_Moore"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Grigorij_Khizhnyak"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Calvin_Garrett"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Quincy_Pondexter"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Eddy_Curry"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kenneth_Lyons"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mark_Alarie"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jordan_Hill_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ryan_Rossiter"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pierre-Antoine_Gillet"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Walter_Dukes"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bob_Bedell"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/George_Wilson_(basketball,_born_1942)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mark_Bradtke"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Darko_Mili\u010di\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vojkan_Krgovi\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/K\u0119stutis_\u0160e\u0161tokas"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kevinn_Pinkney"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kevin_Roberson_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Andr\u00e9s_Nocioni"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mason_Rocca"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lamont_Mack"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/DeAndre_Thomas"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ralph_Biggs"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bill_Spivey"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nemanja_Todorovi\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jim_Zoet"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/James_Jones_(basketball_player)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Robert_Parish"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Amara_Sy"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fred_Roberts"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Eric_Moreland"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Slavko_Stefanovi\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tyler_Griffey"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dmitry_Flis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Luther_Green"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Reggie_Evans"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sam_Hoskin"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Arvydas_Sabonis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lifetu_Selengue"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dont\u00e9_Greene"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Giorgos_Kolokithas"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Connie_Dierking"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vuka\u0161in_Mandi\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Len_Kosmalski"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bob_Love"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pathman_Matialakan"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Travis_Outlaw"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alexander_Johnson"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mirza_Teletovi\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Yuta_Watanabe"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jerald_Honeycutt"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gjorgji_Talevski"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mo_Ke"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dick_Cunningham"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Micha\u0142_Gabi\u0144ski"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ronnie_Brewer"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jerry_Baskerville"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mike_Wilkinson"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ragnar_Nathanaelsson"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rick_Mahorn"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sun_Mingming"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kevin_Tumba"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kevin_Duckworth"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bobby_Simmons"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alex_Groza"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/\u00d3scar_Yebra"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Josip_Lovri\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Conner_Henry"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/David_Doblas"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jack_Sikma"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Junior_Burrough"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kimmo_Muurinen"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Brent_Wright"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kristaps_Porzi\u0146\u0123is"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ousmane_Barro"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Garfield_Smith"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Maksym_Korniyenko"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ond\u0159ej_Starosta"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jason_Jennings_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tomas_Masiulis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Skip_Thoren"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alexander_K\u00fchl"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Caleb_Swanigan"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Anthony_Tolliver"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jordan_Vandenberg"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Uro\u0161_Nikoli\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Amit_Tamir"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lucio_Angulo"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Milenko_Veljkovi\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Devin_Gray"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Makhtar_N'Diaye_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Milt_Schoon"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bill_Robinzine"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nick_Weatherspoon"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ejike_Ugboaja"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jerome_Meyinsse"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dorian_Finney-Smith"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Denzel_Bowles"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Xavier_McDaniel"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kervin_Bristol"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gene_Wiley"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Antawn_Jamison"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Will_Sheridan"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lewis_Brown_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kevon_Looney"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Oriol_Paul\u00ed"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Charlie_Sitton"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dirk_Nowitzki"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Malik_Rose"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jaber_Rouzbahani"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Demetrius_Alexander"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Latavious_Williams"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lee_Shaffer"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Al_Horford"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Charles_Garc\u00eda"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Stephen_Lumpkins"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jon_Kreft"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Trey_Lyles"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Michael_Doleac"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Deng_Adel"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rod_Benson"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Daniel_Hamilton_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Julius_Erving"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tom_Scheffler"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Loy_Vaught"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bill_Allen_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Matt_Kingsley_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Amir_Sedighi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Georgios_Diamantakos"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Marcus_Vinicius_de_Souza"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Youssoupha_Fall"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Wendell_Alexis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Wayne_Chism"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Asko_Paade"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sam_Lacey"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nacho_Y\u00e1\u00f1ez"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dwight_Howard"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vlatko_\u010can\u010dar"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Patric_Young"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Artem_Klimenko"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chris_Porter_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dave_Meyers_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Scooter_McCray"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Viktor_Pankrashkin"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Joonas_Vaino"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Boubacar_Coly"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Petar_Raki\u0107evi\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Matt_Costello"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Juan_Antonio_Orenga"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Herbert_Hill_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chris_Wright_(basketball,_born_1988)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Raymond_Almazan"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/DeMar_DeRozan"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lee_Johnson_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Eric_Anderson_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kevin_Knox_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Louis_Labeyrie"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alton_Ford"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Arinze_Onuaku"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lovro_Mazalin"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tyler_Smith_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Zelmo_Beaty"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Todor_Ge\u010devski"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Joel_Freeland"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mohamed_Kon\u00e9_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Leon_Powe"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Thomas_Welsh_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Joe_Arlauckas"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dejan_Kravi\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Andrea_Bargnani"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tom_Heinsohn"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Justin_Jackson_(basketball,_born_1990)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Francisco_Elson"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tim_Duncan"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lamont_Hamilton"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tim_Abromaitis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Guy_Morgan_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Walter_Berry_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Buila_Katiavala"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Maceo_Baston"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Srdjan_Stankovi\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Leo_Mainoldi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bill_Walton"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Andronikos_Gizogiannis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Noah_Vonleh"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/LaRon_Dendy"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/\u017dygimantas_Jonu\u0161as"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jaleel_Roberts"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/J._J._Avila"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Yekaterina_Lisina"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Christos_Tsekos_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lee_Knorek"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Luc-Arthur_Vebobe"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jason_Washburn"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jamar_Abrams"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Anthony_Frederick"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mike_Farmer"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fernando_Romay"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rafael_Addison"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Antonio_Meeking"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Du\u0161ko_Savanovi\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fri\u00f0rik_Erlendur_Stef\u00e1nsson"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ransford_Brempong"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Manolis_Koukoulas"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sava_Le\u0161i\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Paulius_Jank\u016bnas"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Brandon_Brown_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Georgios_Dedas"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Marvin_Williams_(basketball,_born_1993)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Noble_Jorgensen"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Meyers_Leonard"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Brian_Quinnett"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Joey_Dorsey"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chris_Taft"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/DeWitt_Menyard"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Reginald_Becton"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/\u0110uro_Ostoji\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ashante_Johnson"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rafael_Hettsheimeir"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Butch_Booker"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mike_Hrabak"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kevin_Freeman_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jonathan_Bender"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Steve_Ross_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Edin_Bav\u010di\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Wilbur_Kirkland"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/John_Beasley_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Xu_Yong_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dean_Garrett"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Victor_Khryapa"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bob_Armstrong_(basketball,_born_1933)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jeremy_Evans"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tomas_Urbonas"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cole_Aldrich"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Johnathan_Williams"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Eduardo_Hern\u00e1ndez-Sonseca"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Damian_Hollis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Du\u0161an_Risti\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dennis_Rodman"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Adam_Koch"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Christos_Saloustros"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Uvis_Helmanis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Steven_Hill_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Joe_Ruklick"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chase_Budinger"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Greg_Foster_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ron_Sanford"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tasos_Antonakis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Robin_Lopez"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Andrey_Zubkov"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Beka_Burjanadze"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jordan_Railey"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Isaac_Austin"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Casey_Shaw"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Malick_Badiane"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Li_Muhao"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gilvydas_Biruta"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Olden_Polynice"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Simas_Buterlevi\u010dius"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tyrone_Hill"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Valdas_Dabkus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fahro_Alihodzic"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gary_Keller"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Paul_Millsap"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Omari_Gudul"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jeff_Nordgaard"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rich_Yunkus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/\u017darko_Paspalj"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jeff_Brown_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Zane_Tamane"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alton_Lister"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Brian_Cusworth"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bill_Martin_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/David_West_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Reggie_Keely"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cole_Dickerson"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Richaun_Holmes"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ted_Kitchel"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Frank_Kaminsky"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Connie_Simmons"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Terry_Dischinger"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Eric_Leckner"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Taylor_Braun"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Joe_Fortenberry"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sean_Higgins_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Joe_Graboski"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Terence_Dials"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dorie_Murrey"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sa\u0161a_Vukas"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cevher_\u00d6zer"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chris_Booker_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dave_Thomas_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mindaugas_Katelynas"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Georgios_Tsiaras"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Marko_Mladjan"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Will_Hanley"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Malik_Sealy"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Elton_Brand"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kirk_Williams,_Jr."}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jeff_Ferguson_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Igor_Bijeli\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Esteban_Batista"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nikola_Pavlovi\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Abdel_Kader_Sylla"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/David_Laury"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ajou_Deng"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/James_Ennis_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nikola_Male\u0161evi\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Marcus_Williams_(basketball,_born_1986)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mike_Smith_(basketball,_born_1976)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Wilbert_Frazier"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Stew_Johnson"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hamed_Sohrabnejad"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Anthony_Avent"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bradley_Buckman"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Quincy_Treffers"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Greg_Ostertag"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Woody_Sauldsberry"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/James_Crawford_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/George_Evans_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Buck_Williams"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Asi_Taulava"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Margus_Metstak"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ed_Rains"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Deniz_K\u0131l\u0131\u00e7l\u0131"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Luis_Scola"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gilbert_Lao"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kevin_Martin_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mousa_Nabipour"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Randell_Jackson"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Toby_Knight"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Caio_Torres"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Landry_Fields"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Niels_Giffey"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kevin_Bleeker"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ioannis_Kouzeloglou"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Norm_Cook"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ed_Peterson"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Art\u016bras_Jomantas"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tommy_Burleson"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jim_Barnes_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Billy_Paultz"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lonnie_Kluttz"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jay_Bilas"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tiago_Splitter"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lloyd_Sharrar"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jonathan_Holmes_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dario_\u0160ari\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tim_Kamczyc"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Zaid_Al-Khas"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sam_Perkins"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Forrest_McKenzie"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Seth_Tuttle"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bob_Riley_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ike_Azotam"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Thomas_Koenis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Justin_Howard"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Zisis_Sarikopoulos"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Derek_Wilson_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Antonio_Harvey"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Edmond_Azemi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Martynas_Sajus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nick_Welch"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Stanislav_Tymofeyenko"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tadija_Dragi\u0107evi\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Colton_Iverson"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Noah_Dahlman"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Barry_Yates"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Teoman_Alibegovi\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ousmane_Cisse"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Damian_Jones_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Al_Harrington"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ike_Borsavage"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ron_Haigler"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Semih_Erden"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dani_D\u00edez"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bailey_Howell"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cavell_Johnson"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Reinar_Hallik"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jared_Dudley"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Earl_Cureton"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Abdel_Bouckar"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rodney_Blake_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kyle_Singler"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ivano_Newbill"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alaa_Abdelnaby"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hamed_Haddadi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Matt_Haryasz"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Charles_Pittman_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tom_Barker_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bob_Pelkington"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ding_Yanyuhang"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Milija_Mikovi\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Logan_Vander_Velden"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Reggie_Moore"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/John_Coker_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Novica_Veli\u010dkovi\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Laurynas_Birutis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mike_Tobey"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mark_Acres"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bill_Dinwiddie"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/John_Olive"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vladimir_Ger\u00f3nimo"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bobby_Portis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dimitri_Kongbo"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Devin_Davis_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/\u017deljko_Rebra\u010da"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dave_Gambee"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Eric_Crookshank"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ken_Bannister"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/George_L._Johnson"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mark_Strickland"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Otis_Howard"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bla\u017e_Mahkovic"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Elden_Campbell"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nick_Vanos"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jure_Ritlop"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mihovil_Naki\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hern\u00e1n_Montenegro"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Predrag_Danilovi\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Adam_Hess"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Carlton_Aaron"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Marcel_Aarts"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Joji_Takeuchi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Brandon_Davies"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Killian_Larson"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Trevor_Wilson_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Erik_Meek"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bob_Woollard"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Serge_Zwikker"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kristo_Mangelsoo"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nikola_Jankovi\u0107_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Josh_A._Moore"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Soumaila_Samake"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mike_Ratliff"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pavel_Podkolzin"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Joe_Binion"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Milo\u0161_Borisov"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Erdin\u00e7_Balto"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kennedy_Meeks"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tom_Copa"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/T._L._Latson"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dan_Gadzuric"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cl\u00e1udio_Fonseca"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rashard_Griffith"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nemanja_Jelesijevi\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/J\u0101nis_Timma"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Benjie_Paras"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dan_Anderson_(basketball,_born_1943)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nemanja_Bjelica"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Johnny_Jones_(basketball,_born_1943)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Darius_Miller"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vince_Kelley"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Andrei_Fetisov"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ken_Norman"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ferran_Mart\u00ednez"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bekir_Yarang\u00fcme"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Clyde_Mayes"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tom_LaGarde"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dejan_Ivanov"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jim_Moran_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nick_Fazekas"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Adam_Parada"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Reggie_Smith_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/J._R._Koch"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Niels_Vorenhout"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Clark_Kellogg"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Paul_Shirley"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Erik_Murphy"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Carleton_Scott"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Danny_Ferry"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Josh_Harrellson"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Joakim_Noah"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nemanja_Djuri\u0161i\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Steve_Malovic"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jay_Carty"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chase_Fieler"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pavel_Ermolinskij"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Erazem_Lorbek"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Morris_Peterson"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ricky_S\u00e1nchez"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vassilis_Symtsak"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/M\u0101ris_Gulbis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Michael_Finley"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alex_Len"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tomislav_Ru\u017ei\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dexter_Pittman"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/William_Bedford_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bo\u0161ko_Jovovi\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/DeMarre_Carroll"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ioannis_Georgallis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Marlon_Maxey"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ian_Mahinmi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Thomas_Jordan_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dimitrios_Charitopoulos"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nate_Fox"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ahmad_Nivins"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tim_Ohlbrecht"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Raitis_Grafs"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Damon_Williams"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jamil_Wilson"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/\u0130zzet_T\u00fcrky\u0131lmaz"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Scott_Padgett"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tyler_Wilkerson"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Oriol_Junyent"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chris_McCullough"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Steve_Smith_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Curtis_Sumpter"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Paul_Afeaki_Khoury"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Aurimas_Kie\u017ea"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jason_Lawson"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dan_McClintock"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ashraf_Rabie"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dino_Muri\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Randy_Denton"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Te\u00f3filo_Cruz"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Walt_Wesley"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Joe_Meriweather"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Robert_Sampson_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Paul_Sturgess_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Marcus_Kennedy"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Brandon_Wallace"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jermaine_O'Neal"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Geert_Hammink"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/James_Donaldson_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jahlil_Okafor"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Solomon_Alabi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Carlos_Boozer"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Wilson_Chandler"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rudy_Macklin"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Zach_Andrews"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Herv\u00e9_Lamizana"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sam_Mack"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Elton_McGriff"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sa\u0161a_Brati\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Evan_Eschmeyer"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Emir_Preld\u017ei\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bobby_Jones_(basketball,_born_1951)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tanoka_Beard"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dick_O'Neal"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ljubomir_Mladenovski"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Victor_Keyru"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Josh_Duinker"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Philipp_Schwethelm"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Anthony_Brown_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Marty_Conlon"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ayberk_Olmaz"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dimos_Dikoudis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Reggie_Hannah"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Christos_Petrodimopoulos"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Joe_Smith_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Charles_Oakley"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Robert_Curtis_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Miguel_Marriaga"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vladimir_Vuksanovi\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Maik_Zirbes"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Justin_Moss"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Glenn_Robinson"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Christophe_Beghin"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bob_Myers"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dwight_Davis_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vashil_Fernandez"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Michal_\u010cekovsk\u00fd"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Darren_Tillis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Anthony_Davis_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Harper_Williams"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bal\u0161a_Radunovi\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Renardo_Sidney"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Damian_Johnson_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mike_Novak"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vassilis_Kavvadas"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Scott_Hastings_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ater_Majok"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Raphiael_Putney"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Shawn_Glover"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Marvin_Barnes"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Steve_Lingenfelter"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Marcel_Jones_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Thon_Maker"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Endrit_Hysenagolli"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Derrick_Gervin"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Stuart_Gray_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jorge_Bryan_D\u00edaz"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Luis_Montero"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ken_Durrett"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Anderson_Varej\u00e3o"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Joe_Courtney_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gary_Turner_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tyler_Stone_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Marko_Maravi\u010d"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Boniface_N'Dong"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ken_Barlow_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Granger_Hall_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Aaron_McGhee"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mike_Phillips_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Darryl_Middleton"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mike_Vreeswyk"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lars_Hansen_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Marv_Roberts"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/John_Thomas_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kevin_Owens_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jonathan_Aka"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/\u017dygimantas_Sku\u010das"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Patrick_Ewing_Jr."}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bo\u017eo_\u0110umi\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Magi_Sison"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cedric_Maxwell"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Julius_Jucikas"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jerome_Kersey"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Eric_Campbell_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tim_Young_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Terry_Catledge"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Derrick_Byars"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Robert_Whaley"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ekene_Ibekwe"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Steve_Hayes_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dino_Meneghin"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Joel_Kramer"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Josh_McRoberts"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Aaron_James_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Aaric_Murray"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Greg_Stokes"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Doug_Thomas"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Toni_Dijan"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vic_Bartolome"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tito_Horford"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/JaJuan_Johnson"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nikos_Angelopoulos"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Milan_Gurovi\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chris_Washburn"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Marquese_Chriss"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kelvin_Cato"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Al-Farouq_Aminu"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lucas_Dias"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kevin_Durant"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jack_Parr_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Brett_Roberts"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Marko_Vranjkovi\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jamal_Robinson"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/George_Mikan"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Juvonte_Reddic"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Adrian_Branch"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Joonas_Cav\u00e9n"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kristjan_Kangur"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Akin_Akingbala"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jean-Jacques_Concei\u00e7\u00e3o"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Florent_Pi\u00e9trus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kaspars_Kambala"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ron_Charles_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Raef_LaFrentz"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mario_Abboud"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Derrick_Williams_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Justin_Reed"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nick_Oudendag"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bo\u0161tjan_Nachbar"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Henning_Harnisch"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Duncan_Reid"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ben_Davis_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Giannis_Giannoulis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tom_Abernethy"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Walter_Herrmann"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Karim_Shabazz"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/\u017darko_Rako\u010devi\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pat_Burke"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Al_Sanders_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lorenzo_Charles"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Steve_Kuberski"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sidney_Green_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Simonas_Kymantas"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jim_Boatwright"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Matej_Mami\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Milenko_Topi\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kostas_Kaimakoglou"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/James_Worthy"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tom_Bowens"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sly_Williams"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Toni_Kuko\u010d"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cliff_Pondexter"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jeremy_Tyler"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Red_Morrison"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jim_Creighton_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Greg_Dreiling"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nikolin_Arra"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Noel_Felix"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Demetrius_Treadwell"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sam_Muldrow"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/A._J._Hammons"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rein_van_der_Kamp"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jerome_Whitehead"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/DeShawn_Sims"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Patrick_O'Bryant"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Eddie_Mast"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Andro_Knego"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kevin_Salvadori"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nikolay_Varbanov"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Daniel_Fitzgerald_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nenad_Krsti\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Viktor_Zubkov_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Donald_Cole_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rakeem_Christmas"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Du\u0161an_Hauptman"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Charles_Jones_(basketball,_born_1962)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dijon_Thompson"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Deon_Thomas"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bruce_Flowers"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/LeRoy_Hurd"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mike_Gibson_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jan_van_Breda_Kolff"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Todd_MacCulloch"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Clayton_Shields"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mike_Moser"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Evric_Gray"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Steve_Patterson_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Greg_Whittington"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Moussa_Diagne"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Quinton_Hosley"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Anton_Odabasi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Olivinha"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Roger_Fornas"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/John_Salley"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Herlander_Coimbra"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Aramis_Nagli\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Larry_Bird"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jahidi_White"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fernando_Mart\u00edn_Espina"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jay_Washington"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ante_Tomi\u0107_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Satnam_Singh_Bhamara"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Miguel_Kiala"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/James_Posey"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Paul_Davis_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cedric_Ceballos"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ronnie_Burrell"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tim_Kempton"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Moustapha_Fall"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Olek_Czy\u017c"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dimitrios_Agravanis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Giorgi_Sharabidze"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jimmy_Butler_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Terrence_Woodyard"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sam_Pellom"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sergiy_Gorbenko"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Robert_Sacre"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tristan_Thompson"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sean_Williams_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mohamed_Hdidane"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jermareo_Davidson"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ian_Vougioukas"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ivan_Smiljani\u0107_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Brian_Qvale"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Charis_Giannopoulos"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Daniel_Theis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Zaza_Pachulia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mark_Bryant_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jake_Cohen"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Omari_Johnson"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Su_Wei_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Don_Otten"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Khalid_Boukichou"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Wang_Zhelin"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rodney_Bartholomew"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Zeke_Zawoluk"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Wil_Jones"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Andris_Biedri\u0146\u0161"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ali_Jamal_Zaghab"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gerald_Beverly"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Troy_Rosario"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nenad_\u0160ulovi\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mike_Smrek"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Les_Hunter"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Elijah_Obade"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Wesley_Witherspoon"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/McCoy_McLemore"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Darius_Defoe"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dan_Sparks_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Adem_\u00d6ren"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jamal_Maaytah"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Patrick_Hilliman"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ali_Traor\u00e9"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Howard_Porter_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ario_Costa"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sasha_Vuja\u010di\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vince_Hanson"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bruno_Caboclo"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alade_Aminu"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gene_Conley__1"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nik_Slavica"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Milko_Bjelica"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Skeeter_Henry"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jake_Tsakalidis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Du\u0161an_Bocevski"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Howard_Wood"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Glen_Davis_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Youssou_Ndoye"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tony_Kaseta"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Djery_Baptiste"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alex_Chubrevich"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hank_Gathers"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Donny_Marshall"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ricky_Volcy"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Walker_Banks"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/John_Stroeder"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tony_Campbell"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Voise_Winters"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rodrigo_de_la_Fuente"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Matt_Geiger"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tautvydas_\u0160le\u017eas"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ademola_Okulaja"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lucious_Jackson"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Andrius_Jurk\u016bnas"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dennis_Grey"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Koko_Archibong"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ansley_Truitt"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Matt_Harpring"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rich_Adams"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Curtis_Berry"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jim_Marsh_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Peter_Verhoeven"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Derek_Hood_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Stefano_Mancinelli"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Leonardo_Guti\u00e9rrez"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Earl_Barron"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Matej_Kru\u0161i\u010d"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Josh_Owens"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Corky_Calhoun"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Carey_Scurry"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Henrik_R\u00f6dl"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dallas_Comegys"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Derrick_Favors"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mengke_Bateer"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/David_Chiotti"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Matthew_White_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/JaVale_McGee"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ivica_Blagojevi\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Luka_\u017dori\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Leon_Williams_(basketball,_born_1986)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Orlando_Mel\u00e9ndez"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ben_Pepper"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Toon_van_Helfteren"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kenny_Walker"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Craig_Dill"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Shawn_Kemp"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bor\u010de_Domlevski"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jure_Lali\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Julian_Washburn"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mel_McCants"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Toarlyn_Fitzpatrick"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Samigue_Eman"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Walter_Pitchford"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hedo_T\u00fcrko\u011flu"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ronnie_Aguilar"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jaime_Lloreda"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kara_Wolters"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Duje_Dukan"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Eddie_Phillips_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Robert_Rothbart"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ronnie_Shavlik"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Quincy_Acy"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Doug_McDermott"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tyler_Newton"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Duane_Johnson_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Andy_Panko"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Keon_Clark"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Othello_Hunter"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cheick_Diallo"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Robert_Joseph_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rafael_Vecina"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vladimir_Golubovi\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nacho_D\u00edez"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tien_Lei"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rui_Hachimura"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Steve_Johnson_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Luigi_Datome"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tom_Sherlock"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Michael_Holper"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mitchell_Young"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chris_Street"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mladen_Panti\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Torin_Francis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Luke_Bonner"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Reggie_Johnson_(basketball,_born_1957)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/John_Shasky"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/James_Webb_III"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kenneth_van_Kempen"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tommy_Smith_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/DeMarcus_Cousins"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jeff_Cohen_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jay_Guidinger"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nenad_Mi\u0161anovi\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jim_Krebs"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jarron_Collins"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jan_Vesel\u00fd"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Emircan_Ko\u015fut"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jamel_McLean"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dimitrios_Papanikolaou"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jos\u00e9_Vargas_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nemanja_Aleksandrov"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Elvis_\u00c9vora"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dave_Johnson_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/John_Turner_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Othella_Harrington"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tiny_Gallon"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jason_Maxiell"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Matt_Barnes"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ben_Eaves_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Winston_Crite"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ollie_Johnson_(basketball,_born_1942)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jamie_Arnold_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mickey_Davis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/V\u00edtor_Faverani"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jordan_Bachynski"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mychel_Thompson"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jim_Caldwell_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Wilt_Chamberlain"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Brian_Oliver_(basketball,_born_1990)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dragan_Tubak"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Duane_Causwell"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Spencer_Hawes"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jarvis_Varnado"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Garry_Witts"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Andrea_Conti_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Artis_Gilmore"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bob_Allen_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Felipe_Reyes"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Karim_Ouattara"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Huck_Hartman"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Art\u016bras_Javtokas"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lorenzo_Coleman"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sa\u0161a_Zagorac"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Anthony_Miller_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Du\u0161an_Kne\u017eevi\u0107_(basketball_player,_born_1980)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Phil_Jackson"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kurt_Looby"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sini\u0161a_Avramovski"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Justin_Doellman"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Davor_Pej\u010dinovi\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Zoran_Erceg"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Roy_Hibbert"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gustavo_Ay\u00f3n"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Roy_Ebron"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ra\u0161ko_Kati\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kre\u0161imir_\u0106osi\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Drago_Pa\u0161ali\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Brandon_Bass"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Christopher_McNaughton"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Joffrey_Lauvergne"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dejan_Kova\u010devi\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Joe_Kleine"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dorell_Wright"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nikola_Jovanovi\u0107_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Renaldo_Woolridge"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kevin_Young_(basketball,_born_1990)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ray_Turner_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Samender_Juginisov"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ricky_Davis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Isaac_Holstein"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Louis_Rowe"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Will_Daniels"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/John_Thompson_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Theo_Ratliff"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Melvin_Ely"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Oscar_Schmidt"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Greg_Slaughter"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Anthony_Stover"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Zorana_Todorovi\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mile_Ili\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Richie_Adams"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Reid_Gettys"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/D\u0101vis_Bert\u0101ns"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Paul_Grant_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bob_Lavoy"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Keith_Wright_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sharrod_Ford"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Shaun_Stonerook"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dana_Jones"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Thomas_Bryant_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Russ_Hunt"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vlad_Negoitescu"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Luke_Jackson_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Manuel_Narvaez"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Scott_McGregor_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jeff_Cook_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mansour_Kasse"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Leonard_Gray"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bruce_Seals"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gerald_Robinson_(basketball,_born_1984)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hayk_Gyokchyan"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/D._J._Covington"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gary_Ware"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Isaac_Butts"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lance_Williams_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bojan_Radulovi\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Enes_Kanter"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Billy_Owens"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rom\u00e1n_Mart\u00ednez_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ivan_Harris"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Petar_Skansi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jakim_Donaldson"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Michael_Bradley_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Warren_Kidd"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Henry_Turner_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cedric_Henderson_(basketball,_born_1975)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/\u00c1d\u00e1m_Hanga"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rod_Odom"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Adrian_Caldwell"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jennifer_Hamson"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bernard_James"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Carlos_Jim\u00e9nez"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Suleiman_Braimoh"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Boris_Diaw"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/John_Garris"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ivan_Todorovi\u0107_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Wayne_Tinkle"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nemanja_Jaramaz"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Taylor_King"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mladen_\u0160ekularac"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sergei_Karaulov"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gerti_Shima"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Octavius_Ellis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dale_Schlueter"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tony_Battie"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jeroen_van_der_List"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Todd_Jadlow"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tony_Dawson"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Larry_Spriggs"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tanhum_Cohen-Mintz"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Brittney_Griner"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tim_Parham"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/George_Banks_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Greg_Mangano"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Marko_Paji\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Georgios_Tsalmpouris"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jarnell_Stokes"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Milan_Milkov"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Howard_Wright"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jerrod_Mustaf"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bennett_Davison"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jim_Fox_(basketball,_born_1943)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Clifford_Luyk"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alex_English"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bill_Curley"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Richard_Moguena"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Saulius_\u0160tombergas"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Terry_Thomas_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mark_Payne_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tibor_Plei\u00df"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dolph_Schayes"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Birgir_Bj\u00f6rn_P\u00e9tursson"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Reggie_Williams_(basketball,_born_1964)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/\u00c7elis_Taflaj"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ivars_Timermanis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Orbie_Bowling"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Michailas_Anisimovas"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Michael_Batiste"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Scott_May"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Stevan_Jelovac"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gary_Leonard"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Marko_Todorovi\u0107_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Daniel_Clark_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Isaac_Fotu"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sean_Elliott"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tellis_Frank"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kostas_Tsartsaris"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Arnold_Van_Opstal"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bari\u0161a_Krasi\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Donatas_Motiej\u016bnas"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ervin_Sotto"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jared_Reiner"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Randy_Holcomb"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tseng_Wen-ting"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Justin_Greene"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rafael_de_Souza_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Marcus_Cousin"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ryan_Anderson_(basketball,_born_1992)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/\u017danis_Peiners"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Charlie_Tyra"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Harding_Nana"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chevon_Troutman"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Victor_Alexander"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Radhouane_Slimane"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dragan_Bender"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Connie_Hawkins"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Antwain_Smith"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Petey_Cipriano"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mark_Blount"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Marin_Rozi\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Marco_Cusin"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tom_Tolbert"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Artsiom_Parakhouski"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kit_Mueller"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Scott_Lloyd"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bojan_Suboti\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Brandon_Ashley"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Roberto_Acu\u00f1a_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Petar_Arsi\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mindaugas_Kuzminskas"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Phil_Hankinson"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ronaldas_Rutkauskas"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Michael_Scott_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jarrod_Uthoff"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/DeMarco_Johnson"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jordan_Morgan"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dwayne_Morton"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Przemek_Karnowski"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rajko_\u017di\u017ei\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Taurean_Prince"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Charles_Jones_(basketball,_born_1957)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bill_Thieben"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/\u00d6mer_A\u015f\u0131k"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lamond_Murray"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jamario_Moon"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chuck_Darling"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jamie_Feick"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Stephen_Jackson"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ron_Horn"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Joel_Anthony"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ji\u0159\u00ed_Z\u00eddek_Sr."}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Spyros_Magkounis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gene_Banks"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tadas_Sedekerskis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ralph_Sampson_III"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Seamus_Boxley"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ashraf_Amaya"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ilian_Evtimov"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bud_Olsen"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/St\u00e9phane_Lasme"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Larry_Micheaux"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chris_Silva"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jared_Jeffries"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/J._R._Sakuragi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Giorgos_Sigalas"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jim_Smith_(basketball,_born_1958)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Danny_Schayes"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Troy_Williams"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rastko_Cvetkovi\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sotirios_Gioulekas"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jason_Caffey"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bojan_Krstevski"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bob_Bigelow"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Adam_W\u00f3jcik"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Donatas_Zavackas"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Erik_Daniels"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Terry_Rand"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/J._P._Batista"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Johndre_Jefferson"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fred_Saunders"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Harvey_Grant"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rick_Roberson"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Josh_Smith"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Elmer_Behnke"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Paul_Mokeski"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Richard_Anderson_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Darryl_Watkins"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Petey_Sessoms"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bob_Brown_(NBL)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jackie_Carmichael"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Da'Sean_Butler"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kahiem_Seawright"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pero_Anti\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Egidijus_Dim\u0161a"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Josh_Childress"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kevin_Noreen"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Moustafa_Elmekawi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tarmo_Kikerpill"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kevin_Pittsnogle"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Andray_Blatche"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Luke_Babbitt"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Luke_Walton"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tomislav_Zub\u010di\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Markos_Kolokas"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ali_Doraghi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mouhammad_Faye"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jim_Zeravich"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mohammad_Hadrab"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Darren_Fells__Darren_Fells__1"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Travis_Watson"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Shelton_Jones"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dejan_Davidovac"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jason_Ellis_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/\u017dan_Tabak"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gabriel_Deck"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sam_Sibert"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Stanley_Roberts"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Orlando_Woolridge"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Wayne_Englestad"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bruce_Bolden"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Joe_Johnson_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ozell_Jones"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Luk\u0161a_Andri\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/John_Stroud"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/George_Gervin"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dennis_Awtrey"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nemanja_Bezbradica"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vassilis_Charalampopoulos_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/DeAndre_Ayton"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Antoine_Carr"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kyle_Barone"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Garret_Siler"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Darrell_Williams_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bill_Uhl"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Aleksandar_Mitrovi\u0107_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dwayne_Schintzius"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tony_Dunkin"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/William_Njoku"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Matt_Fish"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/David_Padgett"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Juan_Antonio_San_Epifanio"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Markieff_Morris"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Goran_\u0106aki\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bumper_Tormohlen"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alfonso_Reyes_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ndudi_Ebi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mat\u00edas_Bortol\u00edn"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jimmy_Djimrabaye"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Yannick_Schoepen"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bob_Morse"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dra\u017een_Bubni\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Goran_Nikoli\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Adam_\u0141apeta"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jerome_Jordan"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kevin_van_Wijk"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chris_Anstey"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Demetris_Nichols"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Terrence_Jones"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ken_Austin_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Yaroslav_Korolev"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kevin_McHale_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/David_Pope_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Romero_Osby"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jerome_Williams_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Casey_Calvary"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Brice_Assie"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/LeRoy_Ellis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tom_Kozelko"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mario_Hezonja"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Johnny_Kerr"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Justin_Harper_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Campy_Russell"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Zou_Yuchen"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Trayvon_Lathan"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jim_Tucker_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tuukka_Kotti"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ricardo_Marsh"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Paul_Rogers_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Martin_Seiferth"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Craig_Raymond"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Roy_Samaha"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Richard_Howell_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Argiris_Kambouris"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dave_Corzine"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Andrea_Meneghin"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Elmore_Spencer"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Viljar_Veski"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jayson_Tatum"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/John_Johnson_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hasan_Rizvi\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Shayne_Whittington"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ervin_Johnson"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Idan_Zalmanson"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dave_Stallworth"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lonny_Baxter"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nikos_Papanikolaou"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rick_Rickert"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ante_\u0110ugum"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Clarence_Glover"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Valentin_Pastal"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chris_Walker_(basketball,_born_1994)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ihor_Zaytsev_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Matt_Bullard"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ryan_Gomes"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Don_Dee"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Zhai_Xiaochuan"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Shelden_Williams"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fedor_Dmitriev"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Charles_Davis_(basketball,_born_1958)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Harold_Jamison"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/LaPhonso_Ellis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Miroslav_Raduljica"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bill_Hanzlik"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Brian_Scalabrine"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Marko_Ke\u0161elj"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Georgios_Tsiakos"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Zaid_Abdul-Aziz"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Luca_Ivankovi\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Brian_Grant"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Miroslav_Pecarski"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mike_Jones_(basketball,_born_1967)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Reeves_Nelson"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gian_Chiu"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/James_Thomas_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Brian_Cook"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Marjan_Gjurov"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lee_Seung-jun_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Derrick_Obasohan"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Blair_Rasmussen"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Stephen_Zimmerman"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Reggie_Miller"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Du\u0161an_Jeli\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mitchell_Watt_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lance_Allred"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nicol\u00e1s_Brussino"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Evan_Fournier"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Harvey_Catchings"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jerry_Lucas"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bobby_Wilson_(basketball,_born_1944)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Klaudio_Ndoja"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Andr\u00e9s_Guibert"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Angelos_Siamandouras"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mekeli_Wesley"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jarvis_Hayes"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Priest_Lauderdale"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rick_Robey"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Victor_Muzadi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Conrad_McRae"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jesse_Young"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gary_Bradds"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Darrell_Arthur"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Xue_Yuyang"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sherman_White_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mike_Miller_(basketball_player)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Curtis_Kelly"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Willie_Cauley-Stein"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Larry_Owens"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kyle_Landry"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Petar_Joki\u0107_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/\u00c1lvaro_Teher\u00e1n"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Will_Clyburn"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chuck_Share"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Marjan_\u010cakarun"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jim_Ard"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kre\u0161imir_Lon\u010dar"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rouzbeh_Arghavan"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Eddie_Owens"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vladimir_Lu\u010di\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mike_Scott_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Trey_Britton"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Thabo_Sefolosha"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gani_Lawal"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Milan_Majstorovi\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Andrija_Stipanovi\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Karlo_\u017dganec"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rait_Keerles"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chris_Andersen"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Richard_Hendrix"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Moon_Tae-jong"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cristiano_Fel\u00edcio"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Joe_Buckhalter"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ivica_Zubac"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Guy-Marc_Michel"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cemal_Nalga"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Larry_Nance_Jr."}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/G\u00f6khan_\u015eirin"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Harry_Kelly_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rod_Grizzard"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Zhang_Zhaoxu"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rod_Higgins"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Eric_Fernsten"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mike_Harper_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Anna_Prins"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kris_Humphries"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Roosevelt_Bouie"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kim_Joo-sung_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Danilo_\u0160ibali\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Andreas_Glyniadakis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jean_Salumu"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Milo\u0161_Koprivica"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Antywane_Robinson"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ed_Horton"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Elishay_Kadir"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sherron_Mills"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Reggie_Royals"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nelson_Sardinha"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Prodromos_Nikolaidis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/David_Stiff_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Paul_Crosby"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Makrem_Ben_Romdhane"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Darrell_Allums"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Terrence_Ross"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tarik_Black"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Loukas_Mavrokefalidis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Peja_Stojakovi\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Radoslav_Ran\u010d\u00edk"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Reyshawn_Terry"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Shang_Ping"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Korleone_Young"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Michael_Graham_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lauri_Markkanen"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chuck_Nevitt"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chris_Jefferies"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jason_Keep"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Perry_Ellis_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dimitar_Angelov"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Marques_Johnson"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kim_Jong-kyu"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dave_Cowens"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jon_Brockman"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Adonal_Foyle"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kodi_Augustus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Benjamin_Eze"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bobby_Cattage"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Milan_Milovanovi\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hermenegildo_Mbunga"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nikos_Kalles"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Srdjan_Pejicic"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tod_Murphy"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jos\u00e9_Ortiz"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Caleb_Green_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Eddie_Johnson_(basketball,_born_1959)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/John_Edwards_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Derrek_Dickey"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Otto_Moore"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vladimir_Ivelja"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pape_Sow"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/C._J._Aiken"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Abdou_Badji"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dior_Lowhorn"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kenan_Bajramovi\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lance_Thomas"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Brent_Scott"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Eduardo_N\u00e1jera"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tunji_Awojobi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fatih_Solak"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Art_Becker"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kristian_Liem"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Maxime_De_Zeeuw"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lemone_Lampley"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bob_Ford_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Guy_Rucker"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Andrew_Wiggins"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kadeem_Jack"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Billy_Cunningham"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ovidijus_Galdikas"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/David_Greenwood"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jeff_Allen_(basketball,_born_1987)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/J\u0101nis_Kr\u016bmi\u0146\u0161"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Michael_Wiley_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Romel_Beck"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/David_Vaughn_III"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nick_Eppehimer"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ricardo_Glenn"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dalibor_Bagari\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Martin_Viiask"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ercan_Bayrak"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Walt_Williams"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Malcolm_Miller_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tacko_Fall"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Abdul-Malik_Abu"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/John_Gianelli"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lucho_Fern\u00e1ndez"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Milo\u0161_Komatina"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alex_Tyus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Danilo_Nikoli\u0107_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Andrew_Lang_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Milo\u0161_Pavlovi\u0107_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Giedrius_Staniulis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Henry_Sims"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Stacey_King"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/George_Peeples"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ryan_Anderson_(basketball,_born_1988)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tom_Piotrowski_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dino_Ra\u0111a"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Barney_Cable"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jonas_Valan\u010di\u016bnas"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Devin_Ebanks"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kyle_Visser"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Keith_Benson"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bill_Buntin"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Clyde_Drexler"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bryant_Smith"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Joe_Krabbenhoft"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Augustine_Rubit"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Isman_Thoyib"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ed_Daniel"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Simmie_Hill"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chuck_Vincent"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/John_Tresvant"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Marcus_Douthit"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Adam_Morrison"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/F\u00e9lix_Javier_P\u00e9rez"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Guilherme_Giovannoni"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Trevor_Mbakwe"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Daiji_Yamada"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Marcus_Landry"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Larry_McNeill"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/H\u00fcseyin_Alp"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Aleksandr_Kozlov_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rich_Niemann"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Milton_Jennings"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Erwin_Dudley"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Branko_Cvetkovi\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Stefan_Nasti\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vassilis_Niforas"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chuck_Aleksinas"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Robbie_Hummel"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Will_Hudson"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Marko_Lukovi\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cal_Bowdler"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Saleh_Foroutan"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Wayne_Cooper_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nate_Huffman"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ivan_Radenovi\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Marcus_Haislip"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mark_Eaton_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Phil_Jones_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Carl_Bailey"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Phil_Zevenbergen"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Metecan_Birsen"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Marino_\u0160arlija"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Damir_Krupalija"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Frederick_Pea"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Polat_Kocao\u011flu"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/John_Block_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rodney_Dent"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Michael_Brooks_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hubert_Radke"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tim_Thomas_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chris_Gatling"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Frank_Radovich"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Luca_Campani"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sa\u0161a_Stankovi\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Aleksandar_Marelja"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Stanley_Ocitti"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Willis_Reed"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/David_Lee_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kenny_Thomas_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Danilo_Ostoji\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Luke_Zeller"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tyler_Hansbrough"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Marko_Mili\u010d"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ansu_Sesay"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Natalia_Vieru"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sergi_Vidal"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chris_Hines"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Michael_Meeks_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/James_Edwards_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ahmad_Ibrahim_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Li_Xiaoxu"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mohd_Mohamed"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Eddie_Griffin_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Carl_Miller_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Velibor_Radovi\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Red_Rocha"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Loren_Woods"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Justin_Reynolds"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Shavon_Shields"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jackson_Vroman"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Norris_Coleman"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Matt_Wenstrom"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Devin_Williams"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Devean_George"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Henry_Akin"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dimitris_Papadopoulos_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Luke_Witte"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jonas_Jerebko"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lloyd_Neal"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Giannis_Antetokounmpo"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vallo_Allingu"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Miroslav_Rai\u010devi\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Radoslav_Pekovi\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Corey_Belser"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Scott_Drapeau"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mamoutou_Diarra"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ivan_Mi\u0161kovi\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Klay_Thompson"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Josh_Heytvelt"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nick_Paulos"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Zach_Auguste"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mindaugas_Ka\u010dinas"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kaya_Peker"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Djordje_Jovanovi\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alexis_Ajin\u00e7a"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Petr_Benda"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jerry_Reynolds_(basketball,_born_1962)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jeff_Ayres"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Filip_Kralevski"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Renaldo_Balkman"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vincent_Yarbrough"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bill_Edwards_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jarvis_Lang"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Panagiotis_Fasoulas__1"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rodney_McCray_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Simas_Galdikas"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/H\u00fcseyin_Be\u015fok"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/David_Andersen"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Joseph_Owona"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Thomas_van_der_Mars"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jonathan_Jeanne"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Marcus_Camby"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Willie_Burton"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nikita_Wilson"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dejan_Milojevi\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Terrance_Woodbury"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Egidijus_Mockevi\u010dius"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Shavlik_Randolph"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bojan_Bogdanovi\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Davon_Jefferson"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gregory_Echenique"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Juan_Pedro_Guti\u00e9rrez"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mitch_Kupchak"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vic_Rouse_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dillon_Brooks"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Craig_Brackins"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Eddie_Lee_Wilkins"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Omri_Casspi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Georgios_Georgakis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rory_White"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Igor_Tratnik"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Djibril_Thiam"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/David_Nash_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lorenzo_Williams_(basketball,_born_1969)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nate_Linhart"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Earl_Clark"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Myles_Turner_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/John_Wallace_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Willie_Norwood_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chris_Morris_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Imani_Boyette"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Georgios_Bartzokas"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/John_Brown_(basketball,_born_1951)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Julius_van_Sauers"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Archie_Dees"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Elvin_Hayes"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Corliss_Williamson"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Harry_Giles_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Austin_Daye"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Shane_Battier"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Greg_Smith_(basketball,_born_1991)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nestoras_Kommatos"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Milivoje_Bo\u017eovi\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dimitris_Despos"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Willard_Schmidt_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Giorgi_Shermadini"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Oliver_Miller"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bill_Laimbeer"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nikola_Bulatovi\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Darion_Atkins"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rashaun_Freeman"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Veljko_Mr\u0161i\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jes\u00fas_Fern\u00e1ndez_Hern\u00e1ndez"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Aleksandar_Vezenkov"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/K'zell_Wesson"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jabari_Parker"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Xavi_Rey"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cory_Hightower"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ryan_Hollins"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hansi_Gnad"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Andre_Riddick"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cherokee_Parks"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ed_Johnson_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Duncan_Robinson_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/N\u00e9stor_Colmenares"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/DeAndre_Jordan"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Danny_Vranes"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tamar_Slay"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Christien_Charles"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Artem_Pustovyi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kevin_Fletcher"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Donald_Washington_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dale_Ellis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jamelle_Hagins"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gene_Moore_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rob_Lock"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Marko_Djurkovi\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Achille_Polonara"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Todd_Mitchell"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Erek_Hansen"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Trevor_Harvey"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Giulio_Gazzotti"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mike_Mitchell_(basketball,_born_1967)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Juan_Hernang\u00f3mez"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/T._J._Warren"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Stelios_Ioannou"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Wallace_Bryant"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Brad_Robinson_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jayson_Williams"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rudy_Gobert"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Faisal_Aden"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jake_Layman"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/V\u00edctor_Claver"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Marquin_Chandler"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jim_Slaughter"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Anwar_Ferguson"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Brandon_Taylor_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Travis_Peterson"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Terry_Stotts"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Quincy_Davis_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/James_Garvin_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mac_Otten"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vladimir_Dragi\u010devi\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bambale_Osby"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jamaal_Magloire"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tayavek_Gallizzi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Domantas_Sabonis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Draymond_Green"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vasilije_Vu\u010deti\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sacha_Massot"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Edin_Ati\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mike_O'Koren"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nen\u00ea"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/David_Harrison_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Russell_Hinder"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tony_Bishop"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Slobodan_Bo\u017eovi\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Don_Anielak"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mel_Counts"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nick_Minnerath"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Derrick_Griffin"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jerami_Grant"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ian_O'Leary"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Luke_Sikma"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sam_Robinson_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Adrian_Moss_(basketball,_born_1981)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Martynas_Andriukaitis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Marcus_Slaughter"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tyson_Chandler"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Don_Bielke"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tyler_Tiedeman"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bobby_Speight"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Luke_Nevill"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ovie_Soko"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Marko_Tomas"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Brian_Cardinal"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alex_Murphy_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Javier_Justiz"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Adrien_Moerman"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Carlos_Cerutti"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dejan_Borovnjak"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jamar_Samuels"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Don_Martin_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Federico_Kammerichs"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ed_Nealy"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Walt_Piatkowski"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Anthony_Bennett_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jamal_Sampson"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alex_Stepheson"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Troy_Murphy"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nacho_Mart\u00edn"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Michael_Young_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Luka_Vuksanovi\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mamadou_N'Diaye_(basketball,_born_1993)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/C._J._Fair"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dexter_Cambridge"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Larry_Mikan"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vlade_Divac"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gaios_Skordilis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/George_Montgomery_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Randy_Allen_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ed_Elisma"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lee_Seung-hyun_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Philip_Zwiener"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Larry_Nance"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Scott_Fisher_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Radosav_Spasojevi\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/\u00c1kos_Keller"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jameel_Watkins"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Julius_Hodge"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kendrick_Perkins"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Wally_Szczerbiak"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hassan_Whiteside"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lorenzo_Mata"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tomas_Ress"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nick_Bradford"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vytautas_\u0160ulskis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Joe_Bryant"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jarell_Eddie"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/John_Pinone"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Joe_Devance"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ognjen_Kuzmi\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Andrius_\u0160le\u017eas"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Taj_Gray"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mike_Gminski"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Brent_Petway"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Earl_Williams_(basketball_player)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cady_Lalanne"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Abdoulaye_Loum"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sherell_Ford"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kevin_Thompson_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Steven_Adams"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Derrick_Coleman"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fisnik_Rugova"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Antonio_Davis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Terry_Mills_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Scott_Williams_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/M\u00e1rton_B\u00e1der"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jason_Smith_(basketball,_born_1986)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mark_Dean_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rom\u00e1n_Gonz\u00e1lez"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jonas_Ma\u010diulis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Greg_Butler"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alex_King_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Stamatis_Mpenas"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ji\u0159\u00ed_Welsch"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Brant_Weidner"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jim_McIntyre_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jeff_Foster_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Steve_Stipanovich"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jordan_Hamilton"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Marc-Eddy_Norelia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ethan_Happ"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Augustus_Gilchrist"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vilmantas_Dilys"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Martynas_Andriu\u0161kevi\u010dius"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kim_Tillie"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Zolt\u00e1n_Horv\u00e1th_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chad_Posthumus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Erick_Dampier"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bill_Gossett"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Shawn_Bradley"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Paul_Haynes_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Brian_Evans_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Greg_Brunner"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mike_Brown_(basketball,_born_1963)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Robert_Reid_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alex_Crisano"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Len_Chappell"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jack_Michael_Mart\u00ednez"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Joel_Embiid"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bar\u0131\u015f_Hersek"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Benjamin_Ortner"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cory_Jefferson"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Josh_Duncan"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Josip_Sobin"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Marko_Jagodi\u0107-Kurid\u017ea"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Brian_Zoubek"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Adreian_Payne"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Purvis_Short"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chief_Kickingstallionsims"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tom_Hoover"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Stanley_Robinson"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pape_Sy"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Al_Tucker"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Damien_Inglis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Katie_Feenstra-Mattera"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jared_Sullinger"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jorge_Garbajosa"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Aaron_Harper_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Antoine_Walker"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vasilije_Ba\u0107ovi\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Odell_Hodge"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Steve_Hood"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Andrei_Kirilenko"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ljubomir_Ristic"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Filip_Dylewicz"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Erkan_Veyselo\u011flu"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Frank_Brickowski"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Aaron_White_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mike_Hall_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Travis_Grant"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Monti_Davis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/E.J._Feihl"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dewayne_Dedmon"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Robert_Horry"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Benoit_Benjamin"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Miro_Bilan"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Wayne_Robinson_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Andrew_Sullivan_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/George_T._Johnson"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Monty_Williams"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Marko_Arapovi\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Joe_Wolf"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fedor_Likholitov"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Wade_Helliwell"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jelani_McCoy"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Eric_Dawson"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Glen_Rice"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chris_Johnson_(basketball,_born_1985)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Len_Matela"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tim_Perry"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mohamed_Abukar"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Trent_Plaisted"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ra\u0161id_Mahalba\u0161i\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Predrag_Drobnjak"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Drew_Naymick"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mihai_Silv\u0103\u0219an"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kendall_Rhine"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Arnett_Moultrie"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Roeland_Schaftenaar"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Angelo_Reyes_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Danny_Doyle_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/P._J._Brown"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chris_Webber"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Howie_Jolliff"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sasha_Kaun"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kristjan_Makke"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Luke_Harangody"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Stefan_Bir\u010devi\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Stephen_Arigbabu"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/JaKarr_Sampson"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jeff_Brooks_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tree_Rollins"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gerald_Paddio"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Larry_Abney"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jim_Bradley_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pere_Tom\u00e0s"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rasim_Ba\u015fak"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vladimir_Tkachenko"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Joe_Kopicki"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rodney_Williams_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/D._J._Mbenga"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dan_Roundfield"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fotios_Lampropoulos"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Manthos_Katsoulis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/DerMarr_Johnson"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Otis_Thorpe"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Milan_Ma\u010dvan"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Corie_Blount"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tommy_Woods_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nikola_Vuj\u010di\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jeff_Webster"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/William_Phillips_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chris_Kaman"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pablo_Aguilar_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mla\u0111an_\u0160ilobad"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Joe_Cooper_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pat_Garrity"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jonas_Pierre"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mouphtaou_Yarou"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mario_Kasun"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Manny_Leaks"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tremaine_Fowlkes"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Marijan_Kraljevi\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tomas_Van_Den_Spiegel"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Marshall_Plumlee"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/P\u00e9tur_Gu\u00f0mundsson_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dakari_Johnson"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Michael_Cage"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Charles_Davis_(basketball,_born_1984)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Szymon_Szewczyk"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kaspars_Cipruss"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Antonio_Latimer"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Walter_Jordan"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Grant_Long"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ian_McGinnis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Samer_Ozeir"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Penny_Hardaway"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lorenzo_Orr"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Will_Sheehey"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bob_Lanier_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Zoran_Savi\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Evgeni_Kisurin"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Zoran_Majki\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alan_Williams_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alfons_Alzamora"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Danilo_Barthel"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Leon_Rado\u0161evi\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bill_Mayfield"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Wally_Anderzunas"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tom_Boswell"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cody_Zeller"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tony_Massenburg"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Brian_Rowsom"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kenny_Gabriel"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Marcelo_Nicola"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rich_Manning"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jeff_Adrien"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/C._J._Webster"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Keith_Swagerty"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Yousef_Taha"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Herv\u00e9_Tour\u00e9"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/A._W._Davis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Martin_Jurtom"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nathan_Healy_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Antonio_Campbell"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gimel_Lewis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Larry_Smith_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Derrick_Chievous"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Etdrick_Bohannon"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vladimir_Micov"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Leron_Black"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jure_Bala\u017ei\u010d"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Terrence_Roberts_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kevin_Langford"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Andre_Hutson"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jeff_Foote"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cyril_Akpomedah"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ira_Newble"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ross_Bekkering"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/\u017deljko_\u0160aki\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Elvin_Ivory"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/C\u0103t\u0103lin_Burlacu"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/P\u00e9ter_L\u00f3r\u00e1nt"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Janar_Talts"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gediminas_\u017dalalis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Herbert_Crook"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ed_Mikan"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chris_Cooper_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Marjan_Janevski"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kennedy_McIntosh"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Amar'e_Stoudemire"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Franko_\u0160ango"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sergey_Karasev"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Marko_Ivanovi\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/\u00c1lex_Su\u00e1rez"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chuck_Jura"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Darius_Rice"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tyler_Honeycutt"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Antonios_Asimakopoulos"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Marvin_Phillips"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mareks_Mejeris"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Grant_Jerrett"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Brandon_Cole"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cedrick_Hordges"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mark_Sanchez_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/D\u017eanan_Musa"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Carl_Engstr\u00f6m"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Isaiah_Hartenstein"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alec_Brown"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kameron_Chatman"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kimani_Ffriend"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Carlos_Su\u00e1rez"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mustafa_El-Sayad"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kaido_Saks"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Martin_Ran\u010d\u00edk"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Margo_Dydek"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cyrus_Mann"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Darko_Zdravkovski"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Quincy_Miller"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Korn\u00e9l_D\u00e1vid"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/John_Shumate"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Terry_Tyler"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alan_Ogg"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Goran_Jagodnik"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ri\u010dmonds_Vilde"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Le'Bryan_Nash"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Adin_Vrabac"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ibrahima_Thomas"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Marcus_Webb"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/William_Mosley"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jumaine_Jones"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chris_Obekpa"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chris_McNealy"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bill_Jones_(basketball,_born_1966)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lukas_Brazdauskis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bobby_Jones_(basketball,_born_1984)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Miljan_Goljovi\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kevin_Coble"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/P\u0101vels_Veselovs"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Petras_Balocka"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Deshaun_Thomas"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ralph_Polson_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Anthony_Gill_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Joe_Ira_Clark"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Andrija_Simovi\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tom_Gugliotta"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/George_Sutor"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ben_Wilson_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Taymon_Domzalski"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Yao_Ming"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mohammed_Al-Marwani"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Devin_Thomas_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Robin_Lodders"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Steven_Hutchinson"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/T._J._Leaf"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jacob_Jaacks"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/JaMychal_Green"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Leroy_Wright"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mark_Crow"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Blagota_Sekuli\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Robin_Jones_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Daniel_Santiago"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ding_Jinhui"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Frazier_Johnson"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Salah_Mejri"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bob_McKeen"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Johnny_Newman"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alain_Koffi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bo_Ellis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Toomas_Raadik"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Maximilian_Kleber"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Holden_Greiner"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rob_Preston"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/B._H._Born"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Stuart_Robbins"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ralph_Crosthwaite"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Maksym_Pustozvonov"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chinemelu_Elonu"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Evaldas_Jocys"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/\u0110or\u0111e_Kaplanovi\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hlynur_B\u00e6ringsson"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kostas_Kakaroudis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/James_White_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kelly_Oubre_Jr."}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mike_Sojourner"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Du\u0161an_\u0160akota"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gary_Alexander_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chris_Engler"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Petr_Novick\u00fd"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Olu_Ashaolu"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Stratos_Perperoglou"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mohamed_Tangara"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Thanasis_Antetokounmpo"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Casey_Frank"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ilimane_Diop"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/DeWayne_Scales"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Donta_Smith"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alberto_Corbacho"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alessandro_Gentile"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cincy_Powell"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vladyslav_Kondratyev"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Terry_Driscoll"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Willy_Hernang\u00f3mez"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Harry_Boykoff"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Acie_Earl"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Greg_Wittman"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vincent_Kesteloot"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bruno_\u0160undov"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jason_Bennett_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dinos_Angelidis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/DaJuan_Coleman"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kristof_Ongenaet"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nikola_Cvetinovi\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nikita_Morgunov"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Marc_Salyers"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Brook_Lopez"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bill_Turner_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jeffery_Taylor"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Deividas_Gailius"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jerrelle_Benimon"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jerod_Ward"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mike_Davis_(basketball,_born_1988)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jason_Conrad"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Donald_Royal"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jack_Haley_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ed_Davis_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kurt_Thomas_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Goran_Jurak"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bill_Hosket_Jr."}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Calbert_Cheaney"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ernests_Kalve"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Devin_Searcy"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mauro_Liburdi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Igor_Penov"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Neil_Johnson_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tim_Bassett"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jameel_Warney"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jalen_Jones"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nikoloz_Tskitishvili"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Keanau_Post"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Anton_Shoutvin"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Benny_van_der_Reijden"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Marcus_Thornton_(basketball,_born_1992)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jerome_James"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Marcus_Liberty"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dirk_M\u00e4drich"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Uro\u0161_Petrovi\u0107_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Justin_Brownlee"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kyrylo_Natyazhko"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kyrylo_Fesenko"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lazaros_Agadakos"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mikal_Bridges"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Milo\u0161_Jankovi\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lazaro_Borrell"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alan_Henderson"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Yaniv_Green"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rudy_Gay"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Marek_Doronin"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Allan_Bristow"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Romain_Duport"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sandro_Nicevi\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chris_Welp"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Martin_Nessley"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tom_Hovasse"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tang_Hamilton"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mike_Mitchell_(basketball,_born_1956)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Juwan_Howard"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Shane_Lawal"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chris_Eversley"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Andrija_Boji\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cory_Remekun"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Leon_Douglas"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Thaddeus_Young"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Martin_Kohlmaier"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mouhammadou_Jaiteh"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jim_Grandholm"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Adam_Hrycaniuk"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/\u0110or\u0111e_Drenovac"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rob_Kurz"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/V\u00edctor_Arteaga"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Robert_Covington"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mohammad_Hassanzadeh"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tom_Liden"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Marko_Ramljak"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jovo_Stanojevi\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Liam_McMorrow"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tautvydas_Lydeka"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Devin_Durrant"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Austin_Croshere"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Denis_Marconato"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Robert_Werdann"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Andrea_Renzi_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Buster_Matheney"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Craig_Ehlo"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Owen_Wells_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Magic_Johnson"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Grady_Lewis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tom_Chambers_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sven_Schultze"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Derrick_Hamilton_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sam_Clancy_Jr."}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Reggie_Harding"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ray_Ellefson"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Deon_Thompson"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Andre_Smith_(basketball,_born_1985)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rashard_Lewis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rami_Ibrahim"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kebu_Stewart"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Eric_Boateng"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Guy_Muya"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Thurl_Bailey"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/\u0110or\u0111e_Majstorovi\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jeremy_Richardson"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Eric_White_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Avis_Wyatt"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gaston_Essengu\u00e9"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Deshawn_Stephens"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Damion_James"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Will_Thomas_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gerard_King"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Christian_Wood"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Doug_Smith_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pape_Mbaye"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Yoong_Jing_Kwaan"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ashley_Hamilton_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Eurelijus_\u017dukauskas"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Evgeny_Valiev"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mel_Bennett"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mirsad_T\u00fcrkcan"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Roy_Tarpley"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Marko_Bani\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Keith_Van_Horn"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Savvas_Manousos"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nathan_Ball_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bob_Thornton"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Philip_Butel"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Richard_Jefferson"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bill_McGill"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/\u017diga_Dimec"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Christian_Eyenga"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Marc_Egerson"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/John_Richter"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lee_Cummard"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alec_Kessler"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Matt_Gorman"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lou_Amundson"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cornell_Warner"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Amal_McCaskill"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Scott_Haskin"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kurt_Rambis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Victor_Rudd"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Majok_Deng"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Aaron_Gray"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Korel_Engin"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Delvon_Roe"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Andrew_Fields"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Charles_Ramsdell_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jake_Voskuhl"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jim_Bostic"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Antonis_Michaloglou"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Aleksandar_Radojevi\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jackie_Butler"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nazr_Mohammed"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Shaquille_O'Neal"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Zach_Collins"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rashad_Jones-Jennings"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/George_Patterson_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cleanthony_Early"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dan_Coleman_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sean_Lampley"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kostas_Charissis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cliff_Levingston"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chukwudiebere_Maduabum"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Phillip_Nolan_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bevo_Nordmann"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Roy_Hinson"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Steven_Smith_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vladislav_Dragojlovi\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Herb_Williams"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Oliver_Stevi\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ryan_Humphrey"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rasheed_Wallace"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Maciej_Lampe"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Luka_Mitrovi\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rick_Barry"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mateusz_Kostrzewski"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Eric_Piatkowski"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nikola_Prka\u010din"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sam_Dower"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kenny_Hall_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/J\u0101nis_B\u0113rzi\u0146\u0161_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hollis_Thompson"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bill_Hewitt_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Slava_Medvedenko"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ben_McDonald_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/John_Sinis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kerem_G\u00f6nl\u00fcm"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ivan_Marinkovi\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Glenn_Mosley_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Steve_Puidokas"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Faisal_Buressli"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Marcus_Fizer"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Danny_Fortson"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Du\u015fan_Cantekin"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Furkan_Korkmaz"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ricky_Berry"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/DaJuan_Summers"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ike_Ofoegbu"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Michael_Beasley"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Greg_Somogyi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bob_Miller_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Brad_Wright_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Darius_Paul"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chris_Hunter_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Andrew_Betts"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Les_Jepsen"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bruno_Coqueran"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Georgios_Apostolidis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Leonard_Taylor"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Itay_Segev"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Josh_Jackson_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Arnis_Vecvagars"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Will_Yeguete"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Haytham_Kamal_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Zoran_Krstanovi\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mike_Dunleavy_Jr."}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/LaSalle_Thompson"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/LeBron_James"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Michael_Paragyios"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/James_Singleton_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ram\u00f3n_Ramos"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Seif_Samir"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Carlos_Powell"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Elmedin_Kikanovi\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mike_Stewart_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Andrew_Kennedy_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alexandros_Sigkounas"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tim_Kempton_Jr."}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Wesley_Johnson_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Al_Thornton"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Valery_Likhodey"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kareem_Abdul-Jabbar"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Larry_Moffett"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bill_Amis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bob_Kurland"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mike_Muscala"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Toni_Simi\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mick_Pennisi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alec_Peters_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Oh_Se-keun"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rickie_Winslow"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Paul_Nolen"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Peter_John_Ramos"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ismael_Romero"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Joe_Pace"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Corny_Thompson"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/George_Bon_Salle"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Slobodan_Suboti\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ian_Hanavan"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/\u00d3scar_Garc\u00eda_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ali_Fakhreddine"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mark_Pope"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Russ_Schoene"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kieron_Achara"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Charles_Jackson_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mike_Brittain"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gerald_Green"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hasheem_Thabeet"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/DeJuan_Blair"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Eimantas_Bend\u017eius"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fanis_Christodoulou"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Brandon_Ubel"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Milojko_Vasili\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Abdulwahab_Al-Hamwi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Damir_Markota"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chris_Marcus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lee_Nailon"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vladimir_Da\u0161i\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Evan_Bradds"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Miles_Plumlee"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rich_Kelley"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jacob_Larsen_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jeff_Cross_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Petr_Boha\u010d\u00edk"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Reggie_Theus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hank_McDowell"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Isaiah_Morris"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ron_Anderson_(basketball,_born_1989)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Charles_Jordan_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ugonna_Onyekwe"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bruce_Kuczenski"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Idong_Ibok"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Etan_Thomas"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hub_Reed"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Maarty_Leunen"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mohammad_Shaher"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Keith_Owens"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Emir_Sulejmanovi\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ratko_Radovanovi\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mark_Telan"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Aleksandar_Pavlovi\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sergei_Monia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mart\u00edn_Leiva"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jim_O'Brien_(basketball,_born_1951)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dennis_Scott_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Edward_Santana"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Quincy_Lewis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dan_Langhi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alexander_Nelcha"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ousman_Krubally"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Antonio_McDyess"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dominique_Wilkins"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bo_Outlaw"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/James_Wilkes_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Larry_Foust"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chris_Copeland"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Andrew_Bynum"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Halil_Kanacevi\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rawle_Marshall"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ivan_Mara\u0161"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/David_Wood_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kevin_Laue"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Evan_Turner"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Elmore_Smith"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Anthony_Myles_(basketball,_born_1982)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Wally_Walker"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Scott_Thompson_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Giacomo_Galanda"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Richard_Melzer"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Landon_Milbourne"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sean_Marks"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Richard_Lugo"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jordan_Henriquez"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Axel_Hervelle"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Malik_Ausean_Evans"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sozhasingarayer_Robinson"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bob_Mattick"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bob_Christian_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Art\u016brs_B\u0113rzi\u0146\u0161"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Frank_Kornet"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Adnan_Hod\u017ei\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mark_Andaya"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rafael_Ara\u00fajo_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Boris_Savovi\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bob_Rule"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/June_Mar_Fajardo"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alvan_Adams"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Darren_Daye"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ronald_Kozlicki"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Matthew_Rogers_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chuck_Eidson"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bill_Bunting"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Samet_Geyik"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gary_Plummer_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Charles_Mammie"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Shawn_King_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hanno_M\u00f6tt\u00f6l\u00e4"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/H\u00e9ctor_Hern\u00e1ndez_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Martin_Cattalini"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kristjan_Kitsing"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gerald_Lee_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Major_Jones"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Wilson_Washington"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Yannick_Anzuluni"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Darius_Songaila"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nikola_Milutinov"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ryan_Perryman"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pape_Badiane"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Andy_Seigle"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Micha\u0142_Ignerski"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Al_Fleming_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ian_Sangalang"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Amile_Jefferson"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Burdette_Haldorson"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vladimir_Stepania"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Phil_Jordon"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/E._C._Coleman"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Scotty_Hopson"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fabricio_Vay"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dave_Batton"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Levy_Middlebrooks"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dave_Newmark"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kyle_Casey"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ben_Handlogten"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Danny_Manning"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cedi_Osman"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Milo\u0161_Babi\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mike_Green_(basketball,_born_1951)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Coleman_Collins"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Byron_Beck"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Robert_Dozier"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ryan_Spangler"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alfred_Aboya"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ed_Pinckney"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tony_Snell_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/J._P._Prince"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lorenzen_Wright"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rain_Raadik"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Egemen_G\u00fcven"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Uro\u0161_Vasiljevi\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Paul_Hogue"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Shawn_Taggart"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lonnie_Shelton"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lubo\u0161_Barto\u0148"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Patrik_Auda"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nedim_Buza"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Josh_Scott_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dionysis_Skoulidas"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/James_Bailey_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Horace_Grant"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Danilo_Gallinari"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kosta_Perovi\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Larry_Stewart_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pascal_Siakam"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Glenn_Feidanga"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Slavi\u0161a_Koprivica"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Omar_Samhan"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chuck_Person"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Michael_Schachtner"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Brad_Daugherty_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Linton_Johnson"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Scott_Wedman"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/James_Ratiff"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Aleksandar_\u010cubrilo"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Earl_Jones_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/George_Reese_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Robert_Swift"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gil_McGregor"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Malik_Allen"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Evers_Burns"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Khem_Birch"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Solomon_Jones_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Walter_Tavares"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Derrick_Jones_Jr."}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Guy_Parselany"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Maleye_N'Doye"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Don_MacLean_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chris_Mihm"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Travis_Reed"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Keith_McCord"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Patrick_Ewing"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dave_Butler_(basketball,_born_1964/1965)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ognjen_A\u0161krabi\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/D'or_Fischer"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ante_\u017di\u017ei\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Art\u016bras_Gudaitis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Craig_Osaikhwuwuomwan"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Travon_Bryant"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alexis_Wangmene"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Artem_Zabelin"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tracy_McGrady"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/PKP_class_SM04"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Metta_World_Peace"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Stojko_Vrankovi\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ryan_Reid"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/National_Basketball_Players_Association", "surface form": "basketball players"}], "relations": [{"URI": "http://dbpedia.org/ontology/show", "surface form": "show"}, {"URI": "http://dbpedia.org/ontology/seniority", "surface form": "higher"}, {"URI": "http://dbpedia.org/ontology/iso6392Code", "surface form": "2 meters"}]}, {"id": "35", "answertype": "date", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "When was the Statue of Liberty built?", "keywords": "Statue of Liberty, built"}], "query": {"sparql": "SELECT DISTINCT ?date WHERE { <http://dbpedia.org/resource/Statue_of_Liberty> <http://dbpedia.org/property/beginningDate> ?date }"}, "answers": [{"head": {"vars": ["date"]}, "results": {"bindings": [{"date": {"type": "literal", "value": "1886-10-28"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Statue_of_Liberty", "surface form": "Statue of Liberty"}], "relations": [{"URI": "http://dbpedia.org/ontology/numberBuilt", "surface form": "built"}]}, {"id": "36", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Which states border Illinois?", "keywords": "state, border, Illinois"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Illinois> <http://dbpedia.org/property/borderingstates> ?uri }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kentucky"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Missouri"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Wisconsin"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Indiana"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Iowa"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Illinois", "surface form": "Illinois"}], "relations": [{"URI": "http://dbpedia.org/ontology/border", "surface form": "border"}]}, {"id": "37", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Who developed Minecraft?", "keywords": "Minecraft, develop"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Minecraft> <http://dbpedia.org/ontology/developer> ?uri }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mojang"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Minecraft", "surface form": "Minecraft"}], "relations": [{"URI": "http://dbpedia.org/ontology/developer", "surface form": "developed"}]}, {"id": "38", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Where did Hillel Slovak die?", "keywords": "Hillel Slovak, death place"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Hillel_Slovak> <http://dbpedia.org/ontology/deathPlace> ?uri }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hollywood"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/California"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Los_Angeles"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Hillel_Slovak", "surface form": "Hillel Slovak"}], "relations": [{"URI": "http://dbpedia.org/ontology/deathDate", "surface form": "die"}]}, {"id": "39", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "What movies does Jesse Eisenberg play in?", "keywords": "movies, Jesse Eisenberg"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Film> ; <http://dbpedia.org/ontology/starring> <http://dbpedia.org/resource/Jesse_Eisenberg> }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Batman_v_Superman:_Dawn_of_Justice"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Double_(2013_film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Adventureland_(film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Squid_and_the_Whale"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/American_Ultra"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cursed_(2005_film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Caf\u00e9_Society_(film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Now_You_See_Me_(film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Free_Samples"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Now_You_See_Me_2"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Living_Wake"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Social_Network"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_End_of_the_Tour"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Camp_Hell"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/He's_Way_More_Famous_Than_You"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Hunting_Party_(2007_film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rio_(2011_film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Why_Stop_Now_(film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/To_Rome_with_Love_(film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/30_Minutes_or_Less"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Louder_Than_Bombs_(film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rio_2"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Education_of_Charlie_Banks"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Night_Moves_(2013_film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Solitary_Man_(film)"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Jesse_Eisenberg", "surface form": "Jesse Eisenberg"}], "relations": [{"URI": "http://dbpedia.org/ontology/film", "surface form": "movies"}, {"URI": "http://dbpedia.org/ontology/starring", "surface form": "play"}]}, {"id": "40", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Give all swimmers that were born in Moscow.", "keywords": "swimmer, born, Moscow"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Swimmer> ; <http://dbpedia.org/ontology/birthPlace> <http://dbpedia.org/resource/Moscow> }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Irena_Olevsky"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Yevgeny_Novikov"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nikolai_Pankin"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sergey_Lavrenov"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Igor_Grivennikov"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Artem_Lobuzov"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Svetlana_Chimrova"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vladimir_Shuvalov"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Valentina_Tutayeva"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Viktor_Mazanov"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Valentin_Kuzmin"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Semyon_Belits-Geiman"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Stanislava_Komarova"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Marina_Kosheveya"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Anastasia_Chaun"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vladimir_Minashkin"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gelena_Topilina"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Irina_Grazhdanova"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Anisya_Olkhova"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pyotr_Skripchenkov"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Viktor_Drobinsky"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Olesya_Vladykina"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Yevgeny_Korotyshkin"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Irina_Pozdnyakova"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Elena_Prokofyeva"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Aleksandr_Pletnev"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Irina_Abysova"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alexey_Zinovyev"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Danil_Haustov"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Svetlana_Romashina"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mikhail_Polischuk"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Maria_Shurochkina"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Aleksandr_Samsonov"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Anastasia_Davydova"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nina_Petrova"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alla_Shishkina"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Elena_Sokolova_(swimmer)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Andrey_Dunayev"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alla_Grebennikova"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Aleksandr_Paramonov"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Marina_Chepurkova"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alexandra_Patskevich"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Oleg_Fotin"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Yekaterina_Vinogradova"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rozaliya_Nasretdinova"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Anastasia_Diodorova"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Viktor_Sharygin"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Aleksandr_Fedorovsky"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Marina_Shamal"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Valentina_Poznyak"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vladimir_Kravchenko"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Viktor_Konoplyov_(swimmer)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mariya_Gromova"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Aleksey_Kudryavtsev"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vladislav_Kulikov"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Anton_Chupkov"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Andrey_Krylov_(swimmer_born_1984)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Elvira_Khasyanova"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Darina_Valitova"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nikolay_Suhorukov"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tamara_Sosnova"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Anastasia_Gloushkov"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Daniela_In\u00e1cio"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Maria_Gromova_(swimmer)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Olga_Sedakova_(synchronised_swimmer)"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Swimmers_(film)", "surface form": "swimmers"}, {"URI": "http://dbpedia.org/resource/Moscow", "surface form": "Moscow"}], "relations": [{"URI": "http://dbpedia.org/ontology/birthPlace", "surface form": "born"}]}, {"id": "41", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Give me all cosmonauts.", "keywords": "cosmonauts"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Astronaut> { ?uri <http://dbpedia.org/ontology/nationality> <http://dbpedia.org/resource/Russia> } UNION { ?uri <http://dbpedia.org/ontology/nationality> <http://dbpedia.org/resource/Soviet_Union> } }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Yury_Usachov"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lev_Dyomin"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Anatoly_Solovyev"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dmitri_Kondratyev"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Boris_Volynov"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ivan_Anikeyev"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Viktor_Patsayev"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sergei_Avdeyev"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Boris_Yegorov"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Roman_Romanenko"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sergei_Zalyotin"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Yury_Lonchakov"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gennady_Padalka"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vitaly_Zholobov"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Yuri_Baturin"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Anatoly_Artsebarsky"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Boris_Andreyev_(cosmonaut)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Grigori_Nelyubov"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Aleksei_Yeliseyev"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mikhail_Kornienko"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Yury_Onufriyenko"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sergey_Volkov_(cosmonaut)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pavel_Belyayev"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mikhail_Tyurin"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vasily_Lazarev"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Leonid_Kizim"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Valeri_Tokarev"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sergey_Nikolayevich_Ryzhikov"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nikolai_Budarin"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vyacheslav_Zudov"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Oleg_Atkov"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Anatoly_Filipchenko"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Yelena_Serova"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nikolai_Tikhonov_(cosmonaut)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vladimir_Dezhurov"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vladimir_Kovalyonok"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Yelena_Kondakova"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Evgeny_Tarelkin"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gherman_Titov"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Yury_Romanenko"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Aleksandr_Poleshchuk"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Aleksandr_Nikolayevich_Balandin"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Andrei_Borisenko"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Yury_Artyukhin"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Valery_Rozhdestvensky"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Valery_Korzun"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Yuri_Shargin"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Leonid_Popov"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vladimir_Komarov"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Andriyan_Nikolayev"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vladimir_Vasyutin"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Oleg_Artemyev"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Yuri_Gidzenko"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Aleksey_Ovchinin"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Aleksei_Gubarev"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Igor_Volk"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Valentin_Filatyev"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sergei_Treshchov"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nikolay_Rukavishnikov"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sergei_Revin"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pyotr_Klimuk"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Yevgeny_Khrunov"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Anatoly_Berezovoy"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sergey_Ryazansky"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Aleksandr_Skvortsov_(cosmonaut)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Aleksandr_Kaleri"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Anatoli_Ivanishin"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Aleksandr_Lazutkin"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Yury_Malyshev_(cosmonaut)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Viktor_Gorbatko"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Aleksandr_Samokutyayev"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Viktor_Afanasyev_(cosmonaut)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vladimir_Aksyonov"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Georgy_Dobrovolsky"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Aleksandr_Viktorenko"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Oleg_Kononenko"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Valery_Ryumin"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vladimir_Solovyov_(cosmonaut)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Anatoli_Levchenko"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mars_Rafikov"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Valeri_Kubasov"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Maksim_Surayev"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Anna_Kikina"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Boris_Morukov"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pavel_Vinogradov"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vasily_Tsibliyev"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vladimir_Shatalov"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Anton_Shkaplerov"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Viktor_Savinykh"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Valery_Bykovsky"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alexander_Misurkin"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Oleg_Kotov"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Yuri_Malenchenko"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Aleksandr_Ivanchenkov"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Aleksandr_Aleksandrovich_Volkov"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Konstantin_Valkov"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vladimir_Georgiyevich_Titov"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fyodor_Yurchikhin"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vladimir_Dzhanibekov"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gennadi_Sarafanov"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Valentina_Tereshkova"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Yury_Glazkov"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vladislav_Volkov"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gennadi_Manakov"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Valentin_Lebedev"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vitaly_Sevastyanov"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Georgy_Shonin"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Oleg_Grigoryevich_Makarov"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Oleg_Novitskiy"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sergei_Krikalev"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Aleksandr_Pavlovich_Aleksandrov"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Oleg_Skripochka"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Aleksandr_Laveykin"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Aleksandr_Serebrov"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Svetlana_Savitskaya"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Georgy_Grechko"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gennadi_Strekalov"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pavel_Popovich"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Cosmonauts_Alley", "surface form": "Cosmonauts"}], "relations": []}, {"id": "42", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Give me all Swiss non-profit organizations.", "keywords": "Swiss, non-profit organization"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/type> <http://dbpedia.org/resource/Nonprofit_organization> { ?uri <http://dbpedia.org/ontology/location> <http://dbpedia.org/resource/Switzerland> } UNION { ?uri <http://dbpedia.org/ontology/location> ?x . ?x <http://dbpedia.org/ontology/country> <http://dbpedia.org/resource/Switzerland> } }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Swiss_Medical_Students\u2019_Association"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Non\u2013profit_organizations_based_in_California", "surface form": "Swiss non-profit organizations"}], "relations": []}, {"id": "43", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Which presidents were born in 1945?", "keywords": "president, born, 1945"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/President> ; <http://dbpedia.org/ontology/birthDate> ?date FILTER regex(?date, \"^1945\") }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Abdirahman_Farole"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Azeem_Amrohvi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sheku_Badara_Bashiru_Dumbuya"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Joe_Robert_Pemagbi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Yuriy_Meshkov"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Moshe_Katsav"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Seyed_Ali_Asghar_Dastgheib"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ali_Fallahian"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Joe_Ghiz"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jorge_Serrano_El\u00edas"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Muhammad_Muhammad_Taib"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Akbar_Tandjung"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mom\u010dilo_Kraji\u0161nik"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/John_Fahey_(politician)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mohammad_Reza_Nematzadeh"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Radovan_Karad\u017ei\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/John_Olsen"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Morteza_Mohammadkhan"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vladislav_Ardzinba"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Faruk_S\u00fcren"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Charles_Margai"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bu-Buakei_Jabbi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lee_Jong-wook"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Zlatko_Tom\u010di\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Igor_Ivanov"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gholam-Ali_Haddad-Adel"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/1945", "surface form": "1945"}], "relations": [{"URI": "http://dbpedia.org/ontology/country", "surface form": "presidents"}, {"URI": "http://dbpedia.org/ontology/birthPlace", "surface form": "born"}]}, {"id": "44", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "What kind of music did Lou Reed play?", "keywords": "kind of music, Lou Reed, play"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Lou_Reed> <http://dbpedia.org/ontology/genre> ?uri }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Proto-punk"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Art_rock"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rock_music"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Glam_rock"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Experimental_music"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Lou_Reed", "surface form": "Lou Reed"}], "relations": [{"URI": "http://dbpedia.org/ontology/musicalBand", "surface form": "music"}, {"URI": "http://dbpedia.org/ontology/starring", "surface form": "play"}]}, {"id": "45", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Where do the Red Sox play?", "keywords": "where, Red Sox, play"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Boston_Red_Sox> <http://dbpedia.org/property/ballpark> ?uri }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fenway_Park"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Boston_Red_Sox", "surface form": "Red Sox"}], "relations": [{"URI": "http://dbpedia.org/ontology/team", "surface form": "play"}]}, {"id": "46", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Show a list of soccer clubs that play in the Bundesliga.", "keywords": "soccer clubs, play, Bundesliga"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/SoccerClub> ; <http://dbpedia.org/ontology/league> <http://dbpedia.org/resource/Bundesliga> }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Borussia_M\u00f6nchengladbach"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/SV_Darmstadt_98"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/FC_Augsburg"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bayer_04_Leverkusen"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/VfL_Wolfsburg"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/FC_Ingolstadt_04"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Eintracht_Frankfurt"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/SC_Freiburg"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hertha_BSC"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/1._FC_K\u00f6ln"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/SV_Werder_Bremen"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/1._FSV_Mainz_05"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/FC_Schalke_04"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/RB_Leipzig"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/TSG_1899_Hoffenheim"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/FC_Bayern_Munich"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Borussia_Dortmund"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hamburger_SV"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Bundesliga", "surface form": "Bundesliga"}], "relations": [{"URI": "http://dbpedia.org/ontology/show", "surface form": "show"}, {"URI": "http://dbpedia.org/ontology/clubsRecordGoalscorer", "surface form": "soccer clubs"}, {"URI": "http://dbpedia.org/ontology/team", "surface form": "play"}]}, {"id": "47", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Which volcanos in Japan erupted since 2000?", "keywords": "volcanos, Japan, erupted, since 2000"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Volcano> ; <http://dbpedia.org/ontology/locatedInArea> <http://dbpedia.org/resource/Japan> ; <http://dbpedia.org/ontology/eruptionYear> ?date FILTER ( year(?date) >= 2000 ) }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mount_Meakan"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mount_I\u014d_(I\u014djima)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mount_Tokachi_(Daisetsuzan)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Shinmoedake"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mount_Ontake"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hokkaido_Koma-ga-take"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mount_Usu"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Billings_Volcanos_(basketball)", "surface form": "volcanos"}, {"URI": "http://dbpedia.org/resource/Japan", "surface form": "Japan"}, {"URI": "http://dbpedia.org/resource/2000", "surface form": "2000"}], "relations": [{"URI": "http://dbpedia.org/property/erected", "surface form": "erupted"}]}, {"id": "48", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Which bridges cross the Seine?", "keywords": "bridges, cross, Seine"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Bridge> ; <http://dbpedia.org/ontology/crosses> <http://dbpedia.org/resource/Seine> }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pont_de_Normandie"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pont_Louis-Philippe"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pont_amont"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pont_de_Bir-Hakeim"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Passerelle_Debilly"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pont_Rouelle"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pont_de_Brotonne"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pont_de_l'Alma"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pont_Alexandre_III"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pont_Notre-Dame"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pont_National"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pont_de_la_Tournelle"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pont_Royal"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pont_aval"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pont_Neuf"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pont_des_Invalides"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pont_de_Tolbiac"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pont_d'I\u00e9na"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Viaduc_d'Austerlitz"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pont_de_Bercy"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pont_de_Neuilly"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pont_de_Grenelle"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pont_Charles-de-Gaulle"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Port_\u00e0_l'Anglais_Bridge"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pont_du_Carrousel"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pont_du_Garigliano"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Passerelle_Simone-de-Beauvoir"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pont_de_l'Archev\u00each\u00e9"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pont_de_Sully"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pont_Marie"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pont_au_Double"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pont_au_Change"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pont_d'Austerlitz"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Seine", "surface form": "Seine"}], "relations": [{"URI": "http://dbpedia.org/ontology/abstract", "surface form": "bridges"}, {"URI": "http://dbpedia.org/ontology/network", "surface form": "cross"}]}, {"id": "49", "answertype": "string", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "What is the official color of the University of Oxford?", "keywords": "University of Oxford, official color"}], "query": {"sparql": "SELECT DISTINCT ?string WHERE { <http://dbpedia.org/resource/University_of_Oxford> <http://dbpedia.org/ontology/officialSchoolColour> ?string }"}, "answers": [{"head": {"vars": ["string"]}, "results": {"bindings": [{"string": {"type": "literal", "value": "Oxford blue"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/University_of_Oxford", "surface form": "University of Oxford"}], "relations": [{"URI": "http://dbpedia.org/ontology/incumbent", "surface form": "official color"}]}, {"id": "50", "answertype": "number", "aggregation": true, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "How many films did Hal Roach produce?", "keywords": "Hal Roach, produce, film"}], "query": {"sparql": "SELECT (COUNT(DISTINCT ?uri) AS ?c) WHERE { ?uri <http://dbpedia.org/ontology/producer> <http://dbpedia.org/resource/Hal_Roach> }"}, "answers": [{"head": {"vars": ["c"]}, "results": {"bindings": [{"c": {"type": "literal", "value": "530"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Hal_Roach", "surface form": "Hal Roach"}], "relations": [{"URI": "http://dbpedia.org/ontology/numberOfFilms", "surface form": "films"}, {"URI": "http://dbpedia.org/ontology/producer", "surface form": "produce"}]}, {"id": "51", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Give me all Danish movies.", "keywords": "movie, Denmark"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Film> ; <http://dbpedia.org/ontology/country> <http://dbpedia.org/resource/Denmark> }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Stolen_Spring_(film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Frode_og_alle_de_andre_r\u00f8dder__Frode_og_alle_de_andre_r\u00f8dder__1"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tr\u00e6llene_/_The_Thralls"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Breaking_the_Waves"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ronal_the_Barbarian"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Valhalla_(film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Little_Brother,_Big_Trouble:_A_Christmas_Adventure"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Forbidden_Team"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fidibus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Skal_vi_v\u00e6dde_en_million%3F"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Asterix_and_the_Vikings"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Monastery:_Mr._Vig_and_the_Nun"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Open_Hearts"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Red_Meadows"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Inheritance_(2003_film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dancer_in_the_Dark"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Den_farlige_alder"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Str\u00f8mer"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Danmarks_N\u00e6ste_Topmodel_(cycle_4)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Next_Stop_Paradise"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/After_the_Wedding"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Flickering_Lights"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Princess_(2006_film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nation_Estate"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/You_Are_Not_Alone_(film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/H\u00f8jt_paa_en_kvist"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sons_of_the_Soil"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jeg_har_elsket_og_levet"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Constance_(1998_film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bornholms_stemme"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Family_Matters_(film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Burma_VJ"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Khomeini's_Boys"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/De_blaa_drenge"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/ID_A"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Venner_for_altid"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/K\u00f8benhavnere"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/En_slem_Dreng"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ghost_Train_International"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/N\u00f8ddebo_Pr\u00e6steg\u00e5rd"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Familien_Pille_som_Spejdere"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pelle_the_Conqueror"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Babette's_Feast"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/K\u00f8rsel_med_Gr\u00f8nlandske_Hunde"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/A_Summer_Tale"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bang_Bang_Orangutang"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Don_Olsen_kommer_til_byen"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Arn_\u2013_The_Knight_Templar"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Vicar_of_Vejlby_(1931_film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Viking_Watch_of_the_Danish_Seaman"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Songs_from_the_Second_Floor"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Klown_Forever"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bionicle:_Mask_of_Light"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/De_5_i_fedtefadet"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sunes_familie"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ditte,_Child_of_Man"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gasolin'_(film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Credo_(1997_film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Farlig_Ungdom"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Herberg_for_Hjeml\u00f8se"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Susanne_(1950_film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Benny's_Bathtub"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Der_kom_en_dag"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/We_Meet_at_Tove's"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Murk_(film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Den_kul\u00f8rte_Slavehandler"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/What_No_One_Knows"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hotel_Paradis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kira's_Reason:_A_Love_Story"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Busters_verden"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Eye_of_the_Eagle_(film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/De_Udstillede"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nynne"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kong_Buksel\u00f8s"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Eksperimentet"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Perfect_Human"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nordhavets_m\u00e6nd"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Echo_(2007_film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/De_besejrede_Pebersvende"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vildledt_Elskov"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fr\u00e6kke_Frida_og_de_frygtl\u00f8se_spioner"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Af_banen"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bag_K\u00f8benhavns_kulisser"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Giv_Gud_en_chance_om_s\u00f8ndagen"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Stjerneskud"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/K\u00e6rlighed_og_Mobilisering"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Karlas_kabale"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Samson_&_Sally"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Journey_to_Saturn"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/A_War"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Antichrist_(film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Crying_for_Love"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Supervoksen"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Help!_I'm_a_Fish"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jag_\u00e4r_din_krigare"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Webmaster_(film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Frk._M\u00f8llers_jubil\u00e6um"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/That's_Me,_Too"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Der_var_engang_en_vicev\u00e6rt"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Let's_Get_Lost_(1997_film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/When_the_Light_Comes"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Smiling_in_a_War_Zone"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Reptilicus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/L\u00f8vejagten"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Regel_nr._1"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Sinful_Dwarf"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pusher_(film_series)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Journey_to_the_Seventh_Planet"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Der_rote_Kreis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Something_Better_to_Come"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Torremolinos_73"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Stealing_Rembrandt"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Teddy_Bear_(2012_film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Terribly_Happy"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Melody_of_Murder"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Monas_verden"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Minor_Mishaps"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ai_Weiwei:_The_Fake_Case"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Manslaughter_(2005_film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kun_en_Tigger"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Denmark", "surface form": "Danish movies"}, {"URI": "http://dbpedia.org/resource/The_Movies_(film)", "surface form": "Danish movies"}], "relations": [{"URI": "http://dbpedia.org/ontology/country", "surface form": ""}]}, {"id": "52", "answertype": "resource", "aggregation": true, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "What is the most frequent cause of death?", "keywords": "cause of death, most frequent"}], "query": {"sparql": "SELECT DISTINCT ?x WHERE { ?uri <http://dbpedia.org/ontology/deathCause> ?x . } ORDER BY DESC(COUNT(DISTINCT ?uri)) OFFSET 0 LIMIT 1"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Myocardial_infarction"}}]}}], "entities": [], "relations": [{"URI": "http://dbpedia.org/ontology/patron", "surface form": "frequent"}, {"URI": "http://dbpedia.org/ontology/fate", "surface form": "death"}]}, {"id": "53", "answertype": "resource", "aggregation": false, "onlydbo": false, "hybrid": false, "question": [{"language": "en", "string": "Who are the four youngest MVP basketball players?", "keywords": "four, youngest, MVP, basketball player"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/BasketballPlayer> ; <http://dbpedia.org/ontology/birthDate> ?date ; <http://dbpedia.org/property/highlights> ?h FILTER regex(?h, \"MVP\") } ORDER BY DESC(?date) OFFSET 0 LIMIT 4"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Frank_Jackson_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/D\u017eanan_Musa"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Markelle_Fultz"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bori\u0161a_Simani\u0107"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/NBA_Most_Valuable_Player_Award", "surface form": "MVP"}, {"URI": "http://dbpedia.org/resource/National_Basketball_Players_Association", "surface form": "basketball players"}], "relations": []}, {"id": "54", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Give me all companies in Munich.", "keywords": "company, Munich"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Company> { ?uri <http://dbpedia.org/ontology/location> <http://dbpedia.org/resource/Munich> } UNION { ?uri <http://dbpedia.org/ontology/headquarter> <http://dbpedia.org/resource/Munich> } UNION { ?uri <http://dbpedia.org/ontology/locationCity> <http://dbpedia.org/resource/Munich> } }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Allianz"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Generali_Deutschland"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/SIN_Cars"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/BayWa"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/ECircle"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/RedSpotGames"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sixt"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Grouptime"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Siemens"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gigaset_Communications"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vitruvian_Partners"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Munich_Re"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Iobox"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Crossgate_AG"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bayerische_Eisenbahngesellschaft"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/M\u00fcnchner_Verkehrsgesellschaft"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Carpooling.com"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Turner_Broadcasting_System_Germany"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Torry_Harris_Business_Solutions"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Keil_(company)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ed_Meier"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kuckuck_Schallplatten"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mitropa"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/M\u00fcnchner_Verkehrs-_und_Tarifverbund"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fujitsu_Siemens_Computers"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/MAN_SE"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mutares"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Biomax_Informatics_AG"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/HypoVereinsbank"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tomorrow_Focus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/White_Line_Hotels"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Wacker_Chemie"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fraunhofer_Society"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/JMT_Records"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jetair_(Germany)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Noerr"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Realmforge_Studios"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/MAN_Turbo"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Travelzoo"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Wellington_Partners"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bumblehood"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Discovery_Networks_Deutschland"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/HgCapital"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Knorr-Bremse"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Roland_Berger_(company)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Travian_Games"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Schaltbau_Group"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Coriant"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Arri"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Impuls"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pilotfish_(company)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/VEM_Aktienbank"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Emotion_Media_Factory"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Qimonda"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dresdner-Cetelem_Kreditbank_GmbH"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Stadtwerke_M\u00fcnchen"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/ACT_Music"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/ADESS_AG"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/JAPO_Records"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lufttransport_S\u00fcd"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Stern_Stewart_&_Co"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Disney_XD_(Europe)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Metaio"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rapp_Motorenwerke"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Escada"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/MCON_GROUP"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Flixbus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/ECM_Records"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Siemens_Mobile"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Atos"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chimera_Entertainment"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hypo_Real_Estate"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Little_Teddy_Recordings"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Shin'en_Multimedia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Serviceplan"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hacker-Pschorr_Brewery"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Klotz_Digital"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/M\u00fcnchner_Bank"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Linde_Group"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Megazebra"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/DASA"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Winter_&_Winter_Records"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vogtlandbahn"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Osram"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nagarro"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Auer+Weber+Assoziierte"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nemetschek"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/MTU_Aero_Engines"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rodenstock_GmbH"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/DriveNow"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dyckerhoff_&_Widmann"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tado\u00b0"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sterneckerbr\u00e4u"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gaggenau_Hausger\u00e4te"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Augustiner-Br\u00e4u"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Certina_Holding"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Munich_Animation"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dubbing_Brothers"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rheinmetall_MAN_Military_Vehicles"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dallmayr"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Enja_Records"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fujitsu_Technology_Solutions"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Edelsbrunner_Automobile_M\u00fcnchen"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Target_Partners"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Becoacht.com"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/HAWE_Hydraulik_SE"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nfon"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hans_im_Gl\u00fcck"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Constantin_Film"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/3Dconnexion"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/BMW"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Siemens_Financial_Services"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Telef\u00f3nica_Germany"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Finsterwalder"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hugendubel"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Proximic"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Focus_TV"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Haarmann_Hemmelrath"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Softlab"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Langenscheidt"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dehns"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Unify_Software_and_Solutions_GmbH_&_Co._KG."}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/BSH_Hausger\u00e4te"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/T\u00dcV_S\u00dcD"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gemalto_M2M"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Coreplay"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Celemony_Software"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Adinotec"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Railpool"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/MP_&_Silva"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/MAN_Truck_&_Bus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tokyo_Dawn_Records"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Amiando"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cirquent"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Neff_GmbH"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rohde_&_Schwarz"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Epcos"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tele_M\u00fcnchen_Gruppe"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Framepool"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Companies_listed_on_the_New_York_Stock_Exchange_(J)", "surface form": "companies"}, {"URI": "http://dbpedia.org/resource/Munich", "surface form": "Munich"}], "relations": []}, {"id": "55", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Give me the capitals of all countries that the Himalayas run through.", "keywords": "countries Himalayas run through, capitals"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Himalayas> <http://dbpedia.org/ontology/country> ?country . ?country <http://dbpedia.org/ontology/capital> ?uri }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Thimphu"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Countries_of_the_United_Kingdom", "surface form": "countries"}, {"URI": "http://dbpedia.org/resource/Himalayas", "surface form": "Himalayas"}], "relations": [{"URI": "http://dbpedia.org/ontology/capital", "surface form": "capitals"}, {"URI": "http://dbpedia.org/property/work", "surface form": "run"}]}, {"id": "56", "answertype": "number", "aggregation": true, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "How many movies did Park Chan-wook direct?", "keywords": "how many movies, directed, Park Chan-wook"}], "query": {"sparql": "SELECT COUNT(DISTINCT ?uri AS ?uri) WHERE { ?uri <http://dbpedia.org/ontology/director> <http://dbpedia.org/resource/Park_Chan-wook> . }"}, "answers": [{"head": {"vars": ["c"]}, "results": {"bindings": [{"c": {"type": "literal", "value": "15"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Park_Chan-wook", "surface form": "Park Chan-wook direct"}], "relations": [{"URI": "http://dbpedia.org/ontology/film", "surface form": "movies"}]}, {"id": "57", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Which rivers flow into a German lake?", "keywords": "rivers, flow, German lake"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/River> . ?x <http://dbpedia.org/ontology/inflow> ?uri ; a <http://dbpedia.org/ontology/Lake> ; <http://dbpedia.org/ontology/country> <http://dbpedia.org/resource/Germany> }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Br\u00fceler_Bach"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Stepenitz_(Trave)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Trave"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nieplitz"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Konstanzer_Ach"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mildenitz_(river)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Aalbek_(Hemmelsdorfer_See)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Spree"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/M\u00fcnstersche_Aa"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bresenitz"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Schleemer_Bach"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rhin"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Wandse"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Black_Elster"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lech_(river)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Schlaube"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hochspeyerbach"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Isenach"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rhine"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Drosedower_Bek"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sophienflie\u00df"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bi\u00dfnitz"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Havel"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alte_Schwentine"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/G\u00f6sebek"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Elde"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Osterbek"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nebel_(river)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Warnow"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Schwalm_(Meuse)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alster"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Aubach_(bei_Schwerin)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Stendlitz"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Plane_(river)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Neffelbach"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kossau"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Schwentine"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Germany", "surface form": "German lake"}, {"URI": "http://dbpedia.org/resource/German_Lake", "surface form": "German lake"}], "relations": [{"URI": "http://dbpedia.org/ontology/operator", "surface form": "rivers"}, {"URI": "http://dbpedia.org/property/float", "surface form": "flow"}, {"URI": "http://dbpedia.org/ontology/country", "surface form": ""}]}, {"id": "58", "answertype": "number", "aggregation": true, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "How many airlines are there?", "keywords": "how many, airlines"}], "query": {"sparql": "SELECT (COUNT(DISTINCT ?uri) AS ?c) WHERE { ?uri a <http://dbpedia.org/ontology/Airline> }"}, "answers": [{"head": {"vars": ["c"]}, "results": {"bindings": [{"c": {"type": "literal", "value": "4262"}}]}}], "entities": [], "relations": [{"URI": "http://dbpedia.org/ontology/icaoAirlineCode", "surface form": "airlines"}]}, {"id": "59", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Give me all islands that belong to Japan.", "keywords": "islands, Japan"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Island> ; <http://dbpedia.org/ontology/country> <http://dbpedia.org/resource/Japan> }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Iwo_Jima"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jinai-t\u014d"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kuroshima_(Kagoshima)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kyushu"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Oki_Islands"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ishigaki_Island"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hachij\u014d-kojima"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Yokoate-jima"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bayonnaise_Rocks"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tokara_Islands"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Miyake-jima"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kamome_Island"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Inamba-jima"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Izu_\u014cshima"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chichijima"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/\u014cnohara_Islands"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/\u014csumi_Islands"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Zamami_Island"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kogajajima"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sh\u014dwa_I\u014djima"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kitadait\u014djima"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Akusekijima"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Udone-shima"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fukaji_Island"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kinkasan"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rebun_Island"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tsuken_Island"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Benten-jima_(Wakkanai)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Oshima_(Hokkaido)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hokkaido"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Okinotorishima"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Taketomi_Island"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Daikon_Island"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Amami_\u014cshima"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Genkai_Island"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hateruma"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Izena_Island"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nii_\u014cshima"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Aka_Island"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Geruma_Island"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Yaeyama_Islands"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Iejima"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Iriomote-jima"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kuchinoerabu-jima"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hashima_Island"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tokashiki_Island"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Takeshima_(Kagoshima)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hatsushima"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tanegashima"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Amami_Islands"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tobishima_(Yamagata)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hokkaido__island__1"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tori-shima_(Izu_Islands)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nakadori_Island"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Denshima"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Yagishiri_Island"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Okushiri_Island"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Awaji_Island"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Volcano_Islands"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Okamura_Island"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kume_Island"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mainland_Japan"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kojima_(Hokkaido)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tairajima"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rishiri_Island"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nakanoshima_(Kagoshima)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Miyako-jima"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ainoshima_(Shing\u016b)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gajajima"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tsushima_Island"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Manabeshima"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Yakushima"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kozukumi_Island"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Minamidait\u014djima"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dait\u014d_Islands"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Teuri_Island"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Iki_Island"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Yonaguni"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Smith_Island_(Japan)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Honshu"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mageshima"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Shikoku"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hahajima"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Okidait\u014djima"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Minami-Tori-shima"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/I\u014djima_(Kagoshima)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lot's_Wife_(crag)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Okinawa_Island"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Japan", "surface form": "Japan"}], "relations": [{"URI": "http://dbpedia.org/ontology/numberOfIslands", "surface form": "islands"}, {"URI": "http://dbpedia.org/ontology/date", "surface form": "belong"}]}, {"id": "60", "answertype": "number", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "How many inhabitants does Maribor have?", "keywords": "Maribor, inhabitants"}], "query": {"sparql": "SELECT DISTINCT ?num WHERE { <http://dbpedia.org/resource/Maribor> <http://dbpedia.org/ontology/populationTotal> ?num }"}, "answers": [{"head": {"vars": ["c"]}, "results": {"bindings": [{"c": {"type": "literal", "value": "95881"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Maribor", "surface form": "Maribor"}], "relations": [{"URI": "http://dbpedia.org/ontology/country", "surface form": "inhabitants"}]}, {"id": "61", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Give me all Apollo 14 astronauts.", "keywords": "astronaut, Apollo 14"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/mission> <http://dbpedia.org/resource/Apollo_14> }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Stuart_Roosa"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alan_Shepard"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Edgar_Mitchell"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Apollo_14", "surface form": "Apollo 14 astronauts"}], "relations": []}, {"id": "62", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Which companies have more than 1 million employees?", "keywords": "company, more than 1 million, employees"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Company> { ?uri <http://dbpedia.org/ontology/numberOfEmployees> ?n } UNION { ?uri <http://dbpedia.org/property/numEmployees> ?n } FILTER ( ?n > 1000000 ) }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mammoth_Resource_Partners"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Schweitzer_Engineering_Laboratories"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mechel"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/3_Skypephone_Series"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Valpadana"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/SIMPLE_Group"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Zimbabwe_United_Passenger_Company"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Raindirk_Audio"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bank_of_Credit_and_Commerce_International"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/PeerIndex"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Insurance_Company"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Titmouse,_Inc."}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gilt_Groupe"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Central_Music_Company"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Food_Corporation_of_India"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/DigitalMR"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/FareCompare"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Heibao_Auto"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/MIC_Tanzania_Limited"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Super_One_Foods"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/B\u00fchler_Motor"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Verpoorten"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Banque_du_Caire"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Blue_Coat_Systems"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/X-Vision"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Heelys,_Inc."}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/ClickStar"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Thermwood_Corporation"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/ASmallWorld"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Adzuna"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Royal_Canadian_Mint"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Recife_Center_for_Advanced_Studies_and_Systems"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/APEV"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Markem-Imaje"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Artizone"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Altiris"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rotel"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Raiffeisen_Zentralbank"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Metronet"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Stony_Hill_Vineyard"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Southern_Telecom"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Addtech"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/UMW_Holdings"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Caucasus_Online"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nizhniy_Tagil_Iron_and_Steel_Works"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Automobile_Products_of_India"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Maquet"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Quest_Broadcasting"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/H.D._Vest"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/1QBit"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Philippine_Airlines"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Aniche_Mining_Company"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Oriental_Trading_Company"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Northwell_Health"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/NCS_Pte_Ltd"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/GTC_Wireless"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Franco_Tosi_Meccanica"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Airgas"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Protekon"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/EVNTelecom"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bech-Bruun"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/International_Grooving_&_Grinding_Association"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nuix"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/AT&T_Alascom"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/System_Planning_Corporation"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Swedish_Transport_Administration"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Union_Bank_of_the_Philippines"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CardIt"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/JibJab"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hatz"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Standard_Pacific_Homes"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Continental_AG"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/First_Financial_Bank"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/China_Guangfa_Bank"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vinmonopolet"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mission_Essential"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/NayaTel"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Philippine_Postal_Savings_Bank"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Oporto_(restaurant)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/SOCAR"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/World's_Finest_Shows"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Auctionata"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/BHF_Bank"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Zarco_Exchange"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Reksoft"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Heritage_USA"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Medisafe_International"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kamaka_Ukulele"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gambro"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Interwetten"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/First_National_Bank_of_Tanzania"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Waltham_Manufacturing_Company"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cizeta"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vetter_Pharma"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/AHT_Cooling_Systems"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fierro_Group"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Eushully"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pentosin"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hancock_Fabrics"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Swinton_Insurance"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Harmony_Gold_USA"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hook_Norton_Brewery"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Otis_Elevator_Company"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/International_Art_Materials_Trade_Association"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/LeanIX"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Soci\u00e9t\u00e9_des_alcools_du_Qu\u00e9bec"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Business_Connexion_Group"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tunisie_Telecom"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Commercial_Bank_of_Ceylon"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Venturesoft"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Broseley_Estates_Limited"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Selena_Etc."}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Roszheldorproject"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/R\u00fasdrekkas\u00f8la_Landsins"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/AXYKno"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Casengo"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Henderson_Group"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Azot_(Cherkasy)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Comazar"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/State_Grid_Corporation_of_China"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/S&P_Capital_IQ"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tutor_Perini"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/One_Vision_(DTT)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Geibeltbad_Pirna"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/B\u00fcttenpapierfabrik_Gmund"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Modus_FX"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Klarna"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/MACO_Door_&_Window"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vedanta_Limited"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Transnet_Freight_Rail"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/JOEY"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/SM&A"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Optus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rona,_Inc."}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gameaccess.ca"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rehau_Group"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Revenue_Technology_Services"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/FIIG_Securities"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/John_Galt_Solutions,_Inc."}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Turner_Entertainment"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Capital_Bars"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/LED_Eco_Lights"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Amnesty_International_Australia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Science_Summer_School_Inc."}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Miltenyi_Biotec"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Claro_Americas"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Neighborhood_Bike_Works"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tom_Thumb_Food_&_Pharmacy"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gyulaj_Hunting_Hungary"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Reser's_Fine_Foods"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/BMR_Group"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Caxton_FX"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Weightmans"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Airdrome_Aeroplanes"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bijoux_Terner"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/NDOORS_Corporation"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/DocuWare"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pliva"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/China_National_Petroleum_Corporation"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/City_Group"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lebedyansky_(company)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Freshfields_Bruckhaus_Deringer"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dixon_Hughes_Goodman"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Plesner_(law_firm)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Colorado_Time_Systems"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Allnex"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ankai"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Shihlin_Electric"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Avon_Rubber"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Junk_Mail_Digital_Media"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/SELEX_Sistemi_Integrati"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/DATEV"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cumberland_Community_Improvement_District"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bing_Boy"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/PTV_AG"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mad_Dog_Knives"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gilmore_Group"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Brookville_Equipment_Corporation"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CMC_Electronics"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sipani"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Forrec"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Meltwater_Group"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Wragge_Lawrence_Graham_&_Co"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/British_Parking_Association"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vortex_Optics"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Foo_Go"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/F._Hinds"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gamesville"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sri_Lanka_Railways"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bangabandhu_Aeronautical_Centre"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dagsbr\u00fan"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Utsch_AG"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Schweizerische_Industrie_Gesellschaft"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Press_Trust_of_India"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ardex_GmbH"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sennebogen"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Freightdynamics"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/OLM,_Inc."}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sheetz"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/JL_Mobile"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/FrieslandCampina"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Republic_Airways_Holdings"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Danish_Agro"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CapitalVia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Blogged.com"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Asian_Agri"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/ColosseoEAS"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cavedog_Entertainment"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Thrifty_Foods"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/LucasArts"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Maxfli"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jadever"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/EduFocal"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/BPI_Direct_Savings_Bank"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Image_Works"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Qype"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Heartland_Bank"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/ARGO-HYTOS"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Community_Bicycle_Network"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Shepherd_Building_Group"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mary_Kay"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Temelsu"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Broadjam"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dustin_AB"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bigott_Foundation"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Merck_Group"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Genji,_LLC"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pebble_bed_modular_reactor"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Deckers_Outdoor_Corporation"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Britannia_(former_building_society)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Heads_and_Hands"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sampan_(newspaper)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/AECOM"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/E.C.H._Will"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sigma-Aldrich"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/BMW_Brilliance"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dalsvyaz"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Permasteelisa"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Inq_Mobile"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Stevanato_Group"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/WeGrow_Store"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Famous_Studios"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Transport_Research_Laboratory"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CONVOTHERM_Elektroger\u00e4te_GmbH"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vardia_Insurance_Group"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Phar_Lap_(company)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Livescribe"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jain_Irrigation_Systems"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/TMW_Systems"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Topaz_Energy"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Soap_(shoes)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Minit_Mart_Foods_Inc."}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/RadiOrakel"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lightstream_Resources"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/J._K._Organisation"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Premier_Medical_Group"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Omninet"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Goodlight"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tokenzone"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Earth_Awards"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/VEGAS.com"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Adris_grupa"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Angelini"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/LTB_(company)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Coker_Tire"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/OEID"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Agate_Studio"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/DMM.com"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bodegas_Pomar,_C.A."}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/EDiets.com"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/MakerBot"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Adolescent_and_Children's_Trust"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Passenger_Rail_Agency_of_South_Africa"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Warner_Bros."}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vivox"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Meridian_Knowledge_Solutions"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/MobiFone"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Adventure_SA"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Executive_National_Bank"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/ECCO"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nature_Publishing_Group"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Town_Center_Area_Community_Improvement_District"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Patrick_Corporation"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/AED_Oil"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hutt_Workshops"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Honda_of_the_UK_Manufacturing"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Busey_Bank"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Julabo_Labortechnik"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Simon_David"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Weetabix_Limited"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Speedway_LLC"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tyan"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Univair_Aircraft_Corporation"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lippincott"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Vanguard_Group"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fischer_(company)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/TC_Transcontinental"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/RUAG"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Clydesdale_Bank"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Arctech_Helsinki_Shipyard"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Linden_Lab"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Aberdeen_Asset_Management"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Milestones_Grill_and_Bar"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Turkish_Bank"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Channel_Technologies_Group"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Aditi_Technologies"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Asfour_crystal"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/ZUNO_Bank_AG"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jack_Wolfskin"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Camtel"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/South_Florida_Educational_Federal_Credit_Union"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Atlanta_Bread_Company"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Osaka_Titanium_Technologies"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Strider_Knives"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hamm_AG"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cervecer\u00eda_Polar"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Leupold_&_Stevens"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/ANGEL_Learning"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Donor_Sibling_Registry"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Azimut_Hotels"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Berenberg_Bank"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Trustmark_Companies"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/55DSL"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Zhongtong_Bus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Auctionair"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fujitsu_Computer_Products_of_America"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Empresas_1BC"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Foundation_for_subsidiarity"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Zotefoams"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Interactive_Intelligence"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gushan_Environmental_Energy"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Domino_Printing_Sciences"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Zynga_with_Friends"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dimensional_Fund_Advisors"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/VanEck"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/UPC_Switzerland"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Instituto_Bioclon"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/P3_group"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/OpenLink_Software"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Interval_Research_Corporation"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/E-Loan"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Crown_Central_Petroleum"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sarenza"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Arnott_Air_Suspension_Products"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bernard_Krone_Holding"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hammonds"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Camfil"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Oxford_Student_Publications_Limited"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Blake_Morgan_LLP"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/German_Finance_Agency"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/McCarthy_T\u00e9trault"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Park_Systems"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Armacell"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ceylinco_Consolidated"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cory_Environmental"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kenda_Rubber_Industrial_Company"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/FreeWave_Technologies"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Malvern_Fringe_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Apulum_(company)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Emulex"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pets_Corner"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Archaeology_South-East"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/NNIT"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/MJ_Designs"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/K\u00e4rcher"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Samba_Financial_Group"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Los_Alamos_Technical_Associates"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Interprint"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Home_Interiors_and_Gifts"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/European_Retail_Round_Table"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Digiboo"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Shionogi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Salans"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Svyazinvest"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/\u00c7ukurova_Holding"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Canadia_Bank"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/One_Communications"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mission_Foods"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Adecco_Group"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Minster_Machine_Company"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Credit_Sesame"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Asia_Venture_Group"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Olympic_Steel"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gestamp_Automoci\u00f3n"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Trussed_Concrete_Steel_Company"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Railway_Board"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Carbine_Studios"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/FCC_Environment"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fleischer_Studios"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Citizenre"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sahara_Press_Service"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Artevea"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bay_Ferries"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/1st_Valley_Bank"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Syhunt"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alba_(brand)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Neptune_Wellness_Solutions"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vodafone_Germany"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/EMP_Merchandising"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Traffic_(conservation_programme)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hearst_Television"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Infobip"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Primetals_Technologies"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Donaudampfschiffahrtsgesellschaft"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Colt's_Manufacturing_Company"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/InterCall"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Interceptor_Entertainment"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kirloskar_Oil_Engines_Limited"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/OB10"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sendik's_Food_Market"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/MATIS_Group"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Asendia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/ClearSpeed"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/John_Keells_Computer_Services"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Symphony_Teleca"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Big_Market"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ainol"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/PCL_Construction"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Red_Lizard_Software"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Truvo"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Myreno411"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/EKOSPOL"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Proximedia_Group"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Velocite_Bikes"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pashtany_Bank"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Veeco"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/TE_Data"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/West_Coast_Customs"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Martin_Bencher"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bohnacker_Systeme"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Thorntons"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Marquardt_Group"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Black_Forest_Games"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Snap_Kick_Productions"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vyborg_Shipyard"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Weatherbys"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/TeleTrade"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Telespazio"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Baytex_Energy"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Proxim"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pulitzer,_Inc."}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ulstein_Group"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gr\u00fcnenthal_GmbH"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Zupan's_Markets"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ideal_Jawa"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Occidental_Petroleum"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Diamond_Management_&_Technology_Consultants"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hacker-Pschorr_Brewery"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fuji_Food"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Roberts_Radio"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CIMPA"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Eutechnyx"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Titan_Motorcycle_Company"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Daktronics"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sonus_Networks"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Huanghai_Bus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Evangelical_Lutheran_Good_Samaritan_Society"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tranquilidade"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Secop"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Falconar_Avia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Grontmij"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lufthansa_Consulting"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/K\u00f6rber"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/INA_(company)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nova_Star_Cruises"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/D3_LED"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Romat"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/ProPublica"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vetter_Fairing_Company"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Samarco"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/SendStation_Systems"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/GlobeCore"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sudatel"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Avnet"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cyrix"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rafed_Network_for_Cultural_Development"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/TT-Line"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/SplendidCRM"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ypsilanti_Food_Co-op"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/D-Wave_Systems"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Madacom"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/MFA_Oil"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fitness_Republic"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Knovel"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Southern_Wine_&_Spirits"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Para_USA"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Akademiet_Norge"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Plante_Moran"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/ConnectEast"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alphawest"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hassans"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Playerhistory.com"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nib_Health_Funds"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/WhiteTie"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/SkillGround"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/DJI_(company)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Wateen"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Helados_EFE,_C.A."}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Video_Professor"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/LeasePlan"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Burger_King_Israel"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Berendsohn"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Turck"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nomeco"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Harmony_Gold_(mining)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alimentos_Polar"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Moxie's_Grill_&_Bar"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Iron_Horse_Bicycles"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Stitcher_Radio"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/ARCOS_LLC"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Wolford"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/S&P_Global_Platts"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pacific_LightNet"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/MONILINK"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bay_Ferries_Great_Lakes"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Merooj"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Airbus_Group,_Inc."}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/NanoWorld"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/DeVry_Education_Group"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Weidemann_GmbH"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Collins_Companies"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Communauto"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Thrivent_Financial"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Plant_Delights_Nursery"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Indian_Railways"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Standard_(Indian_automobile)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Spiral_Q_Puppet_Theater"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Evans_Cycles"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Aeroexpresos_Ejecutivos,_C.A."}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Oscilloquartz"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Archant"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Universal_Forest_Products"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Thinkwell_Group"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Marratech"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/China_Railway"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rogers_Radio"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Steyr_Tractor"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/FedEx_Ground"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Spellbound_Entertainment"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/R\u00f6chling_Group"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/HSBC_Bank_(Turkey)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Saskatchewan_Railway_Museum"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lixtor"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/El_Zorro_(railway)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Empire_Theatres"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Olympic_Group"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pro-Ject"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Al-Amanah_Islamic_Bank"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/EirGrid"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Supermercado_De_Candido"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bank_of_Holland"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Xi'an_Aircraft_Industrial_Corporation"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cerv\u00e9lo"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Moscow_City_Telephone_Network"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cambridge_Who's_Who"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Independent_News_&_Media"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Daniel_(department_store)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Savas_Beatie"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Medac"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/X2_Digital_ISV"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/VIT,_C.A."}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sachtleben_Chemie"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Exco_Technologies"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Davinci_Virtual"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Columbia_River_Knife_&_Tool"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dystar"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/GS_Telecom"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Keppel_Corporation"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Denplan"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Greatist"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Zamtel"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Stikeman_Elliott"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gazprom_Promgaz"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dornier_Consulting"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Radical_Axis_(studio)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Total_Wine_&_More"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sony_Pictures_Entertainment"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Taft_Stettinius_&_Hollister"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/84_Lumber"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Equitable_PCI_Bank"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Flashback_Media_Group"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Angola_Telecom"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Apparel_2000"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Greatpac"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Flottweg"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/OpenSkills"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Wang_Laboratories"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/International_Graphoanalysis_Society"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Continental_Packaging_Solutions"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Foxconn"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Smith_Custom_Amplifiers"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Loki_Entertainment"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/ShoreTel"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Schottel_(company)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/AlertMe"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Wholesale_Applications_Community"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Centrax"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ruter"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sky_Regional_Airlines"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/McCoy_(pottery)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Parallax_Software"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Baltika_Breweries"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pawnee_Aviation"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Allakhazam"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Landini_(tractor)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/BitPass"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Philippine_National_Construction_Corporation"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Elkem"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Allied_Banking_Corporation"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Little_Chef"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Erie_Insurance_Group"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/H2O_Networks"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/OhioHealth"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Carver_Bancorp"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Zscaler"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Terracom"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/InsWeb"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/DB_Station&Service"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Minox"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/MolMed"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Coach,_Inc."}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Massey_Energy"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Krenholm_Manufacturing_Company"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sundog_Solar"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gulni"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Banco_Filipino"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Landmark_Cinemas"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bolsa_de_Valores_de_la_Rep\u00fablica_Dominicana"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tastykake"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bureau_van_Dijk"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Timeline_of_the_Greater_Victoria_Water_System"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bergstrom_Nutrition"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/UserLand_Software"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Welspun_Maxsteel_Ltd"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Socatel"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vaillant_Group"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/EID_Parry"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Telent"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/EFG-Hermes"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kjellberg_Finsterwalde"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tembec"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/GEA_Westfalia_Separator"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Beyerdynamic"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Campagnolo"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Oregon-Canadian_Forest_Products"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Venda_Inc"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/MEC_(media_agency)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Condair_Group"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/PLUS_Expressways"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/John_Crane_Group"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sungwoo_Automotive"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sumitomo_Electric_Bordnetze"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/White_&_Case"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chemical_Financial_Corporation"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Robinson_Armament_Co."}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/R.J._Corman_Railroad_Group"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lechler"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Danger_Inc."}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Virtutech"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ravn_Studio"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dorotheum"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Stradling_Yocca_Carlson_&_Rauth"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Champion_REIT"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Transmashholding"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/HAWE_Hydraulik_SE"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Scholz_&_Friends"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/WikiCity_Guides"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Technopromexport"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Reithoffer_Shows"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jysk_(store)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Thor_Steinar"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/VantagePoint_Capital_Partners"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Stryker_Corporation"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/SJ_AB"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/K\u00f6gel_Trailer"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fidal"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Day_Software"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Louis_Poulsen"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/F\u00e9d\u00e9ration_de_l'informatique_du_Qu\u00e9bec"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Thrillist_Media_Group"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Aviva_Canada"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/RM_Education"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hans_Rudolph,_Incorporated"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/HAECO"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Eagle_Boys"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Polk_Brothers"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Golden_Bear_Toys"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Peabody_Energy"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/MSD_Capital"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Zoom_Air"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Demijohn_Limited"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Al_Bilad_Bank"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Komer\u010dn\u00ed_banka_Bratislava"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Companies_listed_on_the_New_York_Stock_Exchange_(J)", "surface form": "companies"}], "relations": [{"URI": "http://dbpedia.org/ontology/iso6391Code", "surface form": "1"}, {"URI": "http://dbpedia.org/ontology/numberOfEmployees", "surface form": "employees"}]}, {"id": "63", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "In which films directed by Garry Marshall was Julia Roberts starring?", "keywords": "film, directed, Garry Marshall, starring, Julia Roberts"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Film> ; <http://dbpedia.org/ontology/starring> <http://dbpedia.org/resource/Julia_Roberts> ; <http://dbpedia.org/ontology/director> <http://dbpedia.org/resource/Garry_Marshall> }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mother's_Day_(2016_film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Runaway_Bride_(film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pretty_Woman"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Garry_Marshall", "surface form": "Garry Marshall was Julia Roberts"}], "relations": [{"URI": "http://dbpedia.org/ontology/numberOfFilms", "surface form": "films"}, {"URI": "http://dbpedia.org/ontology/president", "surface form": "directed"}, {"URI": "http://dbpedia.org/ontology/starring", "surface form": "starring"}]}, {"id": "64", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Give me all soccer clubs in the Premier League.", "keywords": "Premier League, soccer club"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/SoccerClub> ; <http://dbpedia.org/ontology/league> <http://dbpedia.org/resource/Premier_League> }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/2012\u201313_Arsenal_F.C._season"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/2014\u201315_Chelsea_F.C._season"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/2013\u201314_Chelsea_F.C._season"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/2010\u201311_Birmingham_City_F.C._season"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/2013\u201314_Arsenal_F.C._season"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/2007\u201308_Wigan_Athletic_F.C._season"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/2007\u201308_Chelsea_F.C._season"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/2007\u201308_Manchester_City_F.C._season"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/2008\u201309_Manchester_City_F.C._season"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/2011\u201312_Chelsea_F.C._season"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/2010\u201311_Arsenal_F.C._season"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/2014\u201315_Southampton_F.C._season"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/2015\u201316_Southampton_F.C._season"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/2008\u201309_Arsenal_F.C._season"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/2006\u201307_Reading_F.C._season"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/2012\u201313_Chelsea_F.C._season"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/2012\u201313_Reading_F.C._season"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/2009\u201310_Arsenal_F.C._season"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/2006\u201307_Bolton_Wanderers_F.C._season"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/2013\u201314_Cardiff_City_F.C._season"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/2005\u201306_Wigan_Athletic_F.C._season"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Premier_League", "surface form": "Premier League"}], "relations": [{"URI": "http://dbpedia.org/ontology/clubsRecordGoalscorer", "surface form": "soccer clubs"}]}, {"id": "65", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "What is the highest place of the Urals?", "keywords": "Urals, highest place"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Ural_Mountains> <http://dbpedia.org/property/highest> ?uri }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mount_Narodnaya"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Urals_Mussorgsky_State_Conservatoire", "surface form": "Urals"}], "relations": [{"URI": "http://dbpedia.org/ontology/highestPlace", "surface form": "highest place"}]}, {"id": "66", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Who is the governor of Wyoming?", "keywords": "governor, Wyoming"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Wyoming> <http://dbpedia.org/property/governor> ?uri }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Matt_Mead"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Wyoming", "surface form": "Wyoming"}], "relations": [{"URI": "http://dbpedia.org/ontology/governor", "surface form": "governor"}]}, {"id": "67", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Where did the architect of the Eiffel Tower study?", "keywords": "architect, Eiffel Tower, study"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Eiffel_Tower> <http://dbpedia.org/ontology/architect> ?x . ?x <http://dbpedia.org/property/almaMater> ?uri }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/\u00c9cole_Sp\u00e9ciale_d'Architecture"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Eiffel_Tower", "surface form": "Eiffel Tower study"}], "relations": [{"URI": "http://dbpedia.org/ontology/architect", "surface form": "architect"}]}, {"id": "68", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Give me all world heritage sites designated within the past two years.", "keywords": "world heritage site, designate, past two years"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/WorldHeritageSite> . { ?uri <http://dbpedia.org/property/year> '2013'^^xsd:integer . } UNION { ?uri <http://dbpedia.org/property/year> '2014'^^xsd:integer . } }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Castle_of_Grinzane_Cavour"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Namib_Desert"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Church_of_the_Archangel_Michael,_Uzhok"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Montferrat"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rani_ki_vav"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Namhansanseong"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Asti_wine"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Medici_villas"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Langhe"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tr\u00e0ng_An_Scenic_Landscape_Complex"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Silk_Road_UNESCO_World_Heritage_Sites"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Maresha"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bolghar"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vineyard_Landscape_of_Piedmont:_Langhe-Roero_and_Monferrato"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pamir_National_Park"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Canelli"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bergpark_Wilhelmsh\u00f6he"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hill_Forts_of_Rajasthan"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Giant_Wild_Goose_Pagoda"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Wooden_tserkvas_of_the_Carpathian_region_in_Poland_and_Ukraine"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cumal\u0131k\u0131z\u0131k"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Honghe_Hani_Rice_Terraces"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Holy_Trinity_Church,_Zhovkva"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/St._George's_Church,_Drohobych"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Golestan_Palace"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Descent_of_the_Holy_Spirit_Church"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Stevns_Klint"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chauvet_Cave"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bingling_Temple"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ranthambore_Fort"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Okavango_Delta"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Roero"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tomioka_Silk_Mill"}}]}}], "entities": [], "relations": [{"URI": "http://dbpedia.org/ontology/fate", "surface form": "heritage sites"}, {"URI": "http://dbpedia.org/ontology/class", "surface form": "designated"}]}, {"id": "69", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Give me all actors who were born in Paris after 1950.", "keywords": "actors, born, Paris, after 1950"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Actor> . ?uri <http://dbpedia.org/ontology/birthPlace> <http://dbpedia.org/resource/Paris> . ?uri <http://dbpedia.org/ontology/birthDate> ?date . FILTER ( ?date >= xsd:dateTime('1950-12-31T00:00:00Z')) }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gaston_Dubosc"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Muriel_Mayette-Holtz"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chems_Dahmani"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Genevi\u00e8ve_Sorya"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Colette_Marchand"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Th\u00e9r\u00e8se_Dorny"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/\u00c9lodie_Navarre"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jacqueline_Duc"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fr\u00e9d\u00e9ric_Duvall\u00e8s"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Marcel_Vibert"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pierre_Nay"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Andr\u00e9_Lefaur"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Madeleine_Milhaud"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Julien_Rassam"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mehdi_Belhaj_Kacem"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Yves_Brainville"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Greg_Lansky"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Farid_Chopel"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Raymonde_Guyot"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Suzanne_Dalbert"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Henry_Krauss"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alain_Noury"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/G\u00e9rard_S\u00e9ty"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Andr\u00e9_Fouch\u00e9"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/\u00c9lisabeth_Depardieu"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Roxane_Duran"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pierre_Meyrand"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Philippe_Janvier_(actor)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rolla_Norman"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Henri_Cogan"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jean_Bradin"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jean-Jacques_Delbo"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jean_Kemm"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Judy_Minx"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Yvonne_de_Bray"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Raymond_Souplex"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alice_Tissot"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/G\u00e9rard_Rinaldi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Thomy_Bourdelle"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Robert_Le_Vigan"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jean-Louis_Richard"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Henri_Attal"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pierre_Palau"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Virginie_D\u00e9jazet"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pierre_G\u00e9rald"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pierre_Etchepare"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alexis_Conran"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alysson_Paradis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Henri_\u00c9ti\u00e9vant"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jean-Pierre_Bernard"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jules_Moy"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jim_G\u00e9rald"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mado_Maurin"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Melvil_Poupaud"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lecatte-Folleville"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jacques_Seiler"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Maurice_Dorl\u00e9ac"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Madeleine_Robinson"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fabienne_Fabr\u00e8ges"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dominique_Davray"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rapha\u00ebl_Fejt\u00f6"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jean-Claude_Michel"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nicole_Calfan"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sophie_Lothaire"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jacques_Th\u00e9bault"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fran\u00e7ois_Chaumette"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Yolande_Laffon"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Henri_Garat"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gilberte_G\u00e9niat"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nadine_Alari"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Georges_Tr\u00e9ville"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Awa_Ly"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Caroline_Tillette"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Louis-Fran\u00e7ois_Ribi\u00e9"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ren\u00e9e_Faure"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Emmanuelle_Laborit"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/St\u00e9phane_Freiss"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/L\u00e9o_Campion"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jean_Desailly"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jean-Pierre_Lorit"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sophie_Guillemin"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ellen_Parker_(actress)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Colette_Darfeuil"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Claude_Faraldo"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lucien_Blondeau"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Charles_de_La_Buissi\u00e8re"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Marcel_L\u00e9vesque"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Valentine_Tessier"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Catherine_Benguigui"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Joseph_Malerba"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Christian_Vadim"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lyne_Chardonnet"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hubert_Deschamps"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jean-Daniel_Cadinot"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ary_Abittan"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Popeck"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/R\u00e9gis_Laspal\u00e8s"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Charles_le_Bargy"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jean-Baptiste_Nicolet"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Germaine_Michel"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Medi_Sadoun"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jacques_Fran\u00e7ois"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Christa_Theret"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pierre_Boulanger"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Marguerite_Moreno"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gr\u00e9gory_Fitoussi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bernard_Tiphaine"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Samir_Guesmi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Michael_Lonsdale"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bob\u00e8che_(clown)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nicolas_Bataille"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Claire_Guyot"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Raymonde_Allain"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Micheline_Dax"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mich\u00e8le_Philippe"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nicolas_Duvauchelle"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Claudine_Dupuis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jean_Daurand"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Paul_Colline"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Marcelle_Chantal"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Arlette_Poirier"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Armelle"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pierre_Cl\u00e9menti"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Coralie_Trinh_Thi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Andrea_Habay"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Roger_Vincent"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Henri_Valbel"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/\u00c9douard_Baer"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lucie_Jeanne"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Marianne_Denicourt"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Zabou_Breitman"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jacques_Fabbri"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Thibault_Vin\u00e7on"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/No\u00e9mie_Lvovsky"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Stacia_Napierkowska"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Olivier_de_Fun\u00e8s"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pascale_Petit_(actress)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jane_Marken"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jacques_Tarride"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nikolai_Kinski"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Simon_de_La_Brosse"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Guy_Marchand"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Noom_Diawara"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Max_Dalban"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Madeleine_Renaud"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Paul_Frankeur"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rivers_Cadet"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ren\u00e9_Dary"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jackie_Sardou"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Marcel_Vall\u00e9e"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jacques_Balutin"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/St\u00e9phane_Ferrara"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Louis-Ars\u00e8ne_Delaunay"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jean_Coquelin"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jacques_Charby"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jo_Peignot"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Laure_Marsac"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Paule_Andral"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Serge_Sauvion"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Louis_Hurtaut_Dancourt"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jean_T\u00e9merson"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bleuette_Bernon"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Julia_Channel"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ellen_Andr\u00e9e"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sophie_Mounicot"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jos\u00e9phine_Jobert"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rebecca_Lord"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Xavier_G\u00e9lin"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Estelle_Skornik"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jean_Worms"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/L\u00e9once_Cargue"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nicolas_Vaude"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/C\u00e9cile_Cassel"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Maurice_Risch"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Angelique_Morgan"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Delphine_Forest"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jean_Martinelli"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Paris", "surface form": "Paris"}, {"URI": "http://dbpedia.org/resource/1950", "surface form": "1950"}], "relations": [{"URI": "http://dbpedia.org/ontology/artist", "surface form": "actors"}, {"URI": "http://dbpedia.org/ontology/birthPlace", "surface form": "born"}]}, {"id": "70", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Which movies star both Liz Taylor and Richard Burton?", "keywords": "movies, star, Liz Taylor, Richard Burton?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/starring> <http://dbpedia.org/resource/Elizabeth_Taylor> ; <http://dbpedia.org/ontology/starring> <http://dbpedia.org/resource/Richard_Burton> }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Taming_of_the_Shrew_(1967_film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hammersmith_Is_Out"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Divorce_His,_Divorce_Hers"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_V.I.P.s_(film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Boom!_(film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Sandpiper"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Under_Milk_Wood_(1972_film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Comedians_(1967_film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cleopatra_(1963_film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Doctor_Faustus_(1967_film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Who's_Afraid_of_Virginia_Woolf%3F_(film)"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Liz:_The_Elizabeth_Taylor_Story", "surface form": "Liz Taylor"}, {"URI": "http://dbpedia.org/resource/Richard_Burton", "surface form": "Richard Burton"}], "relations": [{"URI": "http://dbpedia.org/ontology/film", "surface form": "movies"}, {"URI": "http://dbpedia.org/property/name", "surface form": "star"}]}, {"id": "71", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Give me all Australian nonprofit organizations.", "keywords": "nonprofit organization, Australia"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/type> <http://dbpedia.org/resource/Nonprofit_organization> { ?uri <http://dbpedia.org/ontology/locationCountry> <http://dbpedia.org/resource/Australia> } UNION { ?uri <http://dbpedia.org/ontology/location> ?x . ?x <http://dbpedia.org/ontology/country> <http://dbpedia.org/resource/Australia> } }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/YourView"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Australia", "surface form": "Australian nonprofit organizations"}, {"URI": "http://dbpedia.org/resource/Master_of_Nonprofit_Organizations", "surface form": "Australian nonprofit organizations"}], "relations": [{"URI": "http://dbpedia.org/ontology/country", "surface form": ""}]}, {"id": "72", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Which pope succeeded John Paul II?", "keywords": "pope, succeed, John Paul II"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Pope_John_Paul_II> <http://dbpedia.org/property/successor> ?uri }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pope_Benedict_XVI"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Ii", "surface form": "II"}, {"URI": "http://dbpedia.org/resource/John_Paul", "surface form": "John Paul"}], "relations": [{"URI": "http://dbpedia.org/property/popeElected", "surface form": "pope"}, {"URI": "http://dbpedia.org/ontology/successor", "surface form": "succeeded"}]}, {"id": "73", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Give me all ESA astronauts.", "keywords": "ESA astronauts"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Astronaut> ; <http://dbpedia.org/property/type> <http://dbpedia.org/resource/European_Space_Agency> }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dirk_Frimout"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/European_Free_Trade_Association_Surveillance_Authority", "surface form": "ESA"}], "relations": [{"URI": "http://dbpedia.org/ontology/countryWithFirstAstronaut", "surface form": "astronauts"}]}, {"id": "74", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Who was president of Pakistan in 1978?", "keywords": "president, Pakistan, 1978"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/title> <http://dbpedia.org/resource/President_of_Pakistan> ; <http://dbpedia.org/property/years> 1978 }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Muhammad_Zia-ul-Haq"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Pakistan", "surface form": "Pakistan"}, {"URI": "http://dbpedia.org/resource/1978", "surface form": "1978"}], "relations": [{"URI": "http://dbpedia.org/ontology/president", "surface form": "president"}]}, {"id": "75", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Who is the owner of Rolls-Royce?", "keywords": "Rolls-Royce, owner"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Rolls-Royce_Motors> <http://dbpedia.org/ontology/owner> ?uri }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vickers_plc"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Volkswagen_Group"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Rolls-Royce", "surface form": "Rolls-Royce"}], "relations": [{"URI": "http://dbpedia.org/ontology/owner", "surface form": "owner"}]}, {"id": "76", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "How many museums does Paris have?", "keywords": "how many, museum, Paris"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Museum> ; <http://dbpedia.org/ontology/location> <http://dbpedia.org/resource/Paris> }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mus\u00e9e_de_l'Homme"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/M\u00e9morial_de_la_Shoah"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mus\u00e9e_national_Gustave_Moreau"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cent_Quatre"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Grand_Palais"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Free_Art_and_Technology_Lab"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jardin_des_Plantes"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mus\u00e9e_d'Art_Moderne_de_la_Ville_de_Paris"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mus\u00e9e_d\u2019histoire_de_la_m\u00e9decine"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bridgeman_Art_Library"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mus\u00e9e_des_Arts_Forains"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Carnavalet_Museum"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mus\u00e9e_Marmottan_Monet"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Museum_of_Natural_History_(France)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Galerie_de_pal\u00e9ontologie_et_d'anatomie_compar\u00e9e"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mus\u00e9e_du_Luxembourg"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mus\u00e9e_du_Vin"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mus\u00e9e_Rodin"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Paris_Sewer_Museum"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cit\u00e9_de_l'\u00e9conomie_et_de_la_monnaie"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Carpenters_Workshop_Gallery"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Museums_in_Aalborg", "surface form": "museums"}, {"URI": "http://dbpedia.org/resource/Paris", "surface form": "Paris"}], "relations": []}, {"id": "77", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Where was JFK assassinated?", "keywords": "JFK, assassinated"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/John_F._Kennedy> <http://dbpedia.org/ontology/deathPlace> ?uri }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Parkland_Memorial_Hospital"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dallas"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/John_F._Kennedy_International_Airport", "surface form": "JFK"}, {"URI": "http://dbpedia.org/resource/Assassinated_Catholic_priests_in_Guatemala", "surface form": "Assassinated"}], "relations": []}, {"id": "78", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Give me all federal chancellors of Germany.", "keywords": "Germany, federal chancellors"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Person> { ?uri <http://dbpedia.org/ontology/office> \"Chancellor of Germany\" } UNION { ?uri <http://dbpedia.org/property/office> <http://dbpedia.org/resource/Chancellor_of_Germany> } }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Konrad_Adenauer"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Helmut_Kohl"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Philipp_Scheidemann"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chlodwig,_Prince_of_Hohenlohe-Schillingsf\u00fcrst"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Helmut_Schmidt"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Otto_von_Bismarck"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Leo_von_Caprivi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Angela_Merkel"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gerhard_Schr\u00f6der"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Willy_Brandt"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ludwig_Erhard"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Friedrich_Ebert"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kurt_Georg_Kiesinger"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Germany", "surface form": "Germany"}], "relations": [{"URI": "http://dbpedia.org/ontology/federalState", "surface form": "federal chancellors"}]}, {"id": "79", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Show me everyone who was born on Halloween.", "keywords": "person, born on, Halloween"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Person> { ?uri <http://dbpedia.org/ontology/birthDate> ?date } UNION { ?uri <http://dbpedia.org/property/birthDate> ?date } <http://dbpedia.org/resource/Halloween> <http://dbpedia.org/property/date> ?date }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Aaron_Osmond"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Halloween", "surface form": "Halloween"}], "relations": [{"URI": "http://dbpedia.org/ontology/show", "surface form": "show"}, {"URI": "http://dbpedia.org/ontology/birthPlace", "surface form": "born"}]}, {"id": "80", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Which beer originated in Ireland?", "keywords": "beer, originated, Ireland"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/type> <http://dbpedia.org/resource/Beer> ; <http://dbpedia.org/ontology/origin> <http://dbpedia.org/resource/Beer_in_Ireland> }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Guinness"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Ireland", "surface form": "Ireland"}], "relations": [{"URI": "http://dbpedia.org/ontology/party", "surface form": "beer"}, {"URI": "http://dbpedia.org/ontology/engineer", "surface form": "originated"}]}, {"id": "81", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "To which countries does the Himalayan mountain system extend?", "keywords": "Himalayan mountain system, extend, country"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Himalayas> <http://dbpedia.org/ontology/country> ?uri }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"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/Himalayan", "surface form": "Himalayan mountain"}], "relations": [{"URI": "http://dbpedia.org/ontology/border", "surface form": "extend"}]}, {"id": "82", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Which actors were born in Germany?", "keywords": "actor, born, Germany"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Actor> { ?uri <http://dbpedia.org/ontology/birthPlace> <http://dbpedia.org/resource/Germany> } UNION { ?uri <http://dbpedia.org/ontology/birthPlace> ?place . ?place <http://dbpedia.org/ontology/country> <http://dbpedia.org/resource/Germany> } }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Susan_Wayland"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Karin_Schubert"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gordon_Hopkirk"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Adeline_Hayden_Coffin"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Norman_Wooland"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dru_Berrymore"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Freddy_Dalton"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kelly_Trump"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Thom_Barron"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Annette_Schwarz"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Michaela_Schaffrath"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lily_Kann"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Amy_Ried"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Yves_Beneyton"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rena_Niehaus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Harry_S._Morgan"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Anna_Nova"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Shyla_Jennings"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Briana_Banks"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hal_Rockland"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lena_Nitro"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Shimon_Schwarzschild"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Subaru_Kimura"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Katja_Kassin"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Krista_Lane"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vince_Rockland"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Janine_Chang"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Logan_McCree"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Claude_France"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Frederick_William_Matthiessen"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Till_Kraemer"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Anja_Juliette_Laval"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Julie_K._Smith"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Shy_Love"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tyra_Misoux"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ellen_Pollock"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Germany", "surface form": "Germany"}], "relations": [{"URI": "http://dbpedia.org/ontology/award", "surface form": "actors"}, {"URI": "http://dbpedia.org/ontology/birthPlace", "surface form": "born"}]}, {"id": "83", "answertype": "number", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "How much carbs does peanut butter have?", "keywords": "how much, carbs, peanut butter"}], "query": {"sparql": "SELECT DISTINCT ?carbs WHERE { <http://dbpedia.org/resource/Peanut_butter> <http://dbpedia.org/property/carbs> ?carbs }"}, "answers": [{"head": {"vars": ["c"]}, "results": {"bindings": [{"c": {"type": "literal", "value": "20.0"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Carby", "surface form": "carbs"}, {"URI": "http://dbpedia.org/resource/Peanut_butter", "surface form": "peanut butter"}], "relations": []}, {"id": "84", "answertype": "resource", "aggregation": true, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Who produced the most films?", "keywords": "film, produced, most"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?film <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film> . ?film <http://dbpedia.org/ontology/producer> ?uri . } ORDER BY DESC(COUNT(?film)) OFFSET 0 LIMIT 1"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Adolph_Zukor"}}]}}], "entities": [], "relations": [{"URI": "http://dbpedia.org/ontology/wineProduced", "surface form": "produced"}, {"URI": "http://dbpedia.org/ontology/numberOfFilms", "surface form": "films"}]}, {"id": "85", "answertype": "number", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "How many employees does Google have?", "keywords": "Google, employees"}], "query": {"sparql": "SELECT DISTINCT ?num WHERE { <http://dbpedia.org/resource/Google> <http://dbpedia.org/ontology/numberOfEmployees> ?num }"}, "answers": [{"head": {"vars": ["c"]}, "results": {"bindings": [{"c": {"type": "literal", "value": "57100"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Google", "surface form": "Google"}], "relations": [{"URI": "http://dbpedia.org/ontology/numberOfEmployees", "surface form": "employees"}]}, {"id": "86", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Give me all actors who were born in Berlin.", "keywords": "actors, born, Berlin"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Actor> ; <http://dbpedia.org/ontology/birthPlace> <http://dbpedia.org/resource/Berlin> }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dru_Berrymore"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tyra_Misoux"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Berlin", "surface form": "Berlin"}], "relations": [{"URI": "http://dbpedia.org/ontology/award", "surface form": "actors"}, {"URI": "http://dbpedia.org/ontology/birthPlace", "surface form": "born"}]}, {"id": "87", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Who created Goofy?", "keywords": "created, Goofy"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Goofy> <http://dbpedia.org/ontology/creator> ?uri }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Frank_Webb_(cartoonist)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Walt_Disney"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Paul_Murry"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Goofy", "surface form": "Goofy"}], "relations": [{"URI": "http://dbpedia.org/ontology/creator", "surface form": "created"}]}, {"id": "88", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Which music albums contain the song Last Christmas?", "keywords": "music album, song, Last Christmas"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?single <http://dbpedia.org/ontology/album> ?uri ; <http://www.w3.org/2000/01/rdf-schema#label> \"Last Christmas\"@en }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Classic_Christmas_(Joe_McElderry_album)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Music_from_the_Edge_of_Heaven"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Disco_Defenders"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Crazy_Frog_Presents_More_Crazy_Hits"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Whigfield_(album)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Christmas_Kisses_(EP)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Whigfield_II"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/It's_Christmas_Time_(album)"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/The_Last_Song_(film)", "surface form": "song Last Christmas"}], "relations": [{"URI": "http://dbpedia.org/ontology/musicComposer", "surface form": "music albums"}]}, {"id": "89", "answertype": "date", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "When was Alberta admitted as province?", "keywords": "Alberta, admit, province"}], "query": {"sparql": "SELECT DISTINCT ?date WHERE { <http://dbpedia.org/resource/Alberta> <http://dbpedia.org/property/admittancedate> ?date }"}, "answers": [{"head": {"vars": ["date"]}, "results": {"bindings": [{"date": {"type": "literal", "value": "1905-09-01"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Alberta", "surface form": "Alberta"}], "relations": [{"URI": "http://dbpedia.org/property/known", "surface form": "admitted"}, {"URI": "http://dbpedia.org/ontology/province", "surface form": "province"}]}, {"id": "90", "answertype": "number", "aggregation": true, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "How many missions does the Soyuz programme have?", "keywords": "how many, mission, Soyuz programme"}], "query": {"sparql": "SELECT (COUNT(DISTINCT ?uri) AS ?c) WHERE { ?uri <http://dbpedia.org/property/programme> <http://dbpedia.org/resource/Soyuz_programme> }"}, "answers": [{"head": {"vars": ["c"]}, "results": {"bindings": [{"c": {"type": "literal", "value": "139"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Soyuz_programme", "surface form": "Soyuz programme"}], "relations": [{"URI": "http://dbpedia.org/ontology/missions", "surface form": "missions"}]}, {"id": "91", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Give me all the TV shows with Neil Patrick Harris.", "keywords": "TV shows, Neil Patrick Harris"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/TelevisionShow> ; <http://dbpedia.org/ontology/starring> <http://dbpedia.org/resource/Neil_Patrick_Harris> }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Capitol_Critters"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Doogie_Howser,_M.D."}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/A_Series_of_Unfortunate_Events_(TV_series)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dr._Horrible's_Sing-Along_Blog"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Robot_Chicken_DC_Comics_Special"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Neil's_Puppet_Dreams"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Snowbound:_The_Jim_and_Jennifer_Stolpa_Story"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/How_I_Met_Your_Mother"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Joan_of_Arc_(miniseries)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Stark_Raving_Mad_(TV_series)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Too_Good_to_Be_True_(film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Christmas_Blessing"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Tv_test_pattern", "surface form": "TV"}, {"URI": "http://dbpedia.org/resource/Neil_Patrick_Harris", "surface form": "Neil Patrick Harris"}], "relations": [{"URI": "http://dbpedia.org/ontology/place", "surface form": "shows"}]}, {"id": "92", "answertype": "date", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "When were the Hells Angels founded?", "keywords": "Hells Angels, founded"}], "query": {"sparql": "SELECT DISTINCT ?date WHERE { <http://dbpedia.org/resource/Hells_Angels> <http://dbpedia.org/property/founded> ?date }"}, "answers": [{"head": {"vars": ["date"]}, "results": {"bindings": [{"date": {"type": "literal", "value": "1948-03-17"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Hells_Angels", "surface form": "Hells Angels"}], "relations": [{"URI": "http://dbpedia.org/property/founded", "surface form": "founded"}]}, {"id": "93", "answertype": "number", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "What is the net income of Apple?", "keywords": "net income, Apple"}], "query": {"sparql": "SELECT DISTINCT ?ni WHERE { <http://dbpedia.org/resource/Apple_Inc.> <http://dbpedia.org/ontology/netIncome> ?ni }"}, "answers": [{"head": {"vars": ["c"]}, "results": {"bindings": [{"c": {"type": "literal", "value": "5.3394E10"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Apple_Inc.", "surface form": "Apple"}], "relations": [{"URI": "http://dbpedia.org/ontology/successor", "surface form": "income"}]}, {"id": "94", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Give me all Swedish holidays.", "keywords": "Swedish holidays"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Holiday> ; <http://dbpedia.org/ontology/country> <http://dbpedia.org/resource/Sweden> }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gustavus_Adolphus_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Veterans_Day_(Sweden)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/St._Knut's_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Christmas_tree_plundering"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Sweden", "surface form": "Swedish holidays"}, {"URI": "http://dbpedia.org/resource/Swedish", "surface form": "Swedish holidays"}], "relations": [{"URI": "http://dbpedia.org/ontology/country", "surface form": ""}, {"URI": "http://dbpedia.org/ontology/country", "surface form": ""}]}, {"id": "95", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "In which city was the former Dutch queen Juliana buried?", "keywords": "Dutch queen Juliana, burried, city"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Juliana_of_the_Netherlands> <http://dbpedia.org/property/burialPlace> ?uri . ?uri a <http://dbpedia.org/ontology/Settlement> }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Delft"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Juliana_Maria_of_Brunswick-Wolfenb\u00fcttel", "surface form": "former Dutch queen Juliana"}], "relations": [{"URI": "http://dbpedia.org/ontology/city", "surface form": "city"}, {"URI": "http://dbpedia.org/ontology/flag", "surface form": "buried"}]}, {"id": "96", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "List all the musicals with music by Leonard Bernstein.", "keywords": "musicals, music by, Leonard Bernstein"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Musical> ; <http://dbpedia.org/ontology/musicBy> <http://dbpedia.org/resource/Leonard_Bernstein> }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Wonderful_Town"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Candide_(operetta)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Race_to_Urga"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/1600_Pennsylvania_Avenue_(musical)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/On_the_Town_(musical)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/West_Side_Story"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/A_Party_with_Betty_Comden_and_Adolph_Green"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Side_by_Side_by_Sondheim"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Leonard_Bernstein", "surface form": "Leonard Bernstein"}], "relations": [{"URI": "http://dbpedia.org/ontology/show", "surface form": "musicals"}, {"URI": "http://dbpedia.org/ontology/musicBy", "surface form": "music"}]}, {"id": "97", "answertype": "number", "aggregation": true, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Give me all companies in the advertising industry.", "keywords": "company, advertising industry"}], "query": {"sparql": "SELECT (COUNT(DISTINCT ?uri) AS ?c) WHERE { ?uri a <http://dbpedia.org/ontology/Company> { ?uri <http://dbpedia.org/ontology/industry> <http://dbpedia.org/resource/Advertising> } UNION { ?uri <http://dbpedia.org/ontology/industry> ?industry FILTER regex(?industry, \"advertising\", \"i\") } }"}, "answers": [{"head": {"vars": ["c"]}, "results": {"bindings": [{"c": {"type": "literal", "value": "307"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Companies_listed_on_the_New_York_Stock_Exchange_(J)", "surface form": "companies"}], "relations": [{"URI": "http://dbpedia.org/property/industry", "surface form": "advertising industry"}]}, {"id": "98", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "What is the largest metropolitan area in Washington state?", "keywords": "largest metropolitan area, Washington state"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Washington_(state)> <http://dbpedia.org/property/largestmetro> ?uri }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Seattle-Tacoma-Olympia,_WA_CSA"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Metropolitan_area", "surface form": "largest metropolitan area"}, {"URI": "http://dbpedia.org/resource/Washington", "surface form": "Washington"}], "relations": []}, {"id": "99", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Who killed John Lennon?", "keywords": "killed, John Lennon"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Person> ; <http://dbpedia.org/property/conviction> <http://dbpedia.org/resource/Death_of_John_Lennon> }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mark_David_Chapman"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/John_Lennon", "surface form": "John Lennon"}], "relations": [{"URI": "http://dbpedia.org/ontology/billed", "surface form": "killed"}]}, {"id": "100", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Which writers studied in Istanbul?", "keywords": "writers, studied, Istanbul"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Writer> { ?uri <http://dbpedia.org/ontology/almaMater> ?x } UNION { ?uri <http://dbpedia.org/ontology/education> ?x } { ?x <http://dbpedia.org/ontology/city> <http://dbpedia.org/resource/Istanbul> } UNION { ?x <http://dbpedia.org/property/city> <http://dbpedia.org/resource/Istanbul> } }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Niyazi_Berkes"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Birhan_Keskin"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hikmet_Temel_Akarsu"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Leyla_Erbil"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bahadir_Kaleagasi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ahmet_Hamdi_Tanp\u0131nar"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/\u015eaban_\u00d6zdemir"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mehmet_Ya\u015f\u0131n"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/\u0130oanna_Ku\u00e7uradi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/H\u0131fz\u0131_Topuz"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/P\u0131nar_Selek"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Halide_Edib_Ad\u0131var"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Istanbul", "surface form": "Istanbul"}], "relations": [{"URI": "http://dbpedia.org/ontology/writer", "surface form": "writers"}, {"URI": "http://dbpedia.org/ontology/office", "surface form": "studied"}]}, {"id": "101", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Give me all Australian metalcore bands.", "keywords": "Australian, metalcore bands"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Band> ; <http://dbpedia.org/ontology/genre> <http://dbpedia.org/resource/Metalcore> { ?uri <http://dbpedia.org/ontology/hometown> <http://dbpedia.org/resource/Australia> } UNION { ?uri <http://dbpedia.org/ontology/hometown> ?h . ?h <http://dbpedia.org/ontology/country> <http://dbpedia.org/resource/Australia> } }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Capture_the_Crown"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Wish_for_Wings"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Shoreside"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/50_Lions"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Parkway_Drive"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Carpathian_(band)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/House_vs._Hurricane"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mindsnare"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Northlane"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/I_Killed_the_Prom_Queen"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Double_Dragon_(band)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Confession_(band)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Our_Last_Enemy"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/In_Hearts_Wake"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Amity_Affliction"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/For_All_Eternity_(band)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Deez_Nuts_(band)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Azure_Falls"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/A_Breach_of_Silence"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Buried_in_Verona"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Embodiment_12:14"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Australia", "surface form": "Australian metalcore bands"}, {"URI": "http://dbpedia.org/resource/List_of_metalcore_bands", "surface form": "Australian metalcore bands"}], "relations": [{"URI": "http://dbpedia.org/ontology/country", "surface form": ""}]}, {"id": "102", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Which countries adopted the Euro?", "keywords": "country, adopt, Euro"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Country> { ?uri <http://dbpedia.org/ontology/currency> <http://dbpedia.org/resource/Euro> } UNION { ?uri <http://dbpedia.org/property/currencyCode> \"EUR\"@en } }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Basque_Country_(greater_region)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Serbia_and_Montenegro"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kingdom_of_Wallachia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Autonomous_Province_of_Kosovo_and_Metohija"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Baltic_states"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/French_Southern_and_Antarctic_Lands"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Twente"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Greece"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Netherlands"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Spain"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/\u00celes_des_Saintes"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Saint_Barth\u00e9lemy"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Akrotiri_and_Dhekelia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/European_Union"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Republic_of_Saugeais"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Republic_of_Ireland"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/French_overseas_departments_and_territories"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Macedonia_(region)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Austria"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Luxembourg"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/San_Marino"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cyprus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ad\u00e9lie_Land"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Germany"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Luhansk_People's_Republic"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lithuania"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Andorra"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Slovenia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Saint_Pierre_and_Miquelon"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tromelin_Island"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kerguelen_Islands"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Latvia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vatican_City"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Finland"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/France"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/United_Nations_Interim_Administration_Mission_in_Kosovo"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Third_Hellenic_Republic"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kosovo"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Monaco"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Montenegro"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Estonia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Portugal"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Collectivity_of_Saint_Martin"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Belgium"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/French_Fifth_Republic"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Countries_of_the_United_Kingdom", "surface form": "countries"}, {"URI": "http://dbpedia.org/resource/Euro", "surface form": "Euro"}], "relations": []}, {"id": "103", "answertype": "resource", "aggregation": false, "onlydbo": false, "hybrid": false, "question": [{"language": "en", "string": "Give me all types of eating disorders.", "keywords": "types, eating disorders"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/class/yago/WikicatEatingDisorders> }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ingestive_behaviors"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Inedia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Body_Attitudes_Questionnaire"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Eating_Disorder_Inventory"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Eating_Attitudes_Test"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Wintergirls"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Trichophagia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pica_(disorder)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Avoidant/restrictive_food_intake_disorder"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Feeding_disorder"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bulimia_nervosa"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Phagophobia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Body_Attitudes_Test"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Minnesota_Eating_Behavior_Survey"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rumination_syndrome"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Eating_Disorder_Diagnostic_Scale"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Anorexia_(symptom)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Food_issue"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Refeeding_syndrome"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Polyphagia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pro-ana"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Night_eating_syndrome"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fat_Phobia_Scale"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Defensive_vomiting"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Binge_Eating_Scale"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Muscle_dysmorphia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fat_Chance_(Lesl\u00e9a_Newman_novel)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dermatophagia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pagophagy"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Eating_mucus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Purging_disorder"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mirror_box"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Anorexia_nervosa_(differential_diagnoses)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Binge_eating"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/List_of_phobias"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Russell's_sign"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Food_Addicts_Anonymous"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Disordered_eating"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bulimia_Test-Revised"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Drunkorexia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cognitive_behavioral_treatment_of_eating_disorders"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Diabulimia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Eating_Disorder_Examination_Interview"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Anorexia_mirabilis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Three-Factor_Eating_Questionnaire"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Body_Gossip"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Eating_recovery"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Anorectic_Behavior_Observation_Scale"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Exercise_bulimia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hypergymnasia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/SCOFF_questionnaire"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pagophagia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Food_addiction"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Killing_Aurora"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Primary_polydipsia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Binge_eating_disorder"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Eating_disorder_not_otherwise_specified"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Orthorexia_nervosa"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Opsophagos"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Wannarexia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Food_Addicts_in_Recovery_Anonymous"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nocturnal_sleep-related_eating_disorder"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Other_specified_feeding_or_eating_disorder"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Disorders_of_consciousness", "surface form": "disorders"}], "relations": [{"URI": "http://dbpedia.org/property/type", "surface form": "types"}, {"URI": "http://dbpedia.org/ontology/house", "surface form": "eating"}]}, {"id": "104", "answertype": "boolean", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Was Marc Chagall a jew?", "keywords": "Marc Chagall, jew"}], "query": {"sparql": "ASK WHERE { <http://dbpedia.org/resource/Marc_Chagall> <http://dbpedia.org/property/ethnicity> \"Jewish\"@en }"}, "answers": [{"head": {}, "results": {}, "boolean": false}], "entities": [{"URI": "http://dbpedia.org/resource/Marc_Chagall", "surface form": "Marc Chagall"}], "relations": [{"URI": "http://dbpedia.org/ontology/outflow", "surface form": "jew"}]}, {"id": "105", "answertype": "number", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "What was Brazil's lowest rank in the FIFA World Ranking?", "keywords": "Brazil, lowest rank, FIFA World Ranking"}], "query": {"sparql": "SELECT DISTINCT ?n WHERE { <http://dbpedia.org/resource/Brazil_national_football_team> <http://dbpedia.org/property/fifaMin> ?n }"}, "answers": [{"head": {"vars": ["c"]}, "results": {"bindings": [{"c": {"type": "literal", "value": "22"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Brazil", "surface form": "Brazil"}, {"URI": "http://dbpedia.org/resource/RANK", "surface form": " lowest rank"}, {"URI": "http://dbpedia.org/resource/FIFA", "surface form": "FIFA"}, {"URI": "http://dbpedia.org/resource/WBSC_World_Rankings", "surface form": "World Ranking"}], "relations": []}, {"id": "106", "answertype": "number", "aggregation": true, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "How many films did Leonardo DiCaprio star in?", "keywords": "film, star, Leonardo DiCaprio"}], "query": {"sparql": "SELECT (COUNT(DISTINCT ?uri) AS ?c) WHERE { ?uri a <http://dbpedia.org/ontology/Film> ; <http://dbpedia.org/ontology/starring> <http://dbpedia.org/resource/Leonardo_DiCaprio> }"}, "answers": [{"head": {"vars": ["c"]}, "results": {"bindings": [{"c": {"type": "literal", "value": "27"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Leonardo_DiCaprio", "surface form": "Leonardo DiCaprio star"}], "relations": [{"URI": "http://dbpedia.org/ontology/numberOfFilms", "surface form": "films"}]}, {"id": "107", "answertype": "boolean", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Was Margaret Thatcher a chemist?", "keywords": "Margaret Thatcher, chemist"}], "query": {"sparql": "ASK WHERE { <http://dbpedia.org/resource/Margaret_Thatcher> <http://dbpedia.org/ontology/profession> <http://dbpedia.org/resource/Chemist> }"}, "answers": [{"head": {}, "results": {}, "boolean": true}], "entities": [{"URI": "http://dbpedia.org/resource/Margaret_Thatcher", "surface form": "Margaret Thatcher"}, {"URI": "http://dbpedia.org/resource/Chemist", "surface form": "chemist"}], "relations": []}, {"id": "108", "answertype": "resource", "aggregation": false, "onlydbo": false, "hybrid": false, "question": [{"language": "en", "string": "Which U.S. states are in the same time zone as Utah?", "keywords": "U.S. state, same, time zone, Utah"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Utah> <http://dbpedia.org/property/timezone> ?x . ?uri a <http://dbpedia.org/class/yago/WikicatStatesOfTheUnitedStates> ; <http://dbpedia.org/property/timezone> ?x FILTER ( ?uri != <http://dbpedia.org/resource/Utah> ) }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nebraska"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/New_Mexico"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Illinois"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alabama"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vermont"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Virginia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Minnesota"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kansas"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Missouri"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Wyoming"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Texas"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Connecticut"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Georgia_(U.S._state)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Maryland"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hawaii"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/North_Dakota"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Massachusetts"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kentucky"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Oklahoma"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/South_Dakota"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mississippi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Idaho"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Indiana"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/North_Carolina"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Louisiana"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Delaware"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Arizona"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rhode_Island"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Colorado"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Maine"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Washington_(state)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Florida"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Iowa"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/West_Virginia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/South_Carolina"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pennsylvania"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Wisconsin"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Michigan"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/New_Hampshire"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Montana"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nevada"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tennessee"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alaska"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Arkansas"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/New_Jersey"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Usk,_Washington", "surface form": "US"}, {"URI": "http://dbpedia.org/resource/Utah", "surface form": "Utah"}], "relations": [{"URI": "http://dbpedia.org/property/timezone", "surface form": "time zone"}]}, {"id": "109", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Give me all books written by Danielle Steel.", "keywords": "book, written, Danielle Steel"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Book> ; <http://dbpedia.org/ontology/author> <http://dbpedia.org/resource/Danielle_Steel> }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Thurston_House_(novel)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Message_from_Nam"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Daddy_(novel)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Toxic_Bachelors"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_House_(novel)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Five_Days_in_Paris"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/H.R.H._(novel)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Passion's_Promise"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Honor_Thyself"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/A_Good_Woman_(novel)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Amazing_Grace_(novel)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Betrayal_(Steel_novel)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/A_Perfect_Stranger"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fine_Things"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Matters_of_the_Heart_(novel)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Zoya_(novel)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Miracle_(novel)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Big_Girl_(novel)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Coming_Out_(novel)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Silent_Honor"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Accident_(novel)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Season_of_Passion"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ransom_(Steel_novel)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mixed_Blessings_(novel)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jewels_(novel)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Southern_Lights_(novel)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Wanderlust_(Steel_novel)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Full_Circle_(novel)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/One_Day_at_a_Time_(novel)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sunset_in_St._Tropez"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Echoes_(Steel_novel)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Gift_(Steel_novel)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Crossings_(Steel_novel)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/No_Greater_Love_(novel)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Impossible_(novel)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Second_Chance_(Steel_novel)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Special_Delivery_(novel)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Family_Album_(novel)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Now_and_Forever_(novel)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rogue_(novel)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hotel_Vendome_(novel)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Friends_Forever_(novel)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Safe_Harbour_(novel)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kaleidoscope_(novel)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sisters_(Steel_novel)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bungalow_2"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Family_Ties_(novel)"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Danielle_Steel", "surface form": "Danielle Steel"}], "relations": [{"URI": "http://dbpedia.org/ontology/volume", "surface form": "books"}, {"URI": "http://dbpedia.org/ontology/writer", "surface form": "written"}]}, {"id": "110", "answertype": "resource", "aggregation": true, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Which country has the most official languages?", "keywords": "country, official language, most"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Country> . ?uri <http://dbpedia.org/property/officialLanguages> ?language . } ORDER BY DESC(COUNT(?language)) OFFSET 0 LIMIT 1"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sark"}}]}}], "entities": [], "relations": [{"URI": "http://dbpedia.org/ontology/country", "surface form": "country"}, {"URI": "http://dbpedia.org/ontology/incumbent", "surface form": "official languages"}]}, {"id": "111", "answertype": "number", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "What is the total amount of men and women serving in the FDNY?", "keywords": "total amount, men, women, serve, FDNY"}], "query": {"sparql": "SELECT DISTINCT ?num WHERE { <http://dbpedia.org/resource/New_York_City_Fire_Department> <http://dbpedia.org/property/employees> ?num }"}, "answers": [{"head": {"vars": ["c"]}, "results": {"bindings": [{"c": {"type": "literal", "value": "15629"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/FDNY_Racing", "surface form": "FDNY"}], "relations": [{"URI": "http://dbpedia.org/ontology/populationTotal", "surface form": "total"}, {"URI": "http://dbpedia.org/ontology/authority", "surface form": "men"}, {"URI": "http://dbpedia.org/ontology/person", "surface form": "women"}, {"URI": "http://dbpedia.org/ontology/service", "surface form": "serving"}]}, {"id": "112", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Which actor played Chewbacca?", "keywords": "actor, play, Chewbacca"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Chewbacca> <http://dbpedia.org/ontology/portrayer> ?uri }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Joonas_Suotamo"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Peter_Mayhew"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Chewbacca", "surface form": "Chewbacca"}], "relations": [{"URI": "http://dbpedia.org/ontology/artist", "surface form": "actor"}, {"URI": "http://dbpedia.org/ontology/portrayer", "surface form": "played"}]}, {"id": "113", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Give me all libraries established earlier than 1400.", "keywords": "libraries, established, earlier than 1400"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Library> ; <http://dbpedia.org/property/established> ?year FILTER ( ?year < 1400 ) }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nanpura_Parsi_Library"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Austrian_National_Library"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Merton_College_Library"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Library_of_Pergamum"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mother_Irene_Gill_Memorial_Library"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Library_of_Ashurbanipal"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cambridge_University_Library"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_and_University_Library_of_the_Republika_Srpska"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Library_of_Alexandria"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Almeida_Garrett_Library"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Heidelberg_University_Library"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Maughan_Library"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Libraries_in_Brighton_and_Hove", "surface form": "libraries"}, {"URI": "http://dbpedia.org/resource/1400", "surface form": "1400"}], "relations": [{"URI": "http://dbpedia.org/ontology/established", "surface form": "established"}, {"URI": "http://dbpedia.org/ontology/date", "surface form": "when"}]}, {"id": "114", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Which programming languages were influenced by Perl?", "keywords": "programming languages, influenced by, Perl"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/ProgrammingLanguage> { ?uri <http://dbpedia.org/ontology/influencedBy> <http://dbpedia.org/resource/Perl> } UNION { <http://dbpedia.org/resource/Perl> <http://dbpedia.org/ontology/influenced> ?uri } }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Perl_Data_Language"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/ECMAScript"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Falcon_(programming_language)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Julia_(programming_language)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/BeanShell"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/LPC_(programming_language)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/JavaScript"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CoffeeScript"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/PHP"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ruby_(programming_language)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Perl_6"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/P*"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Qore_(programming_language)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Python_(programming_language)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Judoscript"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Groovy_(programming_language)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/MIVA_Script"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/PowerShell"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Perl", "surface form": "Perl"}], "relations": [{"URI": "http://dbpedia.org/property/programmingLanguage", "surface form": "programming languages"}, {"URI": "http://dbpedia.org/ontology/influenced", "surface form": "influenced"}]}, {"id": "115", "answertype": "resource", "aggregation": false, "onlydbo": false, "hybrid": false, "question": [{"language": "en", "string": "In which U.S. state is Mount McKinley located?", "keywords": "U.S. state, located, Mount McKinley"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Mount_McKinley> dbo:wikiPageRedirects ?x . ?x <http://dbpedia.org/ontology/locatedInArea> ?uri. ?uri rdf:type yago:WikicatStatesOfTheUnitedStates }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alaska"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/United_States", "surface form": "US"}, {"URI": "http://dbpedia.org/resource/Denali", "surface form": "Mount McKinley"}], "relations": [{"URI": "http://dbpedia.org/ontology/locatedInArea", "surface form": "located"}]}, {"id": "116", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "What airlines are part of the SkyTeam alliance?", "keywords": "airlines, part of, SkyTeam alliance"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Airline> { ?uri <http://dbpedia.org/ontology/alliance> <http://dbpedia.org/resource/SkyTeam> } UNION { ?uri <http://dbpedia.org/ontology/Alliance> <http://dbpedia.org/resource/SkyTeam> } }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CityJet"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Shanghai_Airlines"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alitalia_CityLiner"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/KLM_Cityhopper"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Aeroflot"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Shuttle_America"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Brit_Air"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Aerom\u00e9xico_Travel"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/R\u00e9gional_Compagnie_A\u00e9rienne_Europ\u00e9enne"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Continental_Airlines"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alitalia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Aerol\u00edneas_Argentinas"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Middle_East_Airlines"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Continental_Express"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Delta_Air_Lines"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chautauqua_Airlines"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Aerom\u00e9xico"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Air_Europa"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/RegionsAir"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Air_France"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Endeavor_Air"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/HOP!"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Freedom_Airlines"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Delta_Express"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/China_Airlines"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Continental_Micronesia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/KLM"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mesaba_Airlines"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/SkyWest_Airlines"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Saudia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Czech_Airlines"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vietnam_Airlines"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Compass_Airlines_(North_America)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Delta_Connection"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/China_Southern_Airlines"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Comair"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Austral_L\u00edneas_A\u00e9reas"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/China_Eastern_Airlines"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kenya_Airways"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Korean_Air"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Atlantic_Southeast_Airlines"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alitalia-Linee_Aeree_Italiane"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Continental_Connection"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Donavia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Aerom\u00e9xico_Connect"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mandarin_Airlines"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Garuda_Indonesia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/C.A.I._First"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Northwest_Airlines"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Song_(airline)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/TAROM"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/C.A.I._Second"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/XiamenAir"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/ExpressJet"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/SkyTeam", "surface form": "SkyTeam alliance"}], "relations": [{"URI": "http://dbpedia.org/ontology/icaoAirlineCode", "surface form": "airlines"}]}, {"id": "117", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Which ships were called after Benjamin Franklin?", "keywords": "ship, called after, Benjamin Franklin"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/shipNamesake> <http://dbpedia.org/resource/Benjamin_Franklin> }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/HMS_Canopus_(1798)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/USS_Franklin_(1795)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CMA_CGM_Benjamin_Franklin"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/USS_Franklin_(1815)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ben_Franklin_(PX-15)"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Benjamin_Franklin", "surface form": "Benjamin Franklin"}], "relations": [{"URI": "http://dbpedia.org/ontology/shipBeam", "surface form": "ships"}, {"URI": "http://dbpedia.org/property/nickname", "surface form": "called"}]}, {"id": "118", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Give me all Methodist politicians.", "keywords": "politician, Methodist"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Politician> ; <http://dbpedia.org/ontology/religion> <http://dbpedia.org/resource/Methodism> }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Charles_S._Chestnut,_IV"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/William_H._Murray"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Arthur_Henderson"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/John_Hunt_(Australian_politician)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Frank_O'Bannon"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Canaan_Banana"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/William_Henry_Piddington"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/George_W._Bush"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Roy_J._Turner"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Don_Samuelson"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/John_E._Peterson"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bob_Barr"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Thomas_Ferens"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/James_F._Hinkle"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/George_N._Conrad"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kingsley_Rasanayagam"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/William_L._Hungate"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cat_Smith"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fielding_L._Wright"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/L._M._Shaw"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/J._Powell_Royall"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Beverly_A._Davis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/William_L._Andrews"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Robert_E._Smylie"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Syngman_Rhee"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Roy_Bennett_(politician)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Frank_R._Gooding"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lewis_Charles_Levin"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Robert_O._Crockett"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Richie_Robb"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/John_Brodhead_(New_Hampshire_politician)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nathaniel_B._Early"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/John_Karefa-Smart"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/G._Walter_Mapp"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nga_Kor_Ming"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tom_Bolack"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Johnston_Murray"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/William_H._Jeffreys,_Jr."}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/John_Ingram_(politician)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Henry_D._Hatfield"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Edmund_Taylor_(New_Zealand_politician)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/A._N._R._Robinson"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/J._Millard_Tawes"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Edwin_L._Mechem"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/George_E._Allen,_Sr."}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Thomas_Rowe"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ernest_McFarland"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Wong_Ho_Leng"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bob_Taft"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/John_Cann"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ernest_Lundeen"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/William_Claflin"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hugh_Mason"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/D._W._Davis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/John_Marshall_Butler"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/J._Frank_Sergent"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Leon_C._Phillips"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ted_Weill"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mendel_Jackson_Davis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Carte_Goodwin"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Harry_Nice"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Robert_Bradford_(Northern_Irish_politician)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Samuel_T._Montague"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Paul_Fannin"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Boris_Trajkovski"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alfred_Hunt_(politician)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Barzilla_W._Clark"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Charles_N._Haskell"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/William_L._Moore_(Virginia_politician)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ngeh_Koo_Ham"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Leonard_B._Jordan"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Campbell_C._Hyatt"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Charles_S._Pendleton"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/William_A._Pile"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Robert_L._Williams"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/John_C._Sanborn"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Milton_Margai"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/James_B._A._Robertson"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vincent_Massey"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/William_Shepherd_Allen"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Willis_Benson_Machen"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/John_L._Bates"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Willis_Smith"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/W._Willard_Wirtz"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/William_Traylen"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Robert_J._Mrazek"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Chicago_Politicians", "surface form": "Methodist politicians"}], "relations": []}, {"id": "119", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "What other books have been written by the author of The Fault in Our Stars?", "keywords": "books, author, The Fault in Our Stars"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> SELECT ?books WHERE { ?books dbo:author <http://dbpedia.org/resource/John_Green_(author)> }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Will_Grayson,_Will_Grayson"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/An_Abundance_of_Katherines"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Looking_for_Alaska"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Fault_in_Our_Stars"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Let_It_Snow:_Three_Holiday_Romances"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Paper_Towns"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/The_Fault_in_Our_Stars", "surface form": "The Fault in Our Stars"}], "relations": [{"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"}]}, {"id": "120", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "What is the highest mountain?", "keywords": "mountain, highest"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Mountain> ; <http://dbpedia.org/ontology/elevation> ?elevation } ORDER BY DESC(?elevation) OFFSET 0 LIMIT 1"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kings_Peak_(Idaho)"}}]}}], "entities": [], "relations": [{"URI": "http://dbpedia.org/ontology/highestMountain", "surface form": "highest mountain"}]}, {"id": "121", "answertype": "resource", "aggregation": true, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Which poet wrote the most books?", "keywords": "poet, most, books"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/occupation> <http://dbpedia.org/resource/Poet> . ?x <http://dbpedia.org/ontology/author> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Book> . } ORDER BY DESC(COUNT(?x)) OFFSET 0 LIMIT 1"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jules_Verne"}}]}}], "entities": [], "relations": [{"URI": "http://dbpedia.org/ontology/author", "surface form": "poet"}, {"URI": "http://dbpedia.org/ontology/composer", "surface form": "wrote"}, {"URI": "http://dbpedia.org/ontology/volume", "surface form": "books"}]}, {"id": "122", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Which programming languages influenced Javascript?", "keywords": "programming languages, influenced, Javascript"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/ProgrammingLanguage> ; <http://dbpedia.org/ontology/influenced> <http://dbpedia.org/resource/JavaScript> }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Self_(programming_language)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Python_(programming_language)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/C_(programming_language)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Java_(programming_language)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lua_(programming_language)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Perl"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Scheme_(programming_language)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lisp_(programming_language)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/HyperTalk"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Syntax_(programming_languages)", "surface form": "programming languages languages influenced Javascript"}], "relations": [{"URI": "http://dbpedia.org/property/programming", "surface form": "programming"}]}, {"id": "123", "answertype": "resource", "aggregation": true, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Which musician wrote the most books?", "keywords": "musician, wrote, the most books"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/occupation> <http://dbpedia.org/resource/Musician> . ?x <http://dbpedia.org/ontology/author> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Book> . } ORDER BY DESC(COUNT(?x)) OFFSET 0 LIMIT 1"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jo_Nesb\u00f8"}}]}}], "entities": [], "relations": [{"URI": "http://dbpedia.org/ontology/show", "surface form": "musician"}, {"URI": "http://dbpedia.org/ontology/composer", "surface form": "wrote"}, {"URI": "http://dbpedia.org/ontology/volume", "surface form": "books"}]}, {"id": "124", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Which films starring Clint Eastwood did he direct himself?", "keywords": "film, starring, direct, Clint Eastwood"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/director> <http://dbpedia.org/resource/Clint_Eastwood> ; <http://dbpedia.org/ontology/starring> <http://dbpedia.org/resource/Clint_Eastwood> }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Play_Misty_for_Me"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Blood_Work_(film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Space_Cowboys"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Gauntlet_(film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Million_Dollar_Baby"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/True_Crime_(1999_film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bronco_Billy"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Magnum_Force"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/High_Plains_Drifter"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gran_Torino"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Clint_Eastwood", "surface form": "Clint Eastwood"}], "relations": [{"URI": "http://dbpedia.org/ontology/numberOfFilms", "surface form": "films"}, {"URI": "http://dbpedia.org/ontology/starring", "surface form": "starring"}, {"URI": "http://dbpedia.org/ontology/director", "surface form": "direct"}]}, {"id": "125", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Which software has been developed by organizations founded in California?", "keywords": "organization, founded, California, develop, software"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Software> . ?company a <http://dbpedia.org/ontology/Company> . ?uri <http://dbpedia.org/ontology/developer> ?company . ?company <http://dbpedia.org/ontology/foundationPlace> <http://dbpedia.org/resource/California> }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Autodesk_Animator"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Space_Spartans"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/HK2_DI_Kernel"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Oracle_Application_Express"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sun_Java_System_Communications_Suite"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Oracle_VM_Server_for_x86"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Java_Advanced_Imaging"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Oracle_NoSQL_Database"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Frogs_and_Flies"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Star_Wars:_Battlefront_(2004_video_game)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Call_of_Duty:_Ghosts"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Solaris_Containers"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Autodesk_Mudbox"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Armor_Battle"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/MySQL_Workbench"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Borland_Turbo_C"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Adventures_of_Elmo_in_Grouchland_(video_game)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Triple_Action"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/MapGuide_Open_Source"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Borland_C++"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Zero_(game_engine)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Java_API_for_XML_Web_Services"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/OpenStep"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cooliris_(plugin)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Turbo_Vision"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/HijackThis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Call_of_Duty_4:_Modern_Warfare"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/FireChat"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pretty_Good_Privacy"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Communist_Mutants_from_Space"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/MyTown_(video_game)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Call_of_Duty_(video_game)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/AutoCAD_Architecture"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/OpenJDK"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/IW_engine"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/OpenSolaris"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Army_Men:_RTS"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Project_Metro"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Norton_Internet_Security"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/HotSpot"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Call_of_Duty:_Infinite_Warfare"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Oracle_Linux"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sharp_Shot"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Norton_Personal_Firewall"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/MySQL_Enterprise"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Midnight_Star:_Renegade"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tron:_Deadly_Discs"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Project_Grizzly_(software)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Escape_from_the_Mindmaster"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Autodesk_Gameware"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Norton_AntiBot"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Packet_Tracer"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ghost_(software)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Oracle_Enterprise_Manager_Ops_Center"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/JBuilder"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CodeWright"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/DevPartner"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Autodesk_SketchBook_Pro"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Borland_Kylix"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Call_of_Duty:_Modern_Warfare_3"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Call_of_Duty:_Modern_Warfare_2"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Call_of_Duty_2"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Baseball_(Intellivision_video_game)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Autodesk_Revit"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tropico_2:_Pirate_Cove"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Webcam_Social_Shopper"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hover_Force"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Oracle_Developer_Studio"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Party_Mix_(video_game)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Full_Spectrum_Warrior"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Open_Message_Queue"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/B-17_Bomber_(video_game)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Oracle_iPlanet_Web_Server"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Norton_Security"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Skiing_(Intellivision_video_game)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/TeraText"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Oracle_WebLogic_Server"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dark_Reign_2"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tuxedo_(software)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Battlezone_II:_Combat_Commander"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Autodesk_Alias"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hot_Wheels_Stunt_Track_Driver"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sub_Hunt"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/GlassFish"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Oracle_Discoverer"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Autodesk_123D"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Autodesk_MotionBuilder"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Eudora_OSE"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cisco_Systems_VPN_Client"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tcov"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Turbo_Delphi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Project_Phobos"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Linear_Tape_File_System"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Astrosmash"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/MyISAM"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/MySQL"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Oracle_BI_Publisher"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Norton_Zone"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hyperion_Planning"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Libtiff"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Autodesk_Softimage"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Oracle_iPlanet_Web_Proxy_Server"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Football_(video_game)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Clam_AntiVirus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Planet_Hot_Wheels"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/NASL_Soccer"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cisco_IOS"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/VirtualBox"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Silk_Central"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Java_Development_Kit"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Basketball_(1980_video_game)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Oracle_Database"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mercenaries:_Playground_of_Destruction"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Destroy_All_Humans!"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nashorn_(JavaScript_engine)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CAD_Overlay"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Autodesk_Inventor"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sword_of_Saros"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Star_Strike"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Panzer_General_III:_Scorched_Earth"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Eudora_(email_client)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Oracle_SQL_Developer"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Norton_Utilities"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sea_Battle"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Star_Wars:_The_Clone_Wars_(2002_video_game)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/IRIX"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Dark_Knight_(video_game)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Full_Spectrum_Warrior:_Ten_Hammers"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Trend_Micro_Internet_Security"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mercenaries_2:_World_in_Flames"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Graal_(compiler)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Saboteur"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Oracle_Complex_MRO"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Star_Wars:_Battlefront_II"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Motocross_(video_game)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kynapse"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cisco_Network_Registrar"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/IRIS_GL"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Boxing_(1981_video_game)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fsn_(file_manager)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Java_API_for_RESTful_Web_Services"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Buzz!_Junior:_Robo_Jam"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Turbo_C++"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/ObjectVision"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Movable_Type"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/MySQL_Cluster"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Oracle_Spatial_and_Graph"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Phaser_Patrol"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/PeopleTools"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Lord_of_the_Rings:_Conquest"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Project_Shoal_(software)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/PcAnywhere"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/VisualVM"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Scaleform_GFx"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Snafu_(video_game)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/JavaTest_harness"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Trade_Empires"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/JDeveloper"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Imperialism_II:_Age_of_Exploration"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Star_Wars:_The_Best_of_PC"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/GrandView_(software)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Oracle_Enterprise_Pack_for_Eclipse"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dr._Safety"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Imperialism_(video_game)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jinitiator"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Oracle_Grid_Engine"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/TopLink"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/REX_OS"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Buzz_Bombers"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Midnight_Star_(video_game)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Java_Desktop_System"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/OpenGrok"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Oracle_Business_Intelligence_Suite_Enterprise_Edition"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tron:_Solar_Sailer"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Navisworks"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Java_(software_platform)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dragonstomper"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Destroy_All_Humans!_2"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Payara_Server"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Q&A_(Symantec)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/OpenOffice.org"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/TimesTen"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Oracle_Multimedia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Turbo_Assembler"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Oracle_VDI"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Oracle_TopLink"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Norton_Power_Eraser"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Oracle_Media_Objects"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Snort_(software)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Space_Hawk"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kool-Aid_Man_(video_game)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/QuickBooks"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Voldemort_(distributed_data_store)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Project_Jersey"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Shark!_Shark!"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Oracle_VM_Server_for_SPARC"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Night_Stalker_(video_game)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Oracle_Application_Server"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/WebScaleSQL"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/AutoCAD"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Berkeley_DB"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bomb_Squad_(video_game)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Norton_Family"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Immunet"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Horse_Racing_(video_game)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cisco_IOS_XE"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/StarOffice"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Borland_Together"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Symantec_Online_Backup"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Auto_Racing_(video_game)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dbx_(debugger)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Open64"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Network_Security_Services"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Oracle_Data_Mining"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Intellivision_World_Series_Baseball"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cisco_Security_Monitoring,_Analysis,_and_Response_System"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Software_Publishing_Corporation", "surface form": "software"}, {"URI": "http://dbpedia.org/resource/California", "surface form": "California"}], "relations": [{"URI": "http://dbpedia.org/property/developer", "surface form": "developed"}, {"URI": "http://dbpedia.org/ontology/agency", "surface form": "organizations"}, {"URI": "http://dbpedia.org/ontology/foundingYear", "surface form": "founded"}]}, {"id": "126", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Which instruments does Cat Stevens play?", "keywords": "Cat Stevens, instrument"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Cat_Stevens> <http://dbpedia.org/ontology/instrument> ?uri }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Baldwin_Piano_Company"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gibson_ES-335"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mandolin"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mellotron"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Epiphone_Casino"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fender_Telecaster"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gibson_Everly_Brothers_Flattop"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rhodes_piano"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gibson_J-200"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ovation_Guitar_Company"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Cat_Stevens", "surface form": "Cat Stevens"}], "relations": [{"URI": "http://dbpedia.org/property/instrument", "surface form": "instruments"}, {"URI": "http://dbpedia.org/ontology/starring", "surface form": "play"}]}, {"id": "127", "answertype": "number", "aggregation": true, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "How many airlines are members of the Star Alliance?", "keywords": "how many, airlines, member, Star Alliance"}], "query": {"sparql": "SELECT (COUNT(DISTINCT ?uri) AS ?c) WHERE { ?uri a <http://dbpedia.org/ontology/Airline> ; <http://dbpedia.org/ontology/alliance> <http://dbpedia.org/resource/Star_Alliance> }"}, "answers": [{"head": {"vars": ["c"]}, "results": {"bindings": [{"c": {"type": "literal", "value": "97"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Star_Alliance", "surface form": "Star Alliance"}], "relations": [{"URI": "http://dbpedia.org/ontology/icaoAirlineCode", "surface form": "airlines"}, {"URI": "http://dbpedia.org/property/members", "surface form": "members"}]}, {"id": "128", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Give me all actors called Baldwin.", "keywords": "actors, called, Baldwin"}], "query": {"sparql": "PREFIX foaf:<http://xmlns.com/foaf/0.1/> SELECT DISTINCT ?uri WHERE { ?uri foaf:surname 'Baldwin'@en . { ?uri <http://dbpedia.org/ontology/occupation> <http://dbpedia.org/resource/Actor> . } UNION { ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Actor> . } }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Judith_Baldwin"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Peter_Baldwin_(actor)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Talon_(actor)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Greg_Baldwin"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Robert_Baldwin_(actor)"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Baldwin", "surface form": "Baldwin"}], "relations": [{"URI": "http://dbpedia.org/ontology/background", "surface form": "actors"}, {"URI": "http://dbpedia.org/property/nickname", "surface form": "called"}]}, {"id": "129", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Who wrote The Hunger Games?", "keywords": "wrote, Hunger Games"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/The_Hunger_Games> <http://dbpedia.org/property/author> ?uri }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Suzanne_Collins"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/The_Hunger_Games", "surface form": "The Hunger Games"}], "relations": [{"URI": "http://dbpedia.org/property/author", "surface form": "wrote"}]}, {"id": "130", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "For which label did Elvis record his first album?", "keywords": "Elvis, first, album, label"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?x rdf:type dbo:Album ; dbo:artist res:Elvis_Presley ; dbo:releaseDate ?y ; dbo:recordLabel ?uri } ORDER BY ASC(?y) OFFSET 0 LIMIT 1"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pickwick_Records"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Elvis_(1973_album)", "surface form": "Elvis"}], "relations": [{"URI": "http://dbpedia.org/property/label", "surface form": "label"}, {"URI": "http://dbpedia.org/ontology/recordLabel", "surface form": "record"}, {"URI": "http://dbpedia.org/ontology/album", "surface form": "album"}]}, {"id": "131", "answertype": "boolean", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Is Christian Bale starring in Batman Begins?", "keywords": "Christian Bale, starring, Batman Begins"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> ASK WHERE { res:Batman_Begins dbo:starring res:Christian_Bale }"}, "answers": [{"head": {}, "results": {}, "boolean": false}], "entities": [{"URI": "http://dbpedia.org/resource/Christian_Bale", "surface form": "Christian Bale"}, {"URI": "http://dbpedia.org/resource/Batman_Begins", "surface form": "Batman Begins"}], "relations": [{"URI": "http://dbpedia.org/ontology/starring", "surface form": "starring"}]}, {"id": "132", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Where is the residence of the prime minister of Spain?", "keywords": "prime minister, Spain, residence"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Prime_Minister_of_Spain> <http://dbpedia.org/property/residence> ?uri }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Palacio_de_la_Moncloa"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Spain", "surface form": "Spain"}], "relations": [{"URI": "http://dbpedia.org/ontology/residence", "surface form": "residence"}, {"URI": "http://dbpedia.org/ontology/primeMinister", "surface form": "prime minister"}]}, {"id": "133", "answertype": "resource", "aggregation": true, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Which actor was casted in the most movies?", "keywords": "actor, casted, most movies"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Actor> . ?f <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film> . ?f <http://dbpedia.org/ontology/starring> ?uri . } ORDER BY DESC(COUNT(DISTINCT(?f))) OFFSET 0 LIMIT 1"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Andy_Lau"}}]}}], "entities": [], "relations": [{"URI": "http://dbpedia.org/ontology/artist", "surface form": "actor"}, {"URI": "http://dbpedia.org/ontology/class", "surface form": "casted"}, {"URI": "http://dbpedia.org/ontology/film", "surface form": "movies"}]}, {"id": "134", "answertype": "resource", "aggregation": true, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Which countries have more than two official languages?", "keywords": "country, official language, more than two"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Country> ; <http://dbpedia.org/ontology/officialLanguage> ?language } GROUP BY ?uri HAVING ( COUNT(?language) > 2 )"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Basque_Country_(greater_region)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ladonia_(micronation)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Subanon_people"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rwanda"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Torres_Strait_Islands"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Comoros"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Danish_Realm"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Eurasian_Economic_Union"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Switzerland"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Zanzibar"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vojvodina"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Northern_Mariana_Islands"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Equatorial_Guinea"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Union_of_Sovereign_States"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/New_Zealand"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cura\u00e7ao"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Singapore"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Allied_Military_Government_for_Occupied_Territories"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Luxembourg"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Somaliland"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Transnistria"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Anjouan"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Moh\u00e9li"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Organization_for_Security_and_Co-operation_in_Europe"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Seychelles"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Malta"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Republika_Srpska"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vanuatu"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Grande_Comore"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Principality_of_Hutt_River"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Belgium"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Countries_of_the_United_Kingdom", "surface form": "countries"}], "relations": [{"URI": "http://dbpedia.org/property/languages", "surface form": "official languages"}]}, {"id": "135", "answertype": "resource", "aggregation": true, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Which countries have more than ten caves?", "keywords": "country, cave, more than ten"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Country> . ?cave a <http://dbpedia.org/ontology/Cave> { ?cave <http://dbpedia.org/ontology/location> ?uri } UNION { ?cave <http://dbpedia.org/ontology/location> ?loc . ?loc <http://dbpedia.org/ontology/country> ?uri } } GROUP BY ?uri HAVING ( COUNT(?cave) > 10 )"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/India"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Germany"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gibraltar"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Greece"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Spain"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Turkey"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/France"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/United_States"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Australia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Italy"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Republic_of_Ireland"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jamaica"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mexico"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/South_Africa"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Portugal"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/United_Kingdom"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Countries_of_the_United_Kingdom", "surface form": "countries"}, {"URI": "http://dbpedia.org/resource/Caves_of_Aggtelek_Karst_and_Slovak_Karst", "surface form": "caves"}], "relations": []}, {"id": "136", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Show me all songs from Bruce Springsteen released between 1980 and 1990.", "keywords": "song, Bruce Springsteen, release, between 1980 and 1990"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Song> . ?uri <http://dbpedia.org/ontology/artist> <http://dbpedia.org/resource/Bruce_Springsteen> . ?uri <http://dbpedia.org/ontology/releaseDate> ?date . FILTER (?date >= '1980-01-01'^^xsd:date && ?date <= '1990-12-31'^^xsd:date) }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Downbound_Train"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Johnny_99_(song)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/No_Surrender_(song)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/For_You_(Bruce_Springsteen_song)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Darlington_County_(song)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bobby_Jean"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Working_on_the_Highway"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Bruce_Springsteen", "surface form": "Bruce Springsteen"}, {"URI": "http://dbpedia.org/resource/1980", "surface form": "1980"}, {"URI": "http://dbpedia.org/resource/1990", "surface form": "1990"}], "relations": [{"URI": "http://dbpedia.org/ontology/show", "surface form": "show"}, {"URI": "http://dbpedia.org/ontology/anthem", "surface form": "songs"}, {"URI": "http://dbpedia.org/property/released", "surface form": "released"}]}, {"id": "137", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Which television shows were created by John Cleese?", "keywords": "television show, create, John Cleese"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/TelevisionShow> ; <http://dbpedia.org/ontology/creator> <http://dbpedia.org/resource/John_Cleese> }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Monty_Python's_Personal_Best"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Monty_Python's_Flying_Circus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fawlty_Towers"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Parrot_Sketch_Not_Included_\u2013_20_Years_of_Monty_Python"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Python_Night_\u2013_30_Years_of_Monty_Python"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/At_Last_the_1948_Show"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Monty_Python_Live_at_Aspen"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/John_Cleese", "surface form": "John Cleese"}], "relations": [{"URI": "http://dbpedia.org/ontology/televisionSeries", "surface form": "television shows"}, {"URI": "http://dbpedia.org/ontology/author", "surface form": "created"}]}, {"id": "138", "answertype": "date", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "When did Latvia join the EU?", "keywords": "Latvia, join, EU"}], "query": {"sparql": "SELECT DISTINCT ?date WHERE { <http://dbpedia.org/resource/Latvia> <http://dbpedia.org/property/accessioneudate> ?date }"}, "answers": [{"head": {"vars": ["date"]}, "results": {"bindings": [{"date": {"type": "literal", "value": "2004-05-01"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Basque_language", "surface form": "EU"}, {"URI": "http://dbpedia.org/resource/Join", "surface form": "Latvia join the"}], "relations": [{"URI": "http://dbpedia.org/property/date", "surface form": "when"}]}, {"id": "139", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Which soccer players were born on Malta?", "keywords": "soccer player, born on, Malta"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/SoccerPlayer> ; <http://dbpedia.org/ontology/birthPlace> <http://dbpedia.org/resource/Malta> }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Steve_Bezzina"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Charles_Scerri"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Charles_Azzopardi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mario_Muscat"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Reginald_Cini"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Joe_Cini"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Adrian_Ciantar"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/John_Bonello"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Charles_Micallef"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cleavon_Frendo"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ylenia_Carabott"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nicky_Saliba"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ernest_Barry_(footballer)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lolly_Vella"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Stefan_Sultana"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Edward_Darmanin"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Daniel_Theuma"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Claude_Mattocks"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jesmond_Delia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ian_Azzopardi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Emanuel_Fabri"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dennis_Mizzi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Michael_Cutajar"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rachel_Cuschieri"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cornelius_Hogan"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Robbie_Buttigieg"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Saviour_Darmanin"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jeffrey_Chetcuti"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Antoine_Zahra_(footballer,_born_1981)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/David_Carabott"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Edmond_Agius"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Charlie_Williams_(soccer)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Joseph_John_Aquilina"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jonathan_Caruana"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ivan_Zammit"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Adrian_Mifsud"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Antoine_Zahra_(footballer,_born_1977)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jimmy_Briffa"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Josef_Mifsud"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Salvinu_Schembri"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Raymond_Xuereb"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Edward_Herrera"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alex_Muscat"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/George_Mallia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kenneth_Scicluna"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gareth_Sciberras"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/John_Cutbush_(footballer)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Roderick_Bajada"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/David_Cluett"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mario_Farrugia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Luke_Dimech"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Aaron_Xuereb"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Stephen_Wellman"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dyson_Falzon"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Andr\u00e9_Schembri"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Scott_Chircop"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Stefan_Giglio"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Eric_Schembri"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Clayton_Failla"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Eddie_Dwane"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Terence_Scerri"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Terence_Vella"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Charles_Muscat"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sean_Sullivan_(footballer)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Andrew_Cohen_(footballer)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Martin_Gregory"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bjorn_Kristensen_(footballer,_born_1993)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lino_Galea"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/John_McNeill_(footballer)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jean_Pierre_Mifsud_Triganza"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ian_Ciantar"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Reuben_Gauci"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Darren_Debono"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kevin_Sammut"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/William_Camenzuli"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Malcolm_Licari"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Denis_Cauchi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vincent_Borg_Bonaci"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Roderick_Briffa"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jean_Paul_Farrugia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rebecca_D'Agostino"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Carlo_Mamo"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ian_Stevens_(footballer)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Simon_Tortell"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Justin_Haber"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Andrei_Agius"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Martina_Borg"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Brian_Strutt"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hubert_Suda"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Giovanni_Galea"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Emma_Xuerreb"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/David_Camilleri"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pierre_Aquilina"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dorianne_Theuma"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Trevor_Cilia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nicole_Buttigieg"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Paul_Tisdale"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Brian_Said"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ryan_Fenech"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jonathan_Magri_Overend"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Paul_Fenech_(footballer)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kristian_Laferla"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Steve_Borg"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Noel_Turner"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Paul_Zammit_(footballer)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Adrian_Pulis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Massimo_Grima"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Martin_Scicluna"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Edward_Azzopardi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jonathan_Holland_(footballer)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jesmond_Zerafa"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Michael_Degiorgio"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Michael_Galea"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gilbert_Agius"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Michael_Mifsud"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/American_professional_soccer_players_abroad", "surface form": "soccer players"}, {"URI": "http://dbpedia.org/resource/Malta", "surface form": "Malta"}], "relations": [{"URI": "http://dbpedia.org/ontology/birthPlace", "surface form": "born"}]}, {"id": "140", "answertype": "number", "aggregation": true, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "How many politicians graduated from Columbia University?", "keywords": "how many, politicians, graduated, Columbia University"}], "query": {"sparql": "SELECT (COUNT(DISTINCT ?uri) AS ?c) WHERE { ?uri <http://dbpedia.org/ontology/profession> <http://dbpedia.org/resource/Politician> ; <http://dbpedia.org/ontology/almaMater> <http://dbpedia.org/resource/Columbia_University> }"}, "answers": [{"head": {"vars": ["c"]}, "results": {"bindings": [{"c": {"type": "literal", "value": "12"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Politicians_of_The_Wire", "surface form": "politicians"}, {"URI": "http://dbpedia.org/resource/Columbia_University", "surface form": "Columbia University"}], "relations": [{"URI": "http://dbpedia.org/ontology/effectiveRadiatedPower", "surface form": "graduated"}]}, {"id": "141", "answertype": "date", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Give me the birthdays of all actors of the television show Charmed.", "keywords": "television show, Charmed, actor, birthday"}], "query": {"sparql": "SELECT DISTINCT ?date WHERE { <http://dbpedia.org/resource/Charmed> <http://dbpedia.org/ontology/starring> ?actor . ?actor <http://dbpedia.org/ontology/birthDate> ?date }"}, "answers": [{"head": {"vars": ["date"]}, "results": {"bindings": [{"date": {"type": "literal", "value": "1973-9-5"}}, {"date": {"type": "literal", "value": "1971-4-12"}}, {"date": {"type": "literal", "value": "1971-01-26"}}, {"date": {"type": "literal", "value": "1968-07-27"}}, {"date": {"type": "literal", "value": "1985-11-30"}}, {"date": {"type": "literal", "value": "1973-6-15"}}, {"date": {"type": "literal", "value": "1971-1-26"}}, {"date": {"type": "literal", "value": "1969-2-1"}}, {"date": {"type": "literal", "value": "1968-7-27"}}, {"date": {"type": "literal", "value": "1973-09-05"}}, {"date": {"type": "literal", "value": "1973-06-15"}}, {"date": {"type": "literal", "value": "1969-02-01"}}, {"date": {"type": "literal", "value": "1980-5-19"}}, {"date": {"type": "literal", "value": "1971-04-12"}}, {"date": {"type": "literal", "value": "1973-12-03"}}, {"date": {"type": "literal", "value": "1973-12-3"}}, {"date": {"type": "literal", "value": "1980-05-19"}}, {"date": {"type": "literal", "value": "1972-12-19"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Charmed", "surface form": "television show Charmed"}], "relations": [{"URI": "http://dbpedia.org/ontology/birthDate", "surface form": "birthdays"}, {"URI": "http://dbpedia.org/ontology/background", "surface form": "actors"}]}, {"id": "142", "answertype": "number", "aggregation": true, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Which telecommunications organizations are located in Belgium?", "keywords": "telecommunications organization, located, Belgium"}], "query": {"sparql": "SELECT (COUNT(DISTINCT ?uri) AS ?c) WHERE { ?uri a <http://dbpedia.org/ontology/Organisation> { ?uri <http://dbpedia.org/ontology/industry> <http://dbpedia.org/resource/Telecommunication> } UNION { ?uri <http://dbpedia.org/property/industry> ?industry FILTER regex(?industry, \"Telecommunications\") } { ?uri <http://dbpedia.org/ontology/location> <http://dbpedia.org/resource/Belgium> } UNION { ?uri <http://dbpedia.org/property/locationCountry> \"Belgium\"@en } }"}, "answers": [{"head": {"vars": ["c"]}, "results": {"bindings": [{"c": {"type": "literal", "value": "7"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Complex_organizations", "surface form": "telecommunications organizations"}, {"URI": "http://dbpedia.org/resource/Belgium", "surface form": "Belgium"}], "relations": [{"URI": "http://dbpedia.org/ontology/place", "surface form": "located"}]}, {"id": "143", "answertype": "resource", "aggregation": false, "onlydbo": false, "hybrid": false, "question": [{"language": "en", "string": "Give me a list of all lakes in Denmark.", "keywords": "lake, Denmark"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { { ?uri a <http://dbpedia.org/ontology/Lake> ; <http://dbpedia.org/ontology/country> <http://dbpedia.org/resource/Denmark> } UNION { ?uri a <http://dbpedia.org/class/yago/LakesOfDenmark> } }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Arres\u00f8"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lake_Bagsv\u00e6rd"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fures\u00f8_(lake)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/B\u00f8lling_Lake"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Lakes,_Copenhagen"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Denmark", "surface form": "Denmark"}], "relations": [{"URI": "http://dbpedia.org/ontology/lake", "surface form": "lakes"}]}, {"id": "144", "answertype": "number", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "How many children does Eddie Murphy have?", "keywords": "children, Eddie Murphy"}], "query": {"sparql": "SELECT DISTINCT ?n WHERE { <http://dbpedia.org/resource/Eddie_Murphy> <http://dbpedia.org/property/children> ?n }"}, "answers": [{"head": {"vars": ["c"]}, "results": {"bindings": [{"c": {"type": "literal", "value": "9"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Eddie_Murphy", "surface form": "Eddie Murphy"}], "relations": [{"URI": "http://dbpedia.org/property/children", "surface form": "children"}]}, {"id": "145", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Show me all English Gothic buildings in Kent.", "keywords": "English Gothic buildings, Kent"}], "query": {"sparql": "SELECT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Building> ; <http://dbpedia.org/ontology/architecturalStyle> <http://dbpedia.org/resource/English_Gothic_architecture> ; <http://dbpedia.org/ontology/location> <http://dbpedia.org/resource/Kent> }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/St_Mary's_Church,_Capel-le-Ferne"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/St_Martin_of_Tours_Church,_Detling"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/St_Mary's_Church,_Eastwell"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Church_of_St_Thomas_\u00e0_Becket,_Capel"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/St_Mary's_Church,_Higham"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/St_Mary's_Church,_Luddenham"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/St_James'_Church,_Cooling"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Canterbury_Cathedral"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/St_Clement's_Church,_Knowlton"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/St_Mary's_and_All_Saints_Church,_Boxley"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/St_Mary's_Church,_Burham"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/St._Mary's_Church,_Hadlow"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/All_Saints_Church,_Waldershare"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/St_Bartholomew's_Church,_Goodnestone"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/St_Peter's_Church,_Sandwich"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Church_of_St_Mary_the_Virgin,_Fordwich"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/St_Peter's_Church,_Swingfield"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/St_Mary_Magdalene_Church,_Stockbury"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/English_Gothic_architecture", "surface form": "English Gothic buildings in Kent"}], "relations": [{"URI": "http://dbpedia.org/ontology/show", "surface form": "show"}]}, {"id": "146", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Who is the manager of Real Madrid?", "keywords": "manager, Real Madrid"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Real_Madrid_C.F.> <http://dbpedia.org/ontology/manager> ?uri }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Zinedine_Zidane"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Real_Madrid_C.F.", "surface form": "Real Madrid"}], "relations": [{"URI": "http://dbpedia.org/ontology/manager", "surface form": "manager"}]}, {"id": "147", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "In which countries can you pay using the West African CFA franc?", "keywords": "countries, pay, West African CFA franc"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/currency> <http://dbpedia.org/resource/West_African_CFA_franc> }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/French_Upper_Volta"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Colony_of_Niger"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Benin"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Burkina_Faso"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Colonial_Mauritania"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Niger"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Guinea-Bissau"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Republic_of_Upper_Volta"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Economic_Community_of_West_African_States"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/People's_Republic_of_Benin"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/French_Dahomey"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ivory_Coast"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Senegal"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mali"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Republic_of_Dahomey"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Countries_of_the_United_Kingdom", "surface form": "countries"}, {"URI": "http://dbpedia.org/resource/CFA", "surface form": "CFA"}, {"URI": "http://dbpedia.org/resource/West_African_CFA_franc", "surface form": "West African franc"}], "relations": [{"URI": "http://dbpedia.org/ontology/currency", "surface form": "pay"}]}, {"id": "148", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Which holidays are celebrated around the world?", "keywords": "holidays, celebrated, world"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Holiday }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Sorry_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Independence_Day_(Grenada)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Reed_Arts_Week"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/En_prison"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Day_to_Praise"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mbaba_belo_selambar"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Crime_Victims'_Rights_Week"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Epulum_Jovis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Thinla_(month)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gurpurb"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Twelfth_Night_(holiday)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Khordad"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/White_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Aban_(month)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Public_holidays_in_Haiti"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bundle_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Harh"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/International_Students'_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Independence_Day_(Israel)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fat_Thursday"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kanamara_Matsuri"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kumquat_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lent"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pakistan_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sovereignty_Day_(Slovenia)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Konsertti_Tampereella"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/International_Pixel-Stained_Technopeasant_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Family_Day_(Canada)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Peter_and_the_Magic_Egg"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Line-crossing_ceremony"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sussex_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Independence_Day_(Belarus)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/\u010cung\u0101x\u030c"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Subway_party"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ugadi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Twelfth"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Burns_supper"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/World_Cancer_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Martyred_Intellectuals_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lakshmi_Puja"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Panchayati_Raj_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rottela_Panduga"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Saint_George's_Day_in_England"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bara_Din"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/European_Day_of_Remembrance_for_Victims_of_Stalinism_and_Nazism"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Twelve_Days_of_Christmas"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ianuarius"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Falles"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Parintins_Folklore_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Mobility_Awareness_Month"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bathukamma"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Harvest_festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Maritime_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chaula_(month)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Remembrance_days_in_Slovakia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/St_John's_Day_(Estonia)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Yanla_(month)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Panquetzaliztli"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Frimaire"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Reclaiming_Our_Heritage"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Cancer_Survivors_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rotuma_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Statehood_Day_(Croatia)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alexandrian_Rite"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/International_Book_Year"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Commercium"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Willkakuti"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Green_week"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Shemini_Atzeret"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tisha_B'Av"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rosh_Hashanah"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sechsel\u00e4uten"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Texas_Independence_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Teeyan"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Super_Bowl_Sunday"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pok\u00e9mon:_Tenth_Anniversary"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mahavir_Jayanti"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ashwin_(Nepali_calendar)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pan_American_Aviation_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/World_Animal_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Labor_Day_Carnival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Minor_American_Revolution_holidays"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kamada_Ekadashi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Constitution_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Reunification_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Week_anniversary_of_Trujillo_Municipality"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vat_Purnima"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Global_Love_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kason"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Golu"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Drive_Electric_Week"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Birth_of_Bah\u00e1'u'll\u00e1h"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Maryland_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Principal_Holy_Day_(Anglicanism)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Eucharist_in_the_Catholic_Church"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Shraavana"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Prince_K\u016bhi\u014d_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Library_Week"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cuti_bersama"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ludi_Piscatorii"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Marathwada_Liberation_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Presentation_of_Mary"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Haitian_Heritage_Month"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hanuman_Jayanti"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Buhe"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Foundation_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kwanzaa"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pchum_Ben"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cassinga_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pooram"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/World_Chocolate_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/West_Country_Carnival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Godaan_Express"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gion_Matsuri"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/P\u00f3voa_de_Varzim_Holiday"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mohani"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Newark_Days"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Madison_Pride_and_MAGIC_Picnic"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dossabhoy_Muncherji_Raja"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/World_Toilet_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chhapra_Express"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Midsummer_in_New_York_City"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Day_of_Conception"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Walpurgis_Night"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kartik_(Nepali_calendar)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gasparilla_Pirate_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Honeymoon"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/International_Day_of_Non-Violence"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Independence_Day_(Bosnia_and_Herzegovina)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ratha_Saptami"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Anti-Fascist_Struggle_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/PUP_Centennial_Year"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rajab"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tartan_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Neptunalia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/All_Saints'_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Niv\u00f4se"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/World_Health_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Minden_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Liberation_Day_of_Korea"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/June_10th_Movement"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/10_Kislev"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Punctuation_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Recreation_Day_holiday"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Heritage_Open_Days"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nakba_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Zombie_Bike_Ride"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/140th_Year_Anniversary_Celebration_of_the_Emancipation_Proclamation"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Oxfordshire_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nabanna"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Flag_Day_(United_Arab_Emirates)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Oktoberfest_\u2013_La_Crosse,_Wisconsin"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Carnivals_of_Iztapalapa"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Veneralia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sweetest_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Heritage_Day_(South_Africa)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/World_Oral_Health_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Festa_Junina"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Silla_(month)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Yald\u0101_Night"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Auckland_Anniversary_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hueymiccaihuitl"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/\u015amigus-Dyngus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Work_and_Family_Month"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tibb's_Eve"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Day_of_the_German-speaking_Community"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Koningsdag"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Arba'een"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Life_is_a_Big_Holiday_for_Us"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Liberation_Day_(Lebanon)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/\u01e6wayay"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Etzalcualiztli"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Native_American_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Commemoration_(Anglicanism)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mercedonius"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Religious_Freedom_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Je\u00fbne_genevois"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Presentation_of_Jesus_at_the_Temple"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vaccination_Week_In_The_Americas"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lee\u2013Jackson\u2013King_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Memorial_Day_(South_Korea)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Flor\u00e9al"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/1907_in_New_Zealand"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Juneteenth"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Songkran"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Midsummer"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Reich_Harvest_Thanksgiving_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bounty_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hybristica"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tir_(month)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sadar_(festival)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Khrop_khru"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hobo_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Oregon_Bach_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hera_Panchami"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Candlemas"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Georgia_Train_and_Equip_Program"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Day_of_Reconciliation"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Primrose_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tozoztontli"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Public_holidays_in_the_United_Kingdom"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Intersex_Day_of_Remembrance"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sai\u014d_Matsuri"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Unity_Day_(Yemen)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Muharram"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Carmentalia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kandali_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sultan_Yazidis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chaitra_(Nepali_calendar)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Administrative_Professionals'_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Evelio_Javier_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Falgun"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Heroes'_Day_(Kenya)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Evacuation_Day_(New_York)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Limelight_Awards"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Republic_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kwahu_Easter"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Saitopolemos"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/World_Day_to_Combat_Desertification_and_Drought"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Italian_unification"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Aboriginal_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kaula_(month)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/World_Islam_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/World_Book_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Public_Lands_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rang_Panchami"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ludi_Romani"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kumauni_Holi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Initiation"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gelbis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Beverley_Folk_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nativity_of_St_John_the_Baptist"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Feast_of_Our_Lady_of_the_Hens"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Teotleco"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/International_Nurses_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/1999_in_Malaysia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Icelandic_National_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kamehameha_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kartik_Poornima"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pohela_(month)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Party_Foundation_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Baccalaureate_service"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Thevar_Jayanthi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Oak_Apple_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Amordadegan_festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ferragosto"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/1991_in_Malaysia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/1995_in_Malaysia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Memorial_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hody_(Moravia)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Philadelphia_Polish_American_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sajibu_nongma_panba"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/World_Asthma_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rashtriya_Ekta_Diwas"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/International_Museum_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mercuralia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Go_Skateboarding_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/International_Year_of_Biodiversity"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Emperor's_Birthday"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Battle_of_Saragarhi__Day__1"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hinamatsuri"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Paper_Airplane_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Public_holidays_in_Uruguay"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Zamalek_SC_Centennial"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ickey_Shuffle"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tihar_(festival)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/World_Press_Freedom_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Amalaka_Ekadashi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ganesh_Jayanti"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Valla_Sadhya"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Seward's_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Black_History_Month"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/International_Volunteer_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Phool_Walon_Ki_Sair"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dinamulag_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dhanteras"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fiestas_Patrias_(Peru)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Quds_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Asexual_Awareness_Week"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/World_Day_for_Cultural_Diversity_for_Dialogue_and_Development"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Memorial_Day_of_the_Exiles_and_Foibe"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Darwin_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ohi_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Public_holidays_in_Paraguay"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ratcatcher's_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Zaffa"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Coming_of_Age_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/NY_Green_Fest"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Australian_Citizenship_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Christmas_Sunday"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sangkhalok_ceramic_ware"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Cat_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Independence_Day_(Bahrain)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Victory_Day_over_Nazism_in_World_War_II"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Singles'_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/WAY_79"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Christmas_and_holiday_season"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Constitution_Day_(Ukraine)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Royal_Geelong_Show"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Charro_Days"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Translation_of_the_Relics_of_Saint_Nicholas_from_Myra_to_Bari"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ayudha_Puja"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Collar_day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ramadan_(calendar_month)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rabi'_al-awwal"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Handsel_Monday"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Language_Movement_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mangsir"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Entrance_(liturgical)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Federal_holiday"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Higan"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jefferson's_Birthday"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Antigua_Carnival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rito_della_Nivola"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nevada_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Leif_Erikson_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Day_of_the_Sun"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jana_Baha_Dyah_Jatra_(chariot_festival)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/LGBT_History_Month"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Khet_partug"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Feast_of_the_Immaculate_Conception"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/California_Admission_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Courir_de_Mardi_Gras"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Feast_of_Lanterns"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mehr_(month)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hallmark_holiday"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Qatar_National_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Olivia_Spencer_Bower_award"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tuli_(rite)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/World_Water_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Michigan_Technological_University's_Winter_Carnival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Awukudae_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/International_Day_of_Innocent_Children_Victims_of_Aggression"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Patriot_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Health_and_Sports_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Duanwu_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pi_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Inthakin"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Onam"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Child_Abuse_Prevention_Month"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Unification_Day_(Bulgaria)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Day_of_Remembrance_of_the_Victims_of_Political_Repressions"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/12-13_Tammuz"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hakata_Gion_Yamakasa"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fast_of_Nineveh"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chrysotriklinos"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Day_(Cameroon)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Public_holidays_in_Vietnam"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Residential_Drug_Abuse_Program"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/May_3rd_Constitution_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gandhi_Jayanti"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lesser_Festival_(Anglicanism)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/World_Communion_Sunday"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Karthikai_Deepam"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Julotta"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vent\u00f4se"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Light's_Golden_Jubilee"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/International_Mother_Language_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fiesta_Nacional_de_Espa\u00f1a"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Thanksgiving_(Canada)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Motherhood_and_Beauty_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/International_Sweater_Vestival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Science_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Georgia_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Meshir"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/F\u00eate_de_la_Musique"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Sanitation_Day_(Ghana)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/L\u012bnd\u0259i"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sandugo_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Festa_della_Repubblica"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Client's_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Festival_Nacional_de_la_Quenepa"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/High-level_Political_Forum_on_Sustainable_Development"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gargee'an"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Festa_da_Uva"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Saya_(folklore)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Umoja_Karamu"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nunavut_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Samasrayana"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/State_Patty's_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vaikuntha_Chaturdashi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Small_Business_Week"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Shavuot"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Republic_Day_(Niger)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Philippine_Debut"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/International_Holocaust_Remembrance_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/First_National_Government"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pre\u0161eren_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/International_Polar_Bear_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Mexican_Rite"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Corndog_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Orange_Blossom_Carnival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Heroes_Day_(Indonesia)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Coming_Out_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Earth_Day_Sunday"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Freedom_Day_(South_Africa)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cheese_Days"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Tap_Dance_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/World_Hijab_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Miyamairi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Samiljeol"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kanya_Puja"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Festival_of_Lights_(Hawaii)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Helsinki-p\u00e4iv\u00e4"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hanukkah"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Oregon_Centennial"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/International_Tiger_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cow_Harbor_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/World_Red_Cross_and_Red_Crescent_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Hugging_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Autism_Sunday"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Memorial_of_the_Holy_Guardian_Angels"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/World_Scout_Collectors_Meeting"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chinese_New_Year"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Philadelphia_Aurora"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Elgar_Birthplace_Museum"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Machad_Mamangam"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Baby_jumping"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Azores_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Angam_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Columbus_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Coconut_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/UnFreedom_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Festivals_of_P\u00f3voa_de_Varzim"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ashadha"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Holidays_for_Sale"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mid-Pentecost"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Baranger_Studios"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/UN_Russian_Language_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Acid_erosion"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/White_Sunday"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pompa_circensis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/LGBTI_Health_Summit"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/World_Freedom_Day_(United_States)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Apple_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Presidents'_Day_(Botswana)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Opposite_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/International_Anti-Corruption_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Russia_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/World_Compassion_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dhu_al-Qi'dah"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Davao_City_Torotot_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Labor_Thanksgiving_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sam_Collins_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Wray_(month)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/T\u1ebft"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Brumaire"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Bourbon_Heritage_Month"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Yipao"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Independence_Day_of_Republic_of_Moldova"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Friendship_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bal_Diwas"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Seaforth,_Queensland"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/World_Population_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Haitian_Carnival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/In_town,_without_my_car!"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/World_Tuberculosis_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Intersex_Awareness_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Masonic_funerals"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/March_1st_Movement"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sinulog"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/International_Dance_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/International_Translation_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Los_Angeles_Tofu_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Trafalgar_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hari_Merdeka"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Women's_Equality_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Day_of_the_Armed_Forces_of_Azerbaijan"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ballarat_Show"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Evacuation_Day_(Syria)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Parents'_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Magh_(Bengali_calendar)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Volkstrauertag"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Illuminated_procession"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jyeshtha_(month)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/International_Missing_Children's_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Le_Pays_de_la_Sagouine"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Snow_Day/Holiday_Road"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/United_Nations'_International_Day_of_Persons_with_Disabilities"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tirumala_Shanivaralu"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Week_of_Prayer_for_Christian_Unity"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/K\u014dreisai"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Independence_Day_(Djibouti)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Thai_Pongal"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Catandungan_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/African-American_Music_Appreciation_Month"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Victory_Day_(9_May)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Armenian_Genocide_Remembrance_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Public_holidays_in_Guam"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lammas"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Western_Australia_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sunday_within_the_Octave_of_Christmas"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Unity_Day_(United_States)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/September"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Senegal_Music_Awards"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/H\u014dnen_Matsuri"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Defender_of_the_Fatherland_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Boukout"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bon_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Manisola"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Day_(United_Arab_Emirates)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Sanctity_of_Human_Life_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Premio_Lo_Nuestro_2004"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Premio_Lo_Nuestro_2003"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Timkat"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mardi_Gras_in_Mobile,_Alabama"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/International_Day_Against_Homophobia,_Transphobia_and_Biphobia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Odunde_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/International_Day_of_Radiology"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pana_Sankranti"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tycho_Brahe_days"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Qixi_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jamhuri_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Public_Gardens_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Independence_Day_(Pakistan)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pelican_Drop"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Subbotnik"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Feast_of_Saints_Peter_and_Paul"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/2004_in_Malaysia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/1993_in_Malaysia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vente_de_Agosto"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Giubiana"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Primitive_Scottish_Rite"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/German-American_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nostalgia_Night"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Canada_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/World_Food_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/\u00deorl\u00e1ksmessa"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nag_Panchami"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/New_Year's_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Arrhephoria"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dano_(Korean_festival)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/International_Day_to_End_Impunity_for_Crimes_Against_Journalists"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Navratri"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Hispanic_Heritage_Month"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sonepur_Cattle_Fair"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Day_of_the_Walloon_Region"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rebild_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Espousals_of_the_Blessed_Virgin_Mary"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lui_Ngai_Ni"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/San_Jacinto_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/American_Business_Women's_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Consualia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Title_36_of_the_United_States_Code"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sombrero_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Liberation_Day_(Italy)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bhadro"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hangul_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tecuilhuitontli"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tawthalin"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Trinity_Arts_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Robert_E._Lee_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hungarian_Opera_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Choitro"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Zatra"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/International_Romani_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mar\u01e7\u016bmay"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Malcolm_X_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mickey's_Magical_Party"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pulaski_Days"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ratification_Day_(United_States)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fiesta_patronal"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ave_Maria_church"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bhadon"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Guanacaste_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cesar_Chavez_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/World_Marriage_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Public_holidays_in_Hong_Kong"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Newspaper_holiday"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Station_days"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/2017_in_Malaysia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ten_Days_of_Repentance"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chuseok"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lal_Loi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Advent_Sunday"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/La_Vijanera"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tangihanga"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mandi_Shivaratri_Fair"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Isru_chag"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mattu_Pongal"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Atemoztli"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dinagyang"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Defence_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Passover"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cambodian_New_Year"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Persons_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/No_Smoking_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Day_of_the_Flemish_Community"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Guru_Ravidass_Jayanti"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Europe_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Malaysia_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Great_Union_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Highland_2007"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Burmese_Martyrs'_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gawai_Dayak"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Recovery_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/2011_in_Malaysia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Akita_Kant\u014d"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tirgan"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tobata_Gion_Yamagasa_festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Pearl_Harbor_Remembrance_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pasni_(celebration)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Civic_Holiday"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Global_Handwashing_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vijayadashami"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Carnival_of_Madeira"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dey_(month)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sham_el-Nessim"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Defense_Transportation_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pioneer_Day_(Utah)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/2009_in_Malaysia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/HarvestMoon_Music_and_Arts_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/2007_in_Malaysia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gymnopaedia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hathor_(month)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lyndon_Baines_Johnson_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Varuthini_Ekadashi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Day_of_Catalonia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sha'ban"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lemuria_(festival)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Remembrance_Day_of_Journalists_Killed_in_the_Line_of_Duty"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Brazilica_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mid-Sha'ban"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Independence_Day_(Eritrea)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Memorial_Ride"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Feast_of_the_Most_Precious_Blood"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Maghar_(month)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Scandinavian_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Music_of_Ghanaian_Origin"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mid-Autumn_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Celebrate_Your_Name_Week"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kullu_Dussehra"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jhulan_Purnima"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Av"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Australia_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Weatherperson's_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Srabon"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bucyrus_Bratwurst_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Independence_Day_(Cyprus)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Veterans_Day_(South_Korea)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Thout"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sso_(rite)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Wedding_anniversary"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Idaho_Human_Rights_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Republic_Day_(Kazakhstan)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Blessing_(Roman_Catholic_Church)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Magha_Puja"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bataan_Memorial_Death_March"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Federal_Day_of_Thanksgiving,_Repentance_and_Prayer"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Higalaay_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Arctic_Winter_Games"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/2003_in_Malaysia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/St_Joseph's_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_LGBTI_Day_(Nepal)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Republic_Day_(India)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Revolution_and_Solidarity_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Operation_Matateh"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/\u00derett\u00e1ndinn"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Saint_Nicholas_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/UK_Music_Video_Awards"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vaisakh"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Coronation_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Christmas_in_Poland"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mother's_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Traditional_Ambrosian_Rite"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/World_Vegan_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Basant_Kite_Festival_(Punjab)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Diamond_jubilee"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tsagaan_Sar"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Obama_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Germinal_(French_Republican_Calendar)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Feria_de_Artesan\u00edas_de_Ponce"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Medieval_Festival_of_Elx"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Celebrate_Freedom_Week"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/International_Men's_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Boishakh"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/April"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Festa_do_Ros\u00e1rio"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Double_Ninth_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mole_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Armilustrium"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Martyrs'_Day_(Lebanon_and_Syria)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sansculottides"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sh\u00edyu\u00e8"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kislev"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nalukulangara_Pooram"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Foot_washing"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Coast_Guard_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Durga_Puja_in_Odisha"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Feast_of_the_Most_Holy_Redeemer"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Beltane"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Seokjeon_Daeje"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Enkutatash"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Quecholli"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fastnacht_(Pennsylvania_Dutch)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Allambie_Reception_Centre"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Aliturgical_days"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Memorial_Day_(Newfoundland_and_Labrador)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Bison_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Siblings_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Public_holidays_in_Ethiopia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Autumnal_Equinox_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/World_Storytelling_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Martin_Luther_King_Jr._Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Revolution_Day_(Mexico)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bicentennial"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/JoJo_Maman_B\u00e9b\u00e9"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Defender_of_Ukraine_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/World_Kindness_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Calle_Ocho_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Star_Wars_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bataan_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Liberation_Day_(Hong_Kong)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/World_Malaria_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Landing_of_the_33_Patriots_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sepand\u0101rmazg\u0101n"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Day_of_Revenge"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nemontemi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/School_Day_of_Non-violence_and_Peace"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/UST_Neo-Centennial_Celebration"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/D\u00eda_de_la_Altagracia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/2007_Langerado_Music_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Azar"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hoo_Hoo_Monument"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dearborn_Homecoming_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Non-Fiction_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Cherry_Blossom_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Summer_Festival,_Albania"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Montana_Pride"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/International_No_Diet_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Geography_of_Halloween"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Amerindian_Heritage_Month_(Guyana)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vishu"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Brooklyn-Queens_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Diwali"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Peshwai_Procession"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Concurso_de_Cante_Jondo"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Loving_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Youth_Art_Month"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vijay_Diwas_(India)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Overshoot_(microwave_communication)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Statehood_Day_(Serbia)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/International_Migrants_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kalabukay_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/International_Literacy_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/State_holidays_in_New_Jersey"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Festivus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lughnasadh"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ghost_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/World_Poetry_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/French_Rite"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Victory_day_of_Bangladesh"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/American_Heart_Month"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Finnish_Swedish_Heritage_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Culture_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Peter_and_Fevronia_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/2014_Arctic_Winter_Games"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tu_BiShvat"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/International_Day_of_No_Prostitution"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Parinirvana_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bodhi_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Shayani_Ekadashi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hosay"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Independence_Day_of_Trujillo"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Benque_fiesta"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Global_Information_Governance_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Federal_holidays_in_the_United_States"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Holy_Week_in_Mexico"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/World_Contact_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Soviet_Occupation_Day_(Georgia)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Regifugium"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Makar_Sankranti"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/April_Fools'_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Elul"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Saudi_National_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/\u0141\u00f3d\u017a_Biennale"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Feast_of_Christ_the_Priest"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/International_Francophonie_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Whit_Tuesday"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Sovereignty_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/International_Workers'_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Shakambhari_Purnima"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Constitution_Day_(Denmark)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Unity_Day_(Russia)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Radom_Air_Show"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Toxcatl"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pioneer_Days_(Chico,_California)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/World_AIDS_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/World_Day_for_Audiovisual_Heritage"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Christmas"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ascolia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nabakalebara_2015"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Feasts_of_Jesus_Christ"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Labour_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/All_Souls'_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Islam_Day_(Hawaii)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Meal_Monday"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lord_of_Huaman_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hola_Mohalla"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/2006_in_Malaysia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/D\u00eda_Mundial_de_Ponce"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Weihnachten"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Public_holidays_in_the_Soviet_Union"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Republic_Day_(Philippines)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Limassol_Carnival_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Great_Locomotive_Chase_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Day_of_the_Little_Candles"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/International_Youth_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Name_days_in_Bulgaria"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Celebrate_Bisexuality_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sigd"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Phalguna"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Freedom_to_Marry_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Grand_Review_of_the_Armies"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gustavus_Adolphus_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/8_Days_of_Christmas_(song)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Holy_Week_in_Zamora"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kargil_Vijay_Diwas"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Subaru_Cherry_Blossom_Festival_of_Greater_Philadelphia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Martius_(month)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sedantag"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Works_Art_&_Design_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/January"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Public_holidays_in_Argentina"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Famine_Commemoration_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mandela_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/International_Day_of_United_Nations_Peacekeepers"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Whit_Monday"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Radonitsa"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vesak"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nickanan_Night"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Virginia_Gold_Cup"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dhodha"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Independence_Day_(Somalia)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/International_Day_for_Tolerance"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sacred_Defence_Week"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Motorcade"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/NZ_Rail_150"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fraternal_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gibraltar_Diamond_Jubilee_Flotilla"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hardware_Freedom_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Autistic_Pride_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sankashti_Chaturthi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Boxing_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Sovereignty_and_Children's_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Samhain"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Holy_Week_in_Popay\u00e1n"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Shrove_Tuesday"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Winter_solstice"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mesori"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Union_Dissolution_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kottiyoor_Vysakha_Mahotsavam"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Flag_Day_(Australia)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fast_of_Esther"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Independence_Day_(Somaliland)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kali_Puja"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Eagle_Scout_Service_Project"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/DNA_day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Epip"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Feast_of_Saint_George"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vidovdan"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/H\u014donk\u014d"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/\u0110ur\u0111evdan"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sheriff's_March"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Quinquatria"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Saba_Saba_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Anant_Chaturdashi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Education_and_Sharing_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Waterloo_Air_Terminal"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Independence_Day_(Uzbekistan)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Eid_il-Burbara"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chatar_jatra"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Holika_Dahan"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Errol_Barrow_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ambedkar_Jayanti"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Diamond_Jubilee_of_Elizabeth_II"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dundee_Fortnight"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/African_Liberation_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cry_of_Dolores"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bhadra_(month)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Public_holidays_in_Greece"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Adloyada"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Casimir_Pulaski_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Madeira_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Katak"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ratu_Sir_Lala_Sukuna_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Loyalty_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Irreechaa"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Student_Day_(Iran)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tu_B'Av"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Russefeiring"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ask_a_Stupid_Question_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Red_Hand_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Occupation_of_the_Latvian_Republic_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Varalakshmi_Vratam"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Congregation_of_the_Servants_of_the_Paraclete"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Holidays_in_Wales"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Remembrance_Day_(Marshall_Islands)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rafe_Hernandez"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Independence_Day_of_Ukraine"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Aadi_Perukku"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Wasshoi_Hyakuman_Natsumatsuri"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rite_of_Adoption"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mesha_Sankranti"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Guru_Nanak_Gurpurab"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hong_Kong_New_Year_Countdown_Celebrations"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nettlemas"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Unity_Day_(Philadelphia)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dragobete"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/1_Kislev"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rosh_Hashanah_LaBehema"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rama_Navami"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Racial_Justice_Sunday"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vaikuntha_Ekadashi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nanomonestotse"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kiev_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/World_Immunization_Week"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Independence_Day_(Turkmenistan)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Holy_day_of_obligation"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/2007_Claxton_Shield"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Wa\u01f5ay"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Poy_Sang_Long"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Public_holidays_in_the_United_States"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Evacuation_Day_(Massachusetts)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pluvi\u00f4se"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rishi_Panchami"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lincoln_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mokshada_Ekadashi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chithirai_Thiruvizha"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Concord_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Curwood_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Day_of_Songun"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Queene's_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/1994_in_Malaysia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Greeley_Stampede"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/St._Knut's_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Portugal_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Public_holidays_in_Moldova"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/World_Humanitarian_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Heroes'_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/American_Sports_Holiday"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rite_of_Strict_Observance"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Remembrance_of_the_Dead"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Air_Force_Day_(Pakistan)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bahram-e_Pazhdo"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Public_holidays_in_Laos"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cloughtoberfest"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rite_of_Braga"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Feast_of_the_Seven_Fishes"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/T'anta_Raymi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Silicon_Valley_Pride"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/New_Beer's_Eve"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ndadaye_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/International_Chess_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Punjabi_Cinema_Golden_Honours"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Public_holidays_in_Syria"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Assumption_of_Mary"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Indigenous_Peoples'_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ganga_puja"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Helen_Keller_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Silver_Jubilee_of_King_Jigme_Singye_Wangchuck"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alaska_Folk_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Buergbrennen"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lupercalia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Saint_David's_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Marian_feast_days"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/International_Year_of_Astronomy"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Festa_de_l'Unit\u00e0"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fiestas_Patrias_(Chile)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/RRI_1"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Opiconsivia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Youth_Day_(India)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/World_Philosophy_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/West_Virginia_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/December_2009_Kurdish_protests_in_Turkey"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/World_Turtle_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/1981_Handsworth_riots"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rabi'_al-thani"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Walk_to_Work_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Aviation_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Quintilis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Salw\u0101\u01e7a"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Day_of_Mourning_(Canadian_observance)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Shahrivar"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Buddha's_Birthday"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gurdwara_Baba_Atal"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Paremhat"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/International_Day_in_Support_of_Victims_of_Torture"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Procrastination_Week"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Calan_Mai"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tobi_(month)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kupala_Night"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Okuyi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Youth_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Victoria_Day_(Scotland)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_event_of_Ghadir_Khumm"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/VEISHEA"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tenth_of_Tevet"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mahamastakabhisheka"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Discovery_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fast_day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Passover_Seder"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bonalu"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Public_holidays_in_the_Cook_Islands"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Public_holidays_in_Italy"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vaisakhi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Festival_of_Jewish_Culture_in_Warsaw"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mullivaikkal_Remembrance_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vaisakha"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Eid_al-Adha"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Christmas_in_Hawaii"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ganesh_Chaturthi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chilla_(month)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sanja_Matsuri"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bhairava_Ashtami"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/World_Development_Information_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/World_UFO_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Day_of_Sweden"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Floralia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Public_holidays_in_Ukraine"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Democracy_250"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Spencerville_Fair"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Malvinas_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Festa_della_Sensa"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/300th_anniversary_of_the_Romanov_dynasty"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Magh_(Sikh_calendar)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Puthandu"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gangamma_Jatara"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hallett_Cove_School"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Day_of_the_Young_Combatant"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/White_Cane_Safety_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Thingyan"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/St_Kilda_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Independence_Day_(Poland)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Shevat"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sadeh"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Misteri_di_Trapani"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bu\u00df-_und_Bettag"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gaecheonjeol"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Federal_Territory_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/2011\u201312_Austrian_Football_Championship"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hornbill_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Copenhagen_Distortion"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Marmot_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ozmas"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Harvey_Milk_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/August"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Arattupuzha_Pooram"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Novruz_in_Azerbaijan"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chet_(month)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Summer_vacation"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Adar"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lincoln's_Birthday"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Manicktalla_Chaltabagan_Lohapatty_Durga_Puja"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Outfly"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Move_Your_Domain_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mischief_Night"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Public_holidays_in_Canada"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Student_Day_(South_Korea)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Africa_Oy\u00e9"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Yom_Kippur"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Susan_B._Anthony_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/2009_Claxton_Shield"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Losar"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CPM_S30V_steel"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Oktoberfest_celebrations"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/1997_in_Malaysia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Victory_Day_(United_States)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Oktoberfest"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lopez_Jaena_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Constitution_Day_(United_States)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gumboot_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Christmas_(Don_McLean_album)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/UN_Spanish_Language_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Meskel"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Social_Media_Giving_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/World_Religion_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Cashew_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/2000_in_Malaysia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lebanese_Independence_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Music_Day_in_Azerbaijan"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Racial_Harmony_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Afghan_Independence_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Statehood_Day_(Slovenia)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Festum_Ovorum"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Christmas_(Jaci_Velasquez_album)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Towel_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Christopher_Street_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dancing_procession_of_Echternach"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Shravana_Putrada_Ekadashi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sukkot"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Transfer_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Republic_Day_(Turkey)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pulaski_Day_Parade"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Aesthetica_Short_Film_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bank_holidays_in_India"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Marine_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/\u01e6bargolay"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bird_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jeth"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jewish_American_Heritage_Month"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Adae_Kese_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Von_Steuben_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Trizna"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Japanese_New_Year"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Candidacy"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Buy_Nothing_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Festival_of_Mountain_and_Plain"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Shawwal"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/2010_Arctic_Winter_Games"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dev_Deepawali_(Varanasi)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nisan"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Communion_under_both_kinds"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/\u00c7\u00fck"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Greenery_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Galungan"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Public_Domain_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Good_Governance_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/International_Fetish_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Distaff_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lifetime_reserve_days"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ashvin"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/October"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Seventeenth_of_Tammuz"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ear_Candy_for_the_Headphone_Trippers"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/K\u014denji_Awa_Odori"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/L'Escalade"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tachhala_(month)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Nothing_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fermentation_Fest"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pausha_Putrada_Ekadashi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Small_Business_Saturday"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nemoralia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Founders_Day_(South_Africa)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Defenders_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Our_Lady_of_Meritxell"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jerusalem_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Purushottam_Maas"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/1913_Sligo_Dock_strike"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Norwegian_Constitution_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bagroiser"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nenmara_Vallanghy_Vela"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tammuz_(Hebrew_month)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Deepothsavam"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dongzhi_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hippika_gymnasia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Women's_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Happiest_Homecoming_on_Earth"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Independence_Day_(Sri_Lanka)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Wagaung"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Giving_Tuesday"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Papal_Concert_to_Commemorate_the_Shoah"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Black_Friday_(shopping)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/World_Radio_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ely_Eel_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vasant_Panchami"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Durga_Ashtami"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Corporate_anniversary"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kansas_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Zamenhof_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Saint_Lucy's_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Commemoration_Day_of_Fallen_Soldiers"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Poh"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/World_Hello_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Indiana_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/International_Day_of_Forests"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cincinnati_Pride"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Intercession_of_the_Theotokos"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/D\u00edas_Patrios_(Guatemala)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gay_Blue_Jeans_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Arbor_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pohela_Boishakh"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Day_of_Arafah"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Saint_John's_Eve"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ottawa_Irish_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kishiwada_Danjiri_Matsuri"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/International_Beer_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Collector_Car_Appreciation_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Klozum"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Yorke_Peninsula_Field_Days"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ickwell_May_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rectified_Scottish_Rite"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kosa_(folklore)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/V\u00e4lkommen_hem_(song)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/T\u0259la"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Public_holiday"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Platinum_jubilee"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/International_Bacon_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Manitoba_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vernal_Equinox_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dhanu"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Public_holidays_in_Tuvalu"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Heroes'_Day_(South_Africa)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jump-up_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cavalcade"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Flag_of_Canada_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pakta"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Leon_Day_(holiday)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Annunciation"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Yom_Hazikaron"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Water_rite"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Frozen_Dead_Guy_Days"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lantern_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Charak_Puja"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Peace_Officers_Memorial_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Waterloo_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_11-day_weekend"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Father's_Day_(United_States)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Totensonntag"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Public_holidays_in_Kiribati"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fordicidia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tirupati_Ganga_Jatara"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mifflin_Street_Block_Party"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Senshusei_course"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Blacks_and_Whites'_Carnival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/War_Victims_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Armed_Forces_Day_(South_Korea)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Reactions_to_Innocence_of_Muslims"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/San_Francisco_Jazz_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Festival_Folcl\u00f3rico_y_Reinado_Nacional_del_Bambuco"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Golden_Jubilee_of_Elizabeth_II"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dissolution_of_the_Parliament_of_the_United_Kingdom"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tazaungmon"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Wash-up_period"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dragon_Boat_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Melon_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Golden_Week_(Japan)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Maslenitsa"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Independence_Day_(Republic_of_Macedonia)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tableround"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nayrouz"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/American_Family_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Honey_Bee_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fructidor"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Day_of_Remembrance_(Cambodia)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Data_Privacy_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Koninkrijksdag"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Krishna_Janmashtami"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Yukka_Nu_Hii"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Turkey_shoot"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Loi_Krathong"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Honey_Month"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Independence_Day_(Estonia)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/An_Leabhar_M\u00f2r"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Afro-Colombian_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Armed_Forces_Day_(United_Kingdom)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Korean_New_Year"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/International_Day_of_the_Disappeared"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cassette_Store_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Feast_of_the_Holy_Name_of_Jesus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/World_Art_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Slava"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sawan"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sh\u016bsen-kinenbi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kachhala_(month)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rogation_days"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kashmir_Solidarity_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sirimanothsavam"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kshamavani"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Purim"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mimouna"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Raksha_Bandhan"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Cornbread_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Liberty_Weekend"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sharad_Purnima"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/International_Civil_Aviation_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Yenya"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Good_Friday"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Qhapaq_hucha"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Martyrs'_Day_(Panama)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Torch_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mixed_Race_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sinhalese_New_Year"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Canadian_Centennial"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Feast_of_the_Prayer_of_Christ"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Aberri_Eguna"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sivan"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Prince_Rainier_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ardee_Baroque_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Boxing_Week"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Victory_Day_(Croatia)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/World_Blood_Donor_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/International_Day_of_Solidarity_with_the_Palestinian_People"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Patriots'_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Evolution_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/World_Space_Week"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Commemoration_of_Atat\u00fcrk,_Youth_and_Sports_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Melbourne_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pyatho"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/White_House_Iftar_dinner"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dilla_(month)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Piatra_Ro\u0219ie_Dacian_fortress"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Guy_Fawkes_Night"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cold_Food_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/International_Talk_Like_a_Pirate_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Postal_holiday"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kingston_Canadian_Film_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Culture_Freedom_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Typing_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Feralia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Juicy_Couture"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/St._Stephen's_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Voters'_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Festival_of_Lights_(Lyon)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Golden_jubilee"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mucenici"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/French_Community_Holiday"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Honor_America_Days"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Spanish_Radio_Academy"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Galician_Literature_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Birthday_of_the_Monkey_God"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Candlemas_(disambiguation)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tynwald_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Water_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Qingming_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Flag_Day_in_Mexico"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Makan_bajamba"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jumada_al-Thani"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Festa_della_Santissima_Piet\u00e0"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Azad_Kashmir_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Royal_Hobart_Regatta"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Windsor\u2013Detroit_International_Freedom_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Feriae_Latinae"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mehregan"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Karamu_(feast)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Zmaray"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Puritan_Sabbatarianism"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cinco_de_Mayo"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bhai_Phonta"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Angarki_Sankashti_Chaturthi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ruby_jubilee"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Oddfest"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Magh_(Nepali_calendar)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/International_Transgender_Day_of_Visibility"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Day_of_the_Vow"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Music_For_People_&_Thingamajigs_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Coral_Triangle_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Maithili_New_Year"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/2012_Arctic_Winter_Games"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Binirayan_festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Koliada"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/St_Mark's_Eve"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Education_Day_(India)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Berchtoldstag"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/St_Piran's_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Royal_Toowoomba_Show"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lei_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Passiontide"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Little_Christmas"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/International_Purple_Hijab_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/2005_NCAA_Division_I_Women's_Volleyball_Tournament"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/International_Yoga_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Babinden"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pittsburgh_Folk_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Africa_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/St._Andrew's_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Zh\u0113ngyu\u00e8"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Be\u00f1esmen"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/1934_Centenary_of_Melbourne"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Truman_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cyrus_the_Great_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Puente_(holiday)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Independence_Day_(Myanmar)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/60th_Anniversary_Celebrations_of_Bhumibol_Adulyadej's_Accession"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Independence_Day_(Croatia)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Old_Cows_Days/The_Days_of_the_Brindled_Cow"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jefferson\u2013Jackson_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Muslim_holidays"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Aprilis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Trinidad_and_Tobago_Carnival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Saturnalia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Repatriation_tax_holiday"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Public_holidays_in_Liberia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ice_Cream_for_Breakfast_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Simchat_Torah"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/COPD_Awareness_Month"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jewish_holidays"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Igue_festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cedar_Fest"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/International_Day_of_Charity"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vinalia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Festa_de_S\u00e3o_Jo\u00e3o_do_Porto"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Holy_Week_in_the_Philippines"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fixed_feast"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Beer_Day_(United_States)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Universal_Day_of_Culture"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mandali_Puja"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Feast_of_the_Circumcision_of_Christ"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/La_Tomatina"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Peerla_Panduga"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Special_Shabbat"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pope_John_Paul_II_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Random_Acts_of_Kindness_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/2007\u201308_S\u00fcper_Lig"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Day_of_the_National_Flag_(Ukraine)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Annual_Customs_of_Dahomey"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Independence_Day_(Botswana)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Airborne_March"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Veterans_Day_(Sweden)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gokarna_Aunsi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Classical_tradition"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Public_holidays_in_the_Republic_of_Ireland"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cheti_Chand"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bachhala_(month)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Indian_Day_(Brazil)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Time_Machine_50th_Anniversary_Tour"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mourning_of_Muharram"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/International_Astrology_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Castile_and_Le\u00f3n_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ratha-Yatra"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gai_Jatra"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nepal_Sambat"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Glasgow_Fair"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/East-Central_Minnesota_Pride"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chaturmas"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Trndez"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/St._Clement's_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tammuz_(Babylonian_calendar)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Februarius"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Moi_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Laylat_al-Qadr"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sitalsasthi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Christmas_lights_in_Medell\u00edn"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Employee_Appreciation_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lath_mar_Holi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Principal_Feast"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sweden_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Paoni"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Democracy_Day_(Nigeria)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Laskiainen"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Phagun_(Nepali_calendar)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Qinhuai_Lantern_Fair"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/New_York_State_government_holidays"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/M\u0103r\u021bi\u0219or"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mainz_carnival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hong_Kong_Special_Administrative_Region_Establishment_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Oprah_Winfrey's_Legends_Ball"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Procession_of_the_Holy_Blood"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Missouri_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Thermidor"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ashura"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Takanakuy"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bus\u00f3j\u00e1r\u00e1s"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Global_Day_of_Action_on_Military_Spending"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Transgender_Day_of_Remembrance"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/International_Day_of_Happiness"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Koiak"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Viking_tour"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/International_Chocolate_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Paynauen_Duyan_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Iqbal_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/First_Night"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/F\u00eate_du_Vodoun"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Police_Day_(Egypt)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Udhauli"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Professional_learning_community"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Independence_Day_(Philippines)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Day_(Vietnam)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lity_(Orthodox_Vespers)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Statehood_Day_(Lithuania)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gunla"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Statehood_Day_(Montenegro)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Maaveerar_Naal"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sumidagawa_Fireworks_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Easter_Friday"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Michaelmas"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Commemoration_of_the_Passion_of_Christ"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/World_Smile_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Arts_First"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Centennial"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jamaica_Independence_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Black_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/1996_in_Malaysia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/1998_in_Malaysia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Victoria_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Abaca_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Garifuna_Settlement_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Roanoke_Arts_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Triduum"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/World_Environment_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Guam_Discovery_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Bouncy"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Za_kri\u017een"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Independence_Day_(Finland)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Warriors'_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Saint-Jean-Baptiste_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sarawak_Self-government_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Airborne_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cancer_Control_Month"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Geologists_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Public_holidays_in_Libya"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Matronalia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Super_Saturday"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chaharshanbe_Suri"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Photo_op"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Limba_noastr\u0103_(public_holiday)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Festival_(Anglicanism)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Woodward_Dream_Cruise"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Weiya"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Arifana"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/World_Freedom_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Godiva_Procession"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Christmas_in_Ireland"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/North_Carolina_Watermelon_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Festival_of_Fantastic_Films"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mujahideen_Victory_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Abacost"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Melbourne_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Daeboreum"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Armistice_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Postcards_(TV_series)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Huey_Tozoztli"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Julebord"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Day_(Singapore)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tlaxochimaco"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Halloween"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Midsumma_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Maha_Shivaratri"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/King's_Feast"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cyber_Monday"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/George's_Day_in_Autumn"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Paopi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Banian,_Iran"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Plough_Sunday"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/America's_Got_Talent_(season_10)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tatiana_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hakata_Dontaku"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tom_Thumb_Gallery"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Pet_Month"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Albanian_Flag_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Thadingyut_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Spring_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kollam_Pooram"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vrishchikam"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dhanu_jatra"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Blessed_Rainy_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Heroes'_Day_(Namibia)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cotswold_Olimpick_Games"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Founder's_Day_(Ghana)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ronald_Reagan_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Komos"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Opening_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Deliberation_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Day_of_Missile_Forces_and_Artillery"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pan_American_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Amphidromia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Carnaval_de_Ponce"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Emergency_Rescuer's_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Record_Store_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/San_Jos\u00e9_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Journal_of_Rudolph_Friederich_Kurz"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mordad"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/420_(cannabis_culture)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gibraltar_National_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chhath"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Old_New_Year"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Flag_Day_(United_States)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Carl_Garner_Federal_Lands_Cleanup_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bastille_Day_military_parade"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Day_of_Neutrality"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kha_b-Nisan"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ugly_Way"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Iunius_(month)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Remembrance_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Martyrs'_Day_(Albania)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Asian_Pacific_American_Heritage_Month"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ponce_Jazz_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/HumanLight"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Good_Neighbor_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Canberra_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Relick_Sunday"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Independence_and_Unity_Day_(Slovenia)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/U.P._Centennial_Year"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rosalia_(festival)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Edge_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/World_Rak\u0131_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nowruz"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fractio_panis_(liturgy)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Thadingyut"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Guide_Dog_Month"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/World_Osteoporosis_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dahi_Handi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Balipratipada"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Stratford_Shakespeare_Festival_production_history"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/School_holidays_in_the_United_States"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Freedom_Day_(Belarus)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lane_County_Fair"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bibi-Ka-Alam"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bark_Mitzvah"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Royal_Launceston_Show"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Volunteer_Week"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/22_Shvat"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Women_of_Aviation_Worldwide_Week"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sizdah_Be-dar"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Independence_Day_(India)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alabama_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Independence_Day_(Brazil)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Bird-Feeding_Month"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Royal_Ploughing_Ceremony"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Earth_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Annaprashana"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gudi_Padwa"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Guavaween"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Now_Is_the_Month_of_Maying"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chaiti_Festival,_Rayagada"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Serfs_Emancipation_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ulcinj_Municipality_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Whuppity_Scoorie_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Constitution_Week"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Native_American_Heritage_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Annapolis_Valley_Apple_Blossom_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ulwaluko"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Urs"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bhadra_(Nepali_calendar)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dominican_Rite"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Public_holidays_in_Taiwan"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sekrenyi_festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kharchi_puja"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/May"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Software_Freedom_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Quincea\u00f1era"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Anzac_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vulcan_(mythology)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Potlatch"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Adae_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Sleepy_Head_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Feast_of_the_Swans"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Saint_Catherine's_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bob_Halloran"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Holi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Joishtho"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Payna"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/2004_PDC_World_Darts_Championship"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bradford_Mela"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Menstrual_hygiene_day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Caristia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Suna_Besha"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bourne_Free"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Dairy_Goat_Awareness_Week"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Baishakh"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rizal_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bhogi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lohri"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Supra_(feast)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ho'olaule'a"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Scarlet_Sails_(tradition)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sama_Chakeva"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Boomsday"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Meditrinalia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Day_of_Commemoration"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Deadly_Awards"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Thanksgiving"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Clean_Monday"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Surin_Elephant_Round-up"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Agonalia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Baci"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Yuri's_Night"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tazaungdaing_festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nane_Nane_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Brush_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Setsubun"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ancient_and_Primitive_Rite"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Day_of_Remembrance_for_all_Victims_of_Chemical_Warfare"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Freedom_Day_(Malta)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alaverdoba"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Public_holidays_in_Vatican_City"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Khamis_el_sakara"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bunga_Dyah_Jatra_(chariot_festival)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ottawa_Fringe_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/International_Day_of_the_Girl_Child"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/World_Day_Against_Child_Labour"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Maand_van_het_Spannende_Boek"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jidai_Matsuri"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Thanksgiving_(United_States)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/World_Egg_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Calends"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cistercian_Rite"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/World_Oceans_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sourest_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Expectation_of_the_Blessed_Virgin_Mary"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rite_of_Memphis-Misraim"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Christmas_Eve"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chaitra"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/International_Day_of_Remembrance_of_the_Victims_of_Slavery_and_the_Transatlantic_Slave_Trade"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Irish-American_Heritage_Month"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Grandparents_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/International_Co-operative_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Statehood_Day_(Hawaii)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Independence_Day_(Algeria)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/H\u00f9ng_Kings'_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cemetery_Sunday"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/2013_in_Malaysia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Liberation_Day_(Jersey)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Slametan"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Heroes_Day_(Saint_Kitts_and_Nevis)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alaska_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Regifting_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/\u00d3lavs\u00f8ka"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Remembrance_Sunday"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Respect_for_the_Aged_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vimy_Ridge_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Constitution_Day_(India)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Day_of_Reason"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Majuba_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/100th_Anniversary_of_the_Independence_of_Albania"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Peach_Drop_(Atlanta,_Georgia)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Decoration_Day_(Canada)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Datta_Jayanti"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/International_Day_of_Older_Persons"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Land_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/June"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Patriots'_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/November"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/World_Vegetarian_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Catfish_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Royal_Hobart_Show"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Imperial_hunt_of_the_Qing_dynasty"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Freedom_and_Democracy_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Public_holidays_in_Togo"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jivitputrika"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Keipi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mamankam_festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Remembrance_Day_(Sri_Lanka)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Grammar_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Filipino_American_History_Month"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Day_of_Victory_in_the_Great_Fatherland_Liberation_War"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Labour_Day_(Singapore)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Agrahayana"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/United_Nations_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Veterans_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Farvardin"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jumada_al-awwal"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Aldersgate_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Square_Root_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/11_Nissan"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Family_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/October_is_the_Kindest_Month"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Shichi-Go-San"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Foso_(feast)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/System_Administrator_Appreciation_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Savitri_Brata"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ogrohayon"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Constitution_Day_(South_Korea)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Christmas_in_Romania"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sh\u014dwa_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ndut_initiation_rite"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vision_quest"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/West_Syrian_Rite"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Atla_Tadde"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Armed_Forces_Day_(Bangladesh)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Magha_(month)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/International_Day_of_Democracy"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/2001_in_Malaysia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/2005_in_Malaysia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Yoga_Month"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Saint_Patrick's_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sakela"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Boss's_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lee\u2013Jackson_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Shinj\u014d_Matsuri"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/World_Statistics_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Campbell_Live"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jestha_(Nepali_calendar)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/\u00d6skudagur"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Commemoration_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/World_Wildlife_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Panoply_Arts_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Belgian_National_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Baraat"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Darwin_Centennial_Celebration_(1959)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Revolution_Day_(Egypt)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Naraka_Chaturdashi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nine_Emperor_Gods_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/European_Day_of_the_Righteous"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Virgen_de_los_Angeles"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lauderdale_County_Tomato_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Picnic_Day_(Australian_holiday)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Single_rider"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Veterans'_Day_(Netherlands)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Moveable_feast_(observance_practice)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rash_guard"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Feast_of_the_First_Fruits_of_Wine"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Okinawa_Memorial_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Independence_Day_(Niger)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pregnancy_and_Infant_Loss_Remembrance_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Biikebrennen"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Baltic_Freedom_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Confederate_Memorial_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Contraband_Days"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Resistive_touchscreen"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sette_Giugno"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/J\u00f3nsmessa"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Satyanath"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Independence_Day_(Georgia)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Public_holidays_in_Botswana"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Assu"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Folk_Festival_(Australia)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Feast_of_Saint_George_(Palestine)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Friendship_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jacksonville_Jazz_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Saviours'_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Prairial"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/International_Solidarity_Day_of_Azerbaijanis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/College_Scholastic_Ability_Test_(South_Korea)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Day_of_Encouragement"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dashain"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/St._George_Melkite_Catholic_Church"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rhein_in_Flammen"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Children's_Day_(Japan)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Byzantine_Rite"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dree_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Savior_of_the_Apple_Feast_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Victory_in_Europe_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Harriet_Tubman_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Armed_Forces_Day_(Poland)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/North_Borneo_Self-government_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nadaw"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Geek_Pride_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/White_House_Hanukkah_Party"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ab-Zohr"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vend\u00e9miaire"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Floral_City_Heritage_Days"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/United_States_federal_observances"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Train_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Transgender_Awareness_Week"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dokopiny_Ziemniaka"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/We_Are_One:_The_Obama_Inaugural_Celebration_at_the_Lincoln_Memorial"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Delivery_month"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Philippine_Independence_Day_Parade"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Yom_HaAliyah"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Man's_Day_and_Woman's_Day_(Iceland)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Victory_over_Japan_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Day_of_the_People's_Republic_of_China"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ravindra_Mhatre"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/New_Orleans_Jazz_&_Heritage_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sammakka_Saralamma_Jatara"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/D\u00eda_Nacional_de_Galicia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Asharh"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Nine_Days"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Republic_Day_(Republic_of_Macedonia)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pusn\u00e2"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rite_of_passage"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Victory_Day_(Malta)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Yomari_punhi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Epiphany_(holiday)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/People's_Sunday"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Wrestling_shoe"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Eid_al-Fitr"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Day_of_Remembrance_for_Truth_and_Justice"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Martyrs'_Day_(India)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Thursday_of_the_Dead"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/UN_Chinese_Language_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/First_Day_of_Summer"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fiesta_Nacional_de_la_Danza"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Amburbium"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gita_Jayanti"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ashanti_Yam_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mothering_Sunday"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/100_years_of_women_in_transport_campaign"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jongmyo_jerye"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ochpaniztli"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Norbertine_Rite"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/World_Intellectual_Property_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Greek_festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Christmas_in_the_Philippines"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tax_amnesty"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ferrymead_125"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Manabasa_Gurubara"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pokemon20"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Yule"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dormition_of_the_Mother_of_God"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/H\u0131d\u0131rellez"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Access_to_Information_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Carmelite_Rite"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Panay_Liberation_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/2002_in_Malaysia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Attrition_(dental)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nirjala_Ekadashi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bank_holiday"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Christmas_tree_plundering"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Stuttering_Awareness_Week"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Cleavage_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Talabukon_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Holy_Week_in_Spain"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Confederate_History_Month"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Asian_Excellence_Awards"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Carlyle_Holiday"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ramadan"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nayon"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Blood_wings"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Shakrain"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Law_Day_(United_States)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Carnival_in_Belize"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Micareta"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Siyum_HaShas"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Batik_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fossil_Fools_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Eighth_(United_States)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/\u014cmisoka"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Guru_Purnima"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chandeshwori_Jatra"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Monkey_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sami_National_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Teej"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Songkran_(Thailand)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Ayatollah_(football_celebration)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Washington's_Birthday"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Flag_Day_(Argentina)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sangken"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Radio_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Darwin_2009:_A_Pittsburgh_Partnership"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Renn_Fayre"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hadaka_Matsuri"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/1983\u201384_British_Home_Championship"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ambrosian_Rite"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jumu'atul-Wida"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/International_Day_of_Peace"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/March"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lancashire_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Akwasidae_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/DNA_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Parade"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Repentance_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/New_Year's_Eve"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Pizza_Month"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Holiday_of_the_City_of_Miskolc"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Blasphemy_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/LePox'a"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/List_of_observances_in_the_United_States_by_presidential_proclamation"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jewel_of_Russia_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/World_Teachers'_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Child_Health_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cosmonautics_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hillbilly_Days"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Umchwasho"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pintados-Kasadyaan"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Roodmas"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mummer's_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chalica"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rita_Angus_Residency"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ambarvalia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Karnataka_Rajyotsava"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Willka_Raymi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Luminato"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pesach_Sheni"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tom_and_Jerry:_A_Nutcracker_Tale"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Shrawan_(Nepali_calendar)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Father's_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rare_Disease_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Prabodhini_Ekadashi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Anti-Bullying_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Giant_Lantern_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Maharashtra_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Day_of_the_Sun"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Unification_Day_(Cameroon)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/World_Hepatitis_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/World_Usability_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bastille_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Safar"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Akshaya_Tritiya"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/L\u00e0yu\u00e8"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Aztec_New_Year"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Leeds_Pride"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Huey_Tecuilhuitl"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Workers'_Memorial_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/UN_French_Language_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ashadh_(Nepali_calendar)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/D\u00eda_del_Mar"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Independence_Day_(Bangladesh)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Maius"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Laba_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sahasra_purna_chandrodayam"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Navy_Day_(Chile)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Day_of_the_Republic_of_China"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Imbolc"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Palm_Sunday"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/SumBingTik_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/\u015eeva_Zistan\u00ea"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Independence_Day_(United_States)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Wide_World_Over"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/International_Women's_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pain_Awareness_Month"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mother's_Day_(United_States)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Messidor"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Bike_Month"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vivaha_Panchami"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fenakiwi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Whitsundays_(disambiguation)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/La_Ceiba_Carnival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fiestas_patronales_in_Puerto_Rico"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rakhri"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/White_Lotus_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/World_Prematurity_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bennington_Battle_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bhau-beej"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pitru_Paksha"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lychee_and_Dog_Meat_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Entrepreneurs'_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rat_trick"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Se\u00f1orita_Panam\u00e1_2002"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/World_No_Tobacco_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Funeral_procession"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/International_Day_against_Nuclear_Tests"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rabindra_Jayanti"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Singles_Awareness_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Winter_carnival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Maifest"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sikmogil"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Srivari_Brahmotsavam"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Human_Rights_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Peace_Jubilee"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ati-Atihan_festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jaanip\u00e4ev"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/World_Breastfeeding_Week"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Waso"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Spiritual_Baptist/Shouter_Liberation_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dengaku"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/1992_in_Malaysia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fifty_Grand_for_Christmas"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tabodwe"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pride_Fest_(Bismarck_and_Mandan,_North_Dakota)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Commonwealth_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/La\u1e5bam"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fast_of_the_Firstborn"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bloomsday"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Public_holidays_in_Mongolia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Feast_of_Our_Lady_of_Ransom"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Youm-e-Takbir"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/International_Day_of_Zero_Tolerance_to_Female_Genital_Mutilation"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lekhah_Dodi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/World_Mosquito_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ririe_Days"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mobad"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bermuda_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/International_Colour_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Triumph_of_the_Revolution"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Green_Monday"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Comedy_festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Woodstock_Jazz_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Prathamastami"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/General_Pulaski_Memorial_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hobbit_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hoshana_Rabbah"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Baba_Marta_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/German_Unity_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Constitution_Memorial_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/October_Holiday"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Liverpool_Shakespeare_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Thaipusam"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Poush"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sacrament"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Stephen_Foster_Memorial_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Birkat_Hachama"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Brooklyn_Hip-Hop_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Silver_jubilee"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/UN_Arabic_Language_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mha_Puja"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Accession_Day_(Jammu_and_Kashmir)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Victory_dance_(sports)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Day_of_Prayer"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fast_of_Gedalia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Las_Ma\u00f1anitas_(celebration)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/July"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tagu"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Samjinnal"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/NAIDOC_Week"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fajr_decade"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Children's_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/White_River,_Mpumalanga"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lag_BaOmer"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Do\u017cynki"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Veterans_Day_(Norway)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Edinburgh's_Hogmanay"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Agrasen_Jayanti"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/International_Sculpture_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Public_holidays_in_Singapore"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/GlobalFest"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Shoppable_Windows"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Terminalia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/February"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Groundhog_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Liberation_Day_(Netherlands)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Labor_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Thrissur_Pooram"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mawlid"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Forefathers'_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Poetry_Month"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/2008_National_Year_of_Reading"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Saint_George's_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Reformation_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Port_Eliot_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kadayawan_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Karva_Chauth"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/UN_English_Language_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Songkran_(Lao)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ninoy_Aquino_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Malanka"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Blue_Mass"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Waitangi_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kanda_Matsuri"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/2008_in_Malaysia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Day_of_the_Dead"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Afghan_wedding"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Leonese_Language_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Eucharist"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ordibehesht"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/International_Lefthanders_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Act_Zluky"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fiestas_de_Santa_Fe"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Samavartanam"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Swiss_National_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sat_Thai"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rosa_Parks_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Survivors_of_Suicide_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Global_Money_Week"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tepeilhuitl"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nagoba_Jatara"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Parmouti"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Archbishop_of_Erbil"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cultural_depictions_of_Augustus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/American_Civil_War_Centennial"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ivy_Day_(Ireland)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Women's_History_Month"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Newspaper_Carrier_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bihu"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ambubachi_Mela"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pausha"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Retrocession_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Indian_Arrival_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Madaraka_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Secular_Games"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Puerto_Rico_Constitution_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Svensk_Hyllningsfest"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Black_Friday_(partying)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fiji_Week"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ngoenyang"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Yhyakh"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Khordad_Sal"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Agila_Social_and_Economic_Carnival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Veterans'_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/World_Students'_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nyepi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Grand_Duke's_Official_Birthday"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Valentine's_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nuakhai"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Falles_of_Alzira"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/19_Kislev"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Store_Bededag"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Free_Comic_Book_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Durga_Puja"}}]}}], "entities": [], "relations": [{"URI": "http://dbpedia.org/ontology/feastDay", "surface form": "holidays"}, {"URI": "http://dbpedia.org/ontology/party", "surface form": "celebrated"}]}, {"id": "149", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "What is the longest river?", "keywords": "river, longest"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/River> { ?uri <http://dbpedia.org/ontology/length> ?l } UNION { ?uri <http://dbpedia.org/property/length> ?l } } ORDER BY DESC(?l) OFFSET 0 LIMIT 1"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Irtysh_River"}}]}}], "entities": [], "relations": [{"URI": "http://dbpedia.org/ontology/river", "surface form": "river"}]}, {"id": "150", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Which organizations were founded in 1930?", "keywords": "organization, founded, 1930"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Organisation> { ?uri <http://dbpedia.org/ontology/formationYear> ?date } UNION { ?uri <http://dbpedia.org/ontology/foundingYear> ?date } FILTER regex(?date, \"^1930\") }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lidl"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Socialist_Workers'_Party_of_Denmark"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Albanian_Second_Division"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/North_Little_Rock_High_School"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Montessori_Lyceum_Amsterdam"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Automobile_Association_of_South_Africa"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tillberga_IK_Bandy"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Morellato_Group"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mooresville_High_School_(North_Carolina)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Christ_the_King_School,_Portoviejo"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bedford_Vehicles"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/AMVJ_Basketball"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/England_Roller_Hockey"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Old_Brodleians"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Azovstal_iron_and_steel_works"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gartnerhallen"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hydrosila"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Grundig"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Affton_High_School"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/PBG_Basket_Pozna\u0144"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ministry_of_Education_(Brazil)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Boosey_&_Hawkes"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/TicketNet"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/St_Francis'_College,_Letchworth"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Steigenberger_Hotels"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/ANSCOR"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Binford_&_Mort"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/MG_Car_Club"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Colombian_Communist_Party"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Partido_Komunista_ng_Pilipinas-1930"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bennetts"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hedemora_SK"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Directorate_General_for_Public_Security"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Party_of_National_Brotherhood"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Capitalinos_de_San_Juan"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Book_League_of_America"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Republican_Nationalist_Party_of_Ourense"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Austin_High_School_(El_Paso,_Texas)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Madison_West_High_School"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gerald_Eve"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/\u00dajpesti_TE_(ice_hockey)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Catholic_Secondary_Schoolgirls'_Sports_Association"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sugatsune"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Al-Futtaim_Group"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bendicks"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Merewether_Carlton_Rugby_Club"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rajibpur_Aftab_Uddin_High_School"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Socialist_Workers'_Party_of_Norway"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mt_Maria_College"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Natabua_High_School"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cowplain_Community_School"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Caf\u00e9_Rico"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Collins_Crime_Club"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/South_American_Basketball_Championship"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Barcel\u00f3_(rum)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Japan_Basketball_Association"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Colegio_San_Jos\u00e9,_San_Germ\u00e1n,_PR"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Elmer_L._Meyers_Junior/Senior_High_School"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bullis_School"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CB_Granollers"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/PAO_Thriamvos_Athens"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Engineering_and_Research_Corporation"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ocean_Spray_(cooperative)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Godalming_Grammar_School"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Old_Halesonians_RFC"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/J._J._Ugland"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Liberal_Party-Br\u0103tianu"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Epping_Rugby_&_Netball_Club"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Proximus_Group"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bayard_Rustin_Educational_Complex"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Flood_Brothers_Disposal"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Palmetto_High_School_(Florida)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alderwasley_Hall_School"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ice_Hockey_World_Championships"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ariston_Thermo"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/SPL_Karjalan_piiri"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nova_Scotia_Liquor_Corporation"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Westin_Hotels_&_Resorts"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Federal_Power_Commission"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Odeon_Cinemas"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Miami_Edison_High_School"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Trevelyan_Middle_School"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/St_Patrick's_Classical_School"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/L\u00f6nsboda_GoIF"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Forest_School_Camps"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sacred_Heart_Grammar_School"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cantieri_Riuniti_dell'Adriatico"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Independent_Smallholders,_Agrarian_Workers_and_Civic_Party"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Winnipeg_Blue_Bombers"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Williamwood_High_School"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Department_of_Transport_(1930\u201332)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/De_Pere_High_School"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dom\u00ednguez_&_C\u00eda"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Eastfield_Primary_School"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Yugoslav_Action"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/King_Kullen"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Volvo_Aero"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cin\u00e9dia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bethlehem_Central_School_District"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Papastratos"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hit_of_the_Week_Records"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Order_of_Attorneys_of_Brazil"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/First_Assurance_Kenya_Limited"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vijayaba_National_School"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Brampton_Ellis_Comprehensive_School"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Drayton_Manor_High_School"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/\u00c9ditions_Deno\u00ebl"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kaupthing_Bank"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Youth_Hostels_Association_(England_&_Wales)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Oliver_Springs_High_School"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Crown_Records_(1930s_label)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Shulamith_School_for_Girls"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/NIH_Intramural_Research_Program"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kilgraston_School"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Coll\u00e8ge_et_Lyc\u00e9e_Raponda_Walker"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Examination_Yuan"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Soci\u00e9t\u00e9_A\u00e9rienne_Bordelaise"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Union_(Portugal)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Queen_of_Peace_High_School_(New_Jersey)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/BC_Ural_Yekaterinburg"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Northern_Secondary_School_(Toronto)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/All_Japan_Ice_hockey_Championship"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Wereldhave"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Liberal_Republican_Party_(Turkey)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pennthorpe_School"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Denby_High_School"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gulf_South_Pipeline"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/St_Martin's_Ampleforth"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Allen_&_Overy"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ametek"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chinese_Muslim_Youth_League"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Veteran_Car_Club_of_Great_Britain"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/BEHER_(ham)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mahtomedi_Senior_High_School"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/McCann_Erickson"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ottawa_District_Badminton_Association"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Claro_Rep\u00fablica_Dominicana"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sawston_Village_College"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ramsay_High_School"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Goldfarb_Seligman_&_Co."}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Brookesmith_High_School"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/COWI_A/S"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Stackpole_Books"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Veterans_Benefits_Administration"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Diplom-Is"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ajmer_Military_School"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chartered_Society_of_Designers"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Communist_Party_\u2013_Alberta"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Clifton_Hall_School"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Funnies_Inc."}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Main_Roads_Western_Australia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Association_of_Parliamentarians"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Panathinaikos_WPC"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Claremont_High_School,_Kenton"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sellotape"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pininfarina"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kakira_Sugar_Works"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Al_Ahly_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Magen_David_Adom"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/International_Federation_of_Film_Critics"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ionikos_Nea_Filadelfeia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/St_Augustine's_College_(Queensland)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Arab_Bank"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/South_Gate_High_School"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/New_Consolidated_Gold_Fields"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Astor_Pictures"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Interpublic_Group_of_Companies"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sentry_Group"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Van_der_Vlist"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Crusader_Union_of_Australia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nu_Way_Cafe"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Guardian_Alarm"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Steubenville_Catholic_Central_High_School"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Peruvian_Communist_Party"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Comercial_Mexicana"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Channighat_M.V_School"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sanford_School"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Joventut_Badalona"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/British_Compressed_Air_Society"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Black_Front"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bentoel_Group"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/\u010cEZ_Basketball_Nymburk"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Arion_Bank"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Superior_Essex"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/M._W._Kellogg_Limited"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pallacanestro_Olimpia_Milano"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pipers_Corner_School"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Falmouth_High_School_(Maine)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nat_Sherman"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mapai"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lafuma"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pressed_Metal_Corporation"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rugby_Roma_Olimpic"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Loreto_College,_Coleraine"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/RMC_Group"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Parr_Lumber"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Warrior_(shoes)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/SESAC"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Guangzhou_No.2_High_School"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Book_Store"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Albanian_Superliga"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tillberga_IK"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/M/r_Urumuththa_Almeda_Maha_Vidyalaya"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/ATKV"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Algernon_Sydney_Sullivan_Foundation"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/United_Gas_Corporation"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/American_Popular_Revolutionary_Alliance"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gordon_Lee_High_School"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hottentots_Holland_High_School"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/John_Spendluffe_Technology_College"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jacksonville_Area_Legal_Aid"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Bemrose_School"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bajaj_Corp"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Merrythought"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Blesma,_The_Limbless_Veterans"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Newport_Harbor_High_School"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/St._Mary_of_the_Assumption_High_School"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/St._George's_School_of_Montreal"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Box_Hill_High_School"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Broadway_League"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lanesborough_School"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mostotrest"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Melotone_Records_(US)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/KAZ_Minerals"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/British_Ballet_Organization"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Henley_Hawks"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Genetics_Society_of_America"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Granada_plc"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ionikos_N.F._B.C."}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Crescent_Elementary_School"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Old_HB"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/St._George's_School_(Vancouver)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dene_Magna_School"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tatnall_School"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sunfield_Children's_Home"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Polski_Zwi\u0105zek_Kr\u00f3tkofalowc\u00f3w"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lamy"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Forman_School"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Toshiba_Medical_Systems_Corporation"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Albanian_Third_Division"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Palo_Alto_Medical_Foundation"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/St._Pius_V_High_School"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Swallow_Sidecar_Company"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/ING_Vysya_Bank"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/World_Socialist_Party_(New_Zealand)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gimson_(cycles)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Catholic_High_School_for_Boys_(Little_Rock,_Arkansas)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/NC_Chios"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/O'Neill_Collegiate_and_Vocational_Institute"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hamtramck_High_School"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dapdap_Elementary_School"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/SIX_Financial_Information"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Oathall_Community_College"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Eyerly_Aircraft_Company"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Albanian_First_Division"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Popular_Publications"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Australian_Institute_of_Architects"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Leuzinger_High_School"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tao_Fong_Shan"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Atl\u00e9ticos_de_San_Germ\u00e1n"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ion_(chocolate)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Communist_Party_of_Vietnam"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mooreland_Hill_School"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pike_Place_Fish_Market"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cobham_RFC"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/English_Mistery"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Eusko_Abertzale_Ekintza"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Confucian_Academy"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/St._Patrick's_High_School_(Maysville,_Kentucky)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ministry_of_Labor_and_Employment_(Brazil)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chaminade_High_School"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/League_of_German_Girls"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Goodrich_Quality_Theaters"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/West_End_High_School_(Birmingham,_Alabama)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/St_Joseph's_Technical_School,_Abbotsford"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Immaculate_Heart_High_School_(Arizona)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Population_Association_of_America"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rationalist_Union"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/American_Academy_of_Pediatrics"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Old_Belvedere"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ahali_group"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Markel_Corporation"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Strong_Vincent_High_School"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hy-Vee"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Department_of_Markets_(1930\u201332)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Miles_Aircraft"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tvornica_Autobusa_Zagreb"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hoover_High_School_(San_Diego,_California)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/People's_Party_of_Panama"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dipromisto"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Texas_Instruments"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/St_Mary's_Convent_High_School,_Hyderabad"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Blacks_Photo_Corporation"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rheem"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/New_Swedish_People's_League"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/St._Augustine's_College_(Cape_Coast)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Amherst_Central_High_School"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dodge_&_Cox"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/X-Acto"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Association_of_Health_Underwriters"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nations_Cup_(roller_hockey)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Uralkali"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Neutrogena"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ewing_family_(television)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Real_Canoe_NC"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Swedish_National_Socialist_Party"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CHIJ_Katong_Convent"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Balfour_Collegiate"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/P&R_Publishing"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/I._I._Schmalhausen_Institute_of_Zoology"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dutch_Neck_Elementary_School"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fisher-Price"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rye_St_Antony_School"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fairway_Market"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Malayan_Communist_Party"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Malaguti"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Portsmouth_Academy_for_Girls"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/St._Thomas'_School_(New_Delhi)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Luton_Rugby_Club"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Family_Planning_Association"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tajikfilm"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Eidsiva_Rederi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Elisabeth_Morrow_School"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Highfield_R.F.C."}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bristol_Aerospace"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Abraham_(aircraft_manufacturer)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Robert_Allan_Ltd."}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/International_Institute_of_Administrative_Sciences"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Andbank"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ravenscroft_School,_Somerset"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/University_of_Michigan_Press"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Wild_About_Fruit_Company"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hornsby_Girls'_High_School"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Agricultural_Bank_of_Iceland"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Barking_Rugby_Football_Club"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ricola"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Varga_Katalin_Secondary_School"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Soka_Gakkai"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ministry_of_Foreign_Affairs_(Saudi_Arabia)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/New_Flyer_Industries"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Wilko_(retailer)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Brit_HaBirionim"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sango_Bay_Estates_Limited"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/West_Allis_Speedskating_Club"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rajibpur_Aptab_Uddin_High_School"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sovam"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Detroit_Lions"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Philadelphia_Quakers_(NHL)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Liberal_Republican_Right"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Regal_Entertainment_Group"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fountain_Valley_School_of_Colorado"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lend_Lease_Residential_Development"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Special_Security_Force_Command"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Baloncesto_Superior_Nacional"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ghana_Civil_Aviation_Authority"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Laura_(clothing_retailer)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Urania_Gen\u00e8ve_Sport_(basketball)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CANTV"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Radio_Club_Peruano"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Spencer_High_School_(Columbus,_Georgia)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rhigos_RFC"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/KHL_Karlovac"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/VST_Industries"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mostransavto"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Society_of_Exploration_Geophysicists"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/DB_Breweries"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vaqueros_de_Bayam\u00f3n"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Himalaya_Drug_Company"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Old_Guard_(Australia)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Grant_Community_High_School"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Capital_Maharaja"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/St._Charles_Garnier_College"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tasmanian_University_Football_Club"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/NSW_Lotteries"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rodale,_Inc."}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Benco_Dental"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Grupo_Senda"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Roller_Hockey_Premier_League"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/1930", "surface form": "1930"}], "relations": [{"URI": "http://dbpedia.org/ontology/company", "surface form": "organizations"}, {"URI": "http://dbpedia.org/ontology/foundingYear", "surface form": "founded"}]}, {"id": "151", "answertype": "string", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "What is the birth name of Angela Merkel?", "keywords": "birth name, Angela Merkel"}], "query": {"sparql": "SELECT DISTINCT ?string WHERE { <http://dbpedia.org/resource/Angela_Merkel> <http://dbpedia.org/property/birthName> ?string }"}, "answers": [{"head": {"vars": ["string"]}, "results": {"bindings": [{"string": {"type": "literal", "value": "Angela Dorothea Kasner"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Angela_Merkel", "surface form": "Angela Merkel"}], "relations": [{"URI": "http://dbpedia.org/property/birthName", "surface form": "birth name"}]}, {"id": "152", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Who has Tom Cruise been married to?", "keywords": "Tom Cruise, married"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/spouse> <http://dbpedia.org/resource/Tom_Cruise> }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Katie_Holmes"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nicole_Kidman"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mimi_Rogers"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Tom_Cruise", "surface form": "Tom Cruise"}], "relations": [{"URI": "http://dbpedia.org/ontology/spouse", "surface form": "married"}]}, {"id": "153", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Which weapons did Heckler & Koch develop?", "keywords": "Heckler & Koch, develop, weapon"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Weapon> ; <http://dbpedia.org/property/designer> <http://dbpedia.org/resource/Heckler_&_Koch> }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/XM25_CDTE"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Heckler_&_Koch_P2000"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Heckler_&_Koch_G3"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Heckler_&_Koch_G11"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Heckler_&_Koch_AG36"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Heckler_&_Koch_G41"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Heckler_&_Koch_HK_CAWS"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Heckler_&_Koch_AG-C/EGLM"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Heckler_&_Koch_HK417"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/M27_Infantry_Automatic_Rifle"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Heckler_&_Koch_HK69A1"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Heckler_&_Koch_MG4"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Heckler_&_Koch_PSG1"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Heckler_&_Koch", "surface form": "Heckler & Koch"}], "relations": [{"URI": "http://dbpedia.org/ontology/numberOfSeasons", "surface form": "weapons"}, {"URI": "http://dbpedia.org/ontology/product", "surface form": "develop"}]}, {"id": "154", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "What is the smallest city by area in Germany?", "keywords": "smallest, city, Germany"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX skos: <http://www.w3.org/2004/02/skos/core#> PREFIX dbc: <http://dbpedia.org/resource/Category:> PREFIX dct: <http://purl.org/dc/terms/> SELECT ?city WHERE { ?m skos:broader dbc:Cities_in_Germany . ?city dct:subject ?m ; dbo:areaTotal ?area } ORDER BY ?area LIMIT 1"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Eckernf\u00f6rde"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Germany", "surface form": "Germany"}], "relations": [{"URI": "http://dbpedia.org/ontology/city", "surface form": "city"}, {"URI": "http://dbpedia.org/property/area", "surface form": "area"}]}, {"id": "155", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "What is the ruling party in Lisbon?", "keywords": "Lisbon, ruling party"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Lisbon> <http://dbpedia.org/property/leaderParty> ?uri }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Socialist_Party_(Portugal)"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Lisbon", "surface form": "Lisbon"}], "relations": [{"URI": "http://dbpedia.org/ontology/principal", "surface form": "ruling"}, {"URI": "http://dbpedia.org/ontology/party", "surface form": "party"}]}, {"id": "156", "answertype": "number", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "How heavy is Jupiter's lightest moon?", "keywords": "how heavy, Jupiter, moon, lightest"}], "query": {"sparql": "SELECT DISTINCT ?n WHERE { ?uri <http://dbpedia.org/property/satelliteOf> <http://dbpedia.org/resource/Jupiter> ; <http://dbpedia.org/ontology/mass> ?n } ORDER BY ASC(?n) OFFSET 0 LIMIT 1"}, "answers": [{"head": {"vars": ["c"]}, "results": {"bindings": [{"c": {"type": "literal", "value": "1100.0"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Jupiter", "surface form": "Jupiter"}, {"URI": "http://dbpedia.org/resource/Lightest_Supersymmetric_Particle", "surface form": " lightest moon"}], "relations": [{"URI": "http://dbpedia.org/ontology/fat", "surface form": "heavy"}]}, {"id": "157", "answertype": "number", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "How many employees does IBM have?", "keywords": "IBM, employees"}], "query": {"sparql": "SELECT DISTINCT ?number WHERE { <http://dbpedia.org/resource/IBM> <http://dbpedia.org/ontology/numberOfEmployees> ?number }"}, "answers": [{"head": {"vars": ["c"]}, "results": {"bindings": [{"c": {"type": "literal", "value": "377757"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/IBM", "surface form": "IBM"}], "relations": [{"URI": "http://dbpedia.org/ontology/numberOfEmployees", "surface form": "employees"}]}, {"id": "158", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "List all episodes of the first season of the HBO television series The Sopranos!", "keywords": "HBO, television series, Sopranos, first season, episode"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { ?uri dbo:series res:The_Sopranos ; dbo:seasonNumber 1 }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Isabella_(The_Sopranos)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Meadowlands_(The_Sopranos)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/I_Dream_of_Jeannie_Cusamano"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Legend_of_Tennessee_Moltisanti"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Boca_(The_Sopranos)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nobody_Knows_Anything"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pax_Soprana"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/A_Hit_Is_a_Hit"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Denial,_Anger,_Acceptance"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/College_(The_Sopranos)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/46_Long"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Sopranos_(episode)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Down_Neck"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/The_Sopranos", "surface form": "Sopranos"}], "relations": [{"URI": "http://dbpedia.org/ontology/episodeNumber", "surface form": "episodes"}, {"URI": "http://dbpedia.org/ontology/seasonNumber", "surface form": "season"}]}, {"id": "159", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "What does ICRO stand for?", "keywords": "ICRO, stand for"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/abbreviation> \"ICRO\" }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Irish_Cave_Rescue_Organisation"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Icrossing_Inc", "surface form": "ICRO"}], "relations": [{"URI": "http://dbpedia.org/ontology/position", "surface form": "stand"}]}, {"id": "160", "answertype": "boolean", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Does the new Battlestar Galactica series have more episodes than the old one?", "keywords": "new BattleStar Galactica series, episodes, more, old Battle Star Galactica series"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> ASK WHERE { <http://dbpedia.org/resource/Battlestar_Galactica_%281978_TV_series%29> dbo:numberOfEpisodes ?x . <http://dbpedia.org/resource/Battlestar_Galactica_%282004_TV_series%29> dbo:numberOfEpisodes ?y FILTER ( ?y > ?x ) }"}, "answers": [{"head": {}, "results": {}, "boolean": false}], "entities": [{"URI": "http://dbpedia.org/resource/Diana,_Princess_of_Wales", "surface form": "princess Diana"}], "relations": [{"URI": "http://dbpedia.org/ontology/episodeNumber", "surface form": "episodes"}]}, {"id": "161", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Give me all films produced by Hal Roach.", "keywords": "film, produce, Hal Roach"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Film> ; <http://dbpedia.org/ontology/producer> <http://dbpedia.org/resource/Hal_Roach> }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_McGuerins_from_Brooklyn"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sprucin'_Up"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bring_Home_the_Turkey"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ring_Up_the_Curtain"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Way_Out_West_(1937_film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Better_Movies"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Grandma's_Boy_(1922_film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Feed_'em_and_Weep"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Below_Zero_(1930_film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/That's_My_Wife_(1929_film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bacon_Grabbers"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Big_Ears"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Brothers_Under_the_Chin"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Giving_Them_Fits"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Our_Gang_Follies_of_1938"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Raggedy_Rose"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Our_Gang_Follies_of_1936"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Little_Mother_(1929_film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Laurel-Hardy_Murder_Case"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/One_Million_B.C."}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jubilo,_Jr."}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fast_Freight_(film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dog_Days_(1925_film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/His_Only_Father"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/It's_a_Wild_Life"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hey_There!"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Divot_Diggers"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Cobbler_(1923_film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/A_Man_About_Town"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Billy_Blazes,_Esq."}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Shootin'_Injuns"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Do_Detectives_Think%3F"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Smile_Wins"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Pooch"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pardon_Us"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Step_Lively_(1917_film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Broadway_Limited_(film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/His_Royal_Slyness"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Teacher's_Pet_(1930_film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Cow's_Kimona"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Luke_and_the_Mermaids"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/On_the_Front_Page"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Second_Hundred_Years_(film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Why_Pick_on_Me%3F_(1918_film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Buccaneers_(film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Soft_Money_(film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Old_Wallop"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Shiver_My_Timbers"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hear_'Em_Rave"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Never_Touched_Me"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Lucky_Corner"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Spooky_Hooky"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Flirt"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/One_Hour_Married"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/A_Sammy_in_Siberia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/High_and_Dizzy"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Bohemian_Girl_(1936_film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Laughing_Gravy"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Free_Wheeling"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Shivering_Shakespeare"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Oliver_the_Eighth"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Among_Those_Present"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Baby_Clothes"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hi'-Neighbor!"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Spanking_Age"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/A_Lad_an'_a_Lamp"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Just_Nuts"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Their_First_Mistake"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Moan_and_Groan,_Inc."}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Wiggle_Your_Ears"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Zeb_vs._Paprika"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pay_Your_Dues"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Me_and_My_Pal_(1933_film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lonesome_Luke_on_Tin_Can_Alley"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Si,_Senor"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Under_Two_Jags"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Fixer_Uppers"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Along_Came_Auntie"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/July_Days_(film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Buried_Treasure_(1926_film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Be_Big!"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Early_to_Bed_(1928_film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Seein'_Things"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Lamb_(1918_film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hearts_Are_Thumps"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Them_Was_the_Happy_Days!"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Glove_Taps"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Noon_Whistle"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Our_Wife"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Heebee_Jeebees"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Commencement_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Curley_(film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Unaccustomed_As_We_Are"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/He_Leads,_Others_Follow"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Do_You_Love_Your_Wife%3F"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chop_Suey_&_Co."}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Luke_and_the_Bang-Tails"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Derby_Day_(1923_film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Here_Come_the_Girls_(1918_film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Honky_Donkey"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Shivering_Spooks"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sons_of_the_Desert"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Twice_Two"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Captain_Fury"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fish_Hooky"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Why_Worry%3F"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/County_Hospital_(film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mother's_Joy"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Neighborhood_House_(film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/I_Do_(1921_film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Big_Show_(1923_film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Arbor_Day_(film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Two_Too_Young"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Heap_Big_Chief"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Duck_Soup_(1927_film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Don't_Shove"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bored_of_Education"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Luke's_Lost_Liberty"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tire_Trouble"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Never_Weaken"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Road_Show_(film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Luke's_Speedy_Club_Life"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Frozen_Hearts"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Came_the_Brawn"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cradle_Robbers"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pipe_the_Whiskers"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Are_Crooks_Dishonest%3F"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fast_Company_(1924_film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Just_Neighbors"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Wide_Open_Spaces_(1924_film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gas_and_Air_(film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ask_Grandma"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Luke,_the_Gladiator"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bouncing_Babies"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/War_Feathers"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Luke's_Shattered_Sleep"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Terribly_Stuck_Up"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Block-Heads"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Count_the_Votes"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/High_Society_(1924_film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Some_Baby"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Topper_Takes_a_Trip"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bumping_into_Broadway"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Thundering_Fleas"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Who_Killed_Doc_Robbin"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Love,_Laughs_and_Lather"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pack_Up_Your_Troubles_(1932_film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Spit-Ball_Sadie"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Near_Dublin"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Brooklyn_Orchid"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fresh_from_the_Farm"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hustling_for_Health"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Take_a_Chance_(1918_film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hats_Off_(1927_film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Live_Ghost"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fishy_Tales"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Two_Scrambled"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Crazy_like_a_Fox_(1926_film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/White_Eagle_(1922_serial)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/One_Terrible_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mighty_Like_a_Moose"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Wandering_Papas"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Swat_the_Crook"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/A_Quiet_Street"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Follow_the_Crowd_(film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Beginner's_Luck"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dr._Jack"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Somewhere_in_Turkey"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Yale_vs._Harvard"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Telling_Whoppers"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tanks_a_Million"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/About_Face_(1942_film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Another_Fine_Mess"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/An_Ozark_Romance"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Railroadin'"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/For_Pete's_Sake!"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dogs_of_War_(film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Babes_in_Toyland_(1934_film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/It's_a_Gift_(1923_film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sunday_Calm"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Long_Fliv_the_King"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Framing_Youth"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Love_'Em_and_Feed_'Em"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Midnight_Patrol"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/One_Good_Turn_(1931_film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Stop!_Luke!_Listen!"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mary,_Queen_of_Tots"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rainy_Days_(film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Postage_Due"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Young_Mr._Jazz"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/A_Sailor-Made_Man"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Merrily_We_Live"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Just_Dropped_In"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Towed_in_a_Hole"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Tip"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Pinch_Singer"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lazy_Days_(film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cat,_Dog_&_Co."}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lonesome_Luke_Leans_to_the_Literary"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Anniversary_Trouble"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rushin'_Ballet"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Seeing_the_World"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/A_Pleasant_Journey"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Boxing_Gloves_(film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Beat_It_(film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/What's_the_World_Coming_To%3F"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bear_Facts_(film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Luke,_the_Candy_Cut-Up"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/A_Foozle_at_the_Tee_Party"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Luke's_Preparedness_Preparations"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/One_Wild_Ride"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Eve's_Love_Letters"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Crack_Your_Heels"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bromo_and_Juliet"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mama's_Little_Pirate"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Flying_with_Music"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lonesome_Luke's_Lovely_Rifle"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pups_Is_Pups"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Wanted_\u2013_$5,000"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Your_Own_Back_Yard"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_First_Round-Up"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Wrong_Again"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chicken_Feed"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/At_the_Old_Stage_Door"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Get_Out_and_Get_Under"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/When_the_Wind_Blows_(1930_film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Luke's_Fireworks_Fizzle"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Fourth_Alarm"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ragtime_Snap_Shots"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fly_My_Kite"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Roamin'_Holiday"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Noisy_Noises"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Putting_Pants_on_Philip"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sic_'Em,_Towser"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Say_It_with_Babies"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Spring_Fever_(1919_film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Baby_Brother"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Be_My_Wife_(1919_film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Swing_Your_Partners"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Scram!"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/An_Eastern_Westerner"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Flying_Elephants"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Boys_to_Board"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hide_and_Shriek"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/School_Begins"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Look_Pleasant,_Please"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Luke_Locates_the_Loot"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Isn't_Life_Terrible%3F"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Luke's_Busy_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Whole_Truth_(1923_film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Should_Tall_Men_Marry%3F"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Great_While_It_Lasted"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/General_Spanky"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Crazy_House_(1928_film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Glorious_Fourth_(film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Short_Kilts"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Dutiful_Dub"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Three_Men_in_a_Tub"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Going_Bye-Bye!"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Why_Girls_Say_No"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Helpmates"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Devil's_Brother"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Nickel-Hopper"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Number,_Please%3F"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lonesome_Luke,_Plumber"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sailors,_Beware!"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Housekeeper's_Daughter"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lodge_Night"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Thicker_than_Water_(1935_film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Good_Cheer"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Whispering_Whoopee"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rainbow_Island"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Big_Business_(1929_film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Every_Man_for_Himself_(1924_film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Off_the_Trolley"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Yanks_Ahoy"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Luke's_Trolley_Troubles"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bliss_(1917_film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Captain_Kidd's_Kids"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Should_Married_Men_Go_Home%3F"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Now_I'll_Tell_One"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Oranges_and_Lemons_(film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Our_Relations"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/That's_Him"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Mysterious_Mystery!"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Scorching_Sands"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Luke's_Washful_Waiting"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Move_On_(1917_film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Luke's_Lost_Lamb"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kicked_Out_(film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/From_Soup_to_Nuts"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dirty_Work_(1933_film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Luke,_Patient_Provider"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Topper_(film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Little_Daddy"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Double_Whoopee"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ask_Father"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Growing_Pains_(1928_film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lonesome_Luke's_Lively_Life"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nothing_but_Trouble_(1918_film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Edison,_Marconi_&_Co."}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/45_Minutes_from_Hollywood"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fireman_Save_My_Child_(1918_film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Luke,_Rank_Impersonator"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bargain_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Election_Day_(film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lonesome_Luke_Loses_Patients"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Turnabout_(film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Should_Men_Walk_Home%3F"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Luke's_Late_Lunchers"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Pigskin_Palooka"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bear_Shooters"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Spook_Spoofing"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/No_Noise"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/White_Wings"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Two-Gun_Gussie"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fluttering_Hearts"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pass_the_Gravy"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Helping_Grandma"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kelly_the_Second"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tit_for_Tat_(film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Back_to_the_Woods_(1918_film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lonesome_Luke_Lolls_in_Luxury"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Now_or_Never_(film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Call_of_the_Wild_(1923_film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Two_Knights_from_Brooklyn"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Barnum_&_Ringling,_Inc."}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Save_the_Ship"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/A_Chump_at_Oxford"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Taxi,_Mister"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chickens_Come_Home"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/She_Loves_Me_Not_(1918_film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ten_Years_Old"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Young_Sherlocks"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Playin'_Hookey"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Just_Rambling_Along"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Saturday_Morning_(1922_film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Spanky_(film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Two-Time_Mama"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Their_Purple_Moment"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Choo-Choo!"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tinkering_with_Trouble"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Slipping_Wives"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Berth_Marks"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lonesome_Luke's_Honeymoon"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Love_Business"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Love_My_Dog"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Little_Sinner"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Habeas_Corpus_(1928_film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Stage_Fright_(1923_film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Haunted_Honeymoon"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Holy_Terror_(1929_film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Why_Girls_Love_Sailors"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mush_and_Milk"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Rajah_(film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Leave_'Em_Laughing"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Big_Business_(1924_film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Niagara_Falls_(1941_film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Next_Aisle_Over"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Hoose-Gow"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pete,_the_Pedal_Polisher"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Short_Orders"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nobody's_Baby_(1937_film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/There_Goes_My_Heart_(film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/No_Place_Like_Jail"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bride_and_Gloom_(film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Roughest_Africa"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/I'm_on_My_Way_(film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Smithy_(1924_film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kicking_the_Germ_Out_of_Germany"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Any_Old_Port!"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fall_In"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pay_as_You_Exit"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bees_in_His_Bonnet"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Luke_Rides_Roughshod"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lonesome_Luke,_Messenger"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Saturday's_Lesson"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Count_Your_Change"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Olympic_Games_(film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Sun_Down_Limited"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Men_O'_War"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Ol'_Gray_Hoss"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Luke_Lugs_Luggage"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pistols_for_Breakfast"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Night_'n'_Gales"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Monkey_Business_(1926_film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Luke_Joins_the_Navy"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Peculiar_Patients'_Pranks"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/They_Go_Boom"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Luke's_Society_Mixup"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Awful_Tooth"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Reunion_in_Rhythm"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Wife_Tamers"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Busy_Bodies"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Be_Your_Age"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lonesome_Luke,_Lawyer"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dogs_is_Dogs"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Small_Talk_(film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fire_Fighters_(film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Boys_Will_Be_Joys"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Beyond_His_Fondest_Hopes"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Our_Gang_(film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Big_Idea_(1917_film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/It's_a_Bear"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Non-Stop_Kid"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Over_the_Fence_(1917_film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Free_Eats"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Timber_Queen"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Luke,_Crystal_Gazer"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bonnie_Scotland"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kill_or_Cure_(1923_film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mr._Cinderella"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/A_Tough_Winter"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Night_Owls_(1930_film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/A_Mixup_for_Mazie"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bashful_(film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Washee_Ironee"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tired_Business_Men"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Back_Stage_(1923_film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Perfect_Day_(1929_film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Look_Out_Below"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mike_Fright"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Marathon_(film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Yes,_Yes,_Nanette"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Forgotten_Babies"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Let's_Go_(film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Them_Thar_Hills"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lonesome_Luke,_Circus_King"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Luke_Wins_Ye_Ladye_Faire"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nomads_of_the_North"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/We_Faw_Down"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/On_the_Fire"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Blotto_(film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lonesome_Luke's_Wild_Women"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Birthday_Blues"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Haunted_Spooks"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Luke_and_the_Rural_Roughnecks"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Little_Papa"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Liberty_(1929_film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Luke's_Newsie_Knockout"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Uncle_Tom's_Uncle"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/A_Jazzed_Honeymoon"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Luke_Laughs_Last"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Birds_of_a_Feather_(1917_film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bedtime_Worries"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Get_'Em_Young"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Another_Wild_Idea"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_City_Slicker"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Second_Childhood_(film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Angora_Love"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Swiss_Miss_(film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Champeen"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/On_the_Wrong_Trek"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Chimp"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dog_Heaven"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Clubs_Are_Trump"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Call_of_the_Cuckoo"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hook_and_Ladder_(1932_film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/By_the_Sad_Sea_Waves"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Beau_Hunks"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dog_Shy"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Should_Sailors_Marry%3F"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Three_Smart_Boys"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mail_and_Female"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Honorable_Mr._Buggs"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Come_Clean_(film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Canned_Fishing"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hit_Him_Again"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Zenobia_(film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Saps_at_Sea"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sugar_Daddies"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/On_the_Loose_(1931_film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Love_'em_and_Weep"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Teacher's_Beau"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Before_Breakfast"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Readin'_and_Writin'"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Luke's_Movie_Muddle"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Kid_from_Borneo"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ruses,_Rhymes_and_Roughnecks"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Collars_and_Cuffs"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/A_Gasoline_Wedding"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Official_Officers"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rupert_of_Hee_Haw"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Luke_Pipes_the_Pippins"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Wild_Papa"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Music_Box"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Madame_Mystery"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Love_Bug_(1925_film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Safety_Last!"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Battle_of_the_Century"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/All_Aboard_(film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Luke's_Fatal_Flivver"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Going!_Going!_Gone!"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Luke_and_the_Bomb_Throwers"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Why_Men_Work"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pick_and_Shovel"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fair_and_Muddy"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Two_Tars"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/From_Hand_to_Mouth"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Luke_Foils_the_Villain"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Willie_Runs_the_Park"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Brats"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Finishing_Touch"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Luke's_Double"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pick_a_Star"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bughouse_Bellhops"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hoot_Mon!"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/You're_Darn_Tootin'"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/From_Laramie_to_London"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/School's_Out_(1930_film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Giants_vs._Yanks"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pinched"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Her_Dangerous_Path"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Miss_Polly"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Luke,_the_Chauffeur"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_First_Seven_Years"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Soilers"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Big_Town_(1925_film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Shrimps_for_a_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Circus_Fever"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lonesome_Luke,_Social_Gangster"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Topper_Returns"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Wild_Poses"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hog_Wild_(1930_film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lonesome_Luke,_Mechanic"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/We_Never_Sleep_(film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/With_Love_and_Hisses"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Luke_Does_the_Midway"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Hal_Roach", "surface form": "Hal Roach"}], "relations": [{"URI": "http://dbpedia.org/ontology/numberOfFilms", "surface form": "films"}, {"URI": "http://dbpedia.org/ontology/wineProduced", "surface form": "produced"}]}, {"id": "162", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Who played Agent Smith in Matrix?", "keywords": "played, Agent Smith, Matrix"}], "query": {"sparql": "PREFIX res: <http://dbpedia.org/resource/> PREFIX dbp: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Agent_Smith <http://dbpedia.org/ontology/portrayer> ?uri }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hugo_Weaving"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ian_Bliss"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Agent_Smith", "surface form": "Agent Smith"}], "relations": [{"URI": "http://dbpedia.org/ontology/portrayer", "surface form": "played"}]}, {"id": "163", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Which Greek parties are pro-European?", "keywords": "Greek party, pro-European"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/PoliticalParty> ; <http://dbpedia.org/ontology/country> <http://dbpedia.org/resource/Greece> ; <http://dbpedia.org/ontology/ideology> <http://dbpedia.org/resource/Pro-Europeanism> }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Union_of_Centrists"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Democratic_Alignment_(2015)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/New_Democracy_(Greece)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Movement_of_Democratic_Socialists"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Radical_Movement_of_Social_Democratic_Alliance"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/PASOK"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Movement_of_Free_Citizens"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Olive_Tree_(Greece)"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Greece", "surface form": "Greek parties are pro-European"}, {"URI": "http://dbpedia.org/resource/Early_Greek_parties", "surface form": "Greek parties are pro-European"}], "relations": [{"URI": "http://dbpedia.org/ontology/country", "surface form": ""}]}, {"id": "164", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Give me a list of all bandleaders that play trumpet.", "keywords": "bandleader, play, trumpet"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/occupation> <http://dbpedia.org/resource/Bandleader> ; <http://dbpedia.org/ontology/instrument> <http://dbpedia.org/resource/Trumpet> }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Terumasa_Hino"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Adam_Taubitz"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jacobo_Rubalcaba"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jimmy_Dorsey"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pacho_Galan"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Abatte_Barihun"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jimmy_Vivino"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Billie_Rogers"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lloyd_Hunter"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hot_Lips_Page"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Wayne_Bergeron"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Clifford_Thornton"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Richard_Maltby,_Sr."}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Doc_Cheatham"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ovie_Alston"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pete_Brown_(jazz_musician)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Don_Albert"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bobby_Hackett"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Charlie_Spivak"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Guy_Barker"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Neil_Yates"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Louis_Prima"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gerald_Wilson"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Willie_Mitchell_(musician)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Orbert_Davis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sean_Jones_(trumpeter)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Henry_Jerome"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Brad_Turner_(musician)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ollie_Mitchell"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Artie_Fields"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ernest_%22Doc%22_Paulin"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mark_Masters_(musician)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Erskine_Hawkins"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jack_Jackson_(British_radio)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gerard_Presencer"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Joe_Wilder"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Doc_Severinsen"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alan_Silva"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Red_Perkins"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Wingy_Manone"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cleveland_Eaton"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Papa_Celestin"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Danny_Davis_(country_musician)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Maynard_Ferguson"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Theodore_Carpenter"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Marlon_Jordan"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Geraldo_(bandleader)", "surface form": "bandleaders"}], "relations": [{"URI": "http://dbpedia.org/ontology/starring", "surface form": "play"}, {"URI": "http://dbpedia.org/ontology/head", "surface form": "trumpet"}]}, {"id": "165", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "What is the second highest mountain on Earth?", "keywords": "mountain, second highest"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Mountain> ; <http://dbpedia.org/ontology/elevation> ?elevation } ORDER BY DESC(?elevation) OFFSET 1 LIMIT 1"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Y_Ro_Wen"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Earth", "surface form": "Earth"}], "relations": [{"URI": "http://dbpedia.org/ontology/elevation", "surface form": "highest mountain"}]}, {"id": "166", "answertype": "boolean", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Is Egypts largest city also its capital?", "keywords": "largest city, Egypt, capital"}], "query": {"sparql": "ASK WHERE { <http://dbpedia.org/resource/Egypt> <http://dbpedia.org/ontology/largestCity> ?large ; <http://dbpedia.org/ontology/capital> ?capital FILTER ( ?large = ?capital ) }"}, "answers": [{"head": {}, "results": {}, "boolean": false}], "entities": [{"URI": "http://dbpedia.org/resource/Largest_octopus", "surface form": "Egypts largest city"}], "relations": [{"URI": "http://dbpedia.org/ontology/capital", "surface form": "capital"}]}, {"id": "167", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Which rockets were launched from Baikonur?", "keywords": "rockets, launched, Baikonur"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Rocket> ; <http://dbpedia.org/ontology/launchSite> <http://dbpedia.org/resource/Baikonur_Cosmodrome> }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Energia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vostok-2_(rocket)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Soyuz-U2"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Soyuz-2-1v"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Proton_(rocket_family)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sunkar"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Molniya-M"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vostok-K"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Soyuz_(rocket)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/R-7A_Semyorka"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Zenit_(rocket_family)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/N1_(rocket)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rokot"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Soyuz-FG"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vostok-L"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Zenit-3F"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Soyuz-L"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Proton-K"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Buran_programme"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dnepr_(rocket)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vostok_(rocket_family)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Proton-M"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vostok-2M"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Soyuz-U"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Zenit-2"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tsyklon"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sputnik_(rocket)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Strela_(rocket)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Soyuz/Vostok"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Voskhod_(rocket)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tsyklon-2"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Zenit-3SLB"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Soyuz_(rocket_family)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Zenit-2M"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kosmos-3"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kosmos-1"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Polyot_(rocket)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Soyuz-2"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Baikonur_Cosmodrome_Site_109", "surface form": "Baikonur"}], "relations": [{"URI": "http://dbpedia.org/ontology/capital", "surface form": "rockets"}, {"URI": "http://dbpedia.org/ontology/totalLaunches", "surface form": "launched"}]}, {"id": "168", "answertype": "number", "aggregation": true, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "How many programming languages are there?", "keywords": "how many, programming languages"}], "query": {"sparql": "SELECT (COUNT(DISTINCT ?uri) AS ?c) WHERE { ?uri a <http://dbpedia.org/ontology/ProgrammingLanguage> }"}, "answers": [{"head": {"vars": ["c"]}, "results": {"bindings": [{"c": {"type": "literal", "value": "2031"}}]}}], "entities": [], "relations": [{"URI": "http://dbpedia.org/ontology/programmingLanguage", "surface form": "programming languages"}]}, {"id": "169", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Which Chess players died in the same place they were born in?", "keywords": "chess players, British earl, die, same, place, born"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/ChessPlayer> ; <http://dbpedia.org/ontology/birthPlace> ?x ; <http://dbpedia.org/ontology/deathPlace> ?y FILTER ( ?x = ?y ) }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alessandro_Salvio"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Olga_Ignatieva"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Eero_B\u00f6\u00f6k"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alexandre_Deschapelles"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alb\u00e9ric_O'Kelly_de_Galway"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Yakov_Estrin"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alexander_Koblencs"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vladimir_Antoshin"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dragoljub_Jano\u0161evi\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gilles_Andruet"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vitaly_Chekhover"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Anatoly_Lutikov"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Witold_Balcerowski"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Romuald_Grabczewski"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/K\u0101rlis_Kl\u0101sups"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vladimir_Zagorovsky"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Borislav_Mili\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rodolfo_Tan_Cardoso"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Yuri_Razuvaev"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Reuben_Fine"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ernst_Gr\u00fcnfeld"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/G\u00f6sta_Stoltz"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Milan_Matulovi\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Szymon_Winawer"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/P\u00e9ter_Sz\u00e9kely"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Zandor_Nilsson"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Olga_Rubtsova"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lothar_Schmid"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Giorgio_Porreca"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dragoljub_\u010ciri\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Aleksander_Arulaid"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Helmuth_Luik"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Carlos_Torre_Repetto"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Leonid_Yurtaev"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/William_Winter_(chess_player)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/L\u00e1szl\u00f3_Szab\u00f3_(chess_player)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jacek_Bednarski"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tassilo_von_Heydebrand_und_der_Lasa"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Olga_Semenova_Tyan-Shanskaya"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Anna_Jurczy\u0144ska"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Isaac_Lipnitsky"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Yulian_Radulski"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Max_Euwe"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kalju_Pitksaar"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Frederick_Yates"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Karen_Asrian"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Valter_Heuer"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alexander_Zaitsev_(chess_player)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alexey_Vyzmanavin"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kurt_Richter"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Francis_Joseph_Lee"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Enrico_Paoli"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Edward_Freeborough"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alexander_Tolush"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vasily_Smyslov"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mato_Damjanovi\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Adolf_Anderssen"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Reginald_Bonham"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Antonia_Ivanova"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Istv\u00e1n_Bilek"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/J\u00fcri_Randviir"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Raul_Renter"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Thomas_Wilson_Barnes"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Arvid_Kubbel"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bertil_Sundberg"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Paul_Morphy"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hugh_Blandford"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Harry_Golombek"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Levente_Lengyel"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Zbigniew_Doda"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/J\u0101nis_Klov\u0101ns"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Edgard_Colle"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Liu_Wenzhe"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Miroslav_Filip"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/So\u0148a_Pertlov\u00e1"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/James_Grundy_(chess_player)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Igor_Kurnosov"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mikhail_Botvinnik"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alexander_Lastin"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Louis_Eichborn"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/August_Eller"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hrvoje_Bartolovi\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Max_Lange"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Georgi_Tringov"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Frank_Marshall_(chess_player)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/G\u00e9za_Mar\u00f3czy"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dawid_Przepi\u00f3rka"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Stefan_Witkowski"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Wiktor_Balcarek"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Shukhrat_Safin"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Karl_Robatsch"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Svetozar_Gligori\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dragoljub_Velimirovi\u0107"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Maxwell_Fuller"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nenad_Petrovi\u0107_(chess_composer)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mir_Sultan_Khan"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tony_Miles"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gyula_Sax"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Napoleon_Marache"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gavriil_Veresov"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/\u00c9va_Karakas"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/The_Chess_Players_(film)", "surface form": "Chess players"}], "relations": [{"URI": "http://dbpedia.org/ontology/deathDate", "surface form": "died"}, {"URI": "http://dbpedia.org/ontology/place", "surface form": "place"}, {"URI": "http://dbpedia.org/ontology/birthPlace", "surface form": "born"}]}, {"id": "170", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Who is the owner of Facebook?", "keywords": "owner, Facebook"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Facebook> <http://dbpedia.org/ontology/foundedBy> ?uri }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Eduardo_Saverin"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mark_Zuckerberg"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dustin_Moskovitz"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Andrew_McCollum"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chris_Hughes"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Facebook", "surface form": "Facebook"}], "relations": [{"URI": "http://dbpedia.org/ontology/owner", "surface form": "owner"}]}, {"id": "171", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Give me all movies with Tom Cruise.", "keywords": "movie, Tom Cruise"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Film> ; <http://dbpedia.org/ontology/starring> <http://dbpedia.org/resource/Tom_Cruise> }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/All_the_Right_Moves_(film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Collateral_(film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Interview_with_the_Vampire_(film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Outsiders_(film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Far_and_Away"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Last_Samurai"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Top_Gun"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Risky_Business"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/A_Few_Good_Men"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Color_of_Money"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Mummy_(2017_film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jerry_Maguire"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Legend_(1985_film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vanilla_Sky"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Valkyrie_(film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Knight_and_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lions_for_Lambs"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mission:_Impossible_(film_series)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cocktail_(1988_film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mission:_Impossible_(film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Born_on_the_Fourth_of_July_(film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Magnolia_(film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Firm_(1993_film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Minority_Report_(film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rain_Man"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Losin'_It"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Tom_Cruise", "surface form": "Tom Cruise"}], "relations": [{"URI": "http://dbpedia.org/ontology/film", "surface form": "movies"}]}, {"id": "172", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "In which U.S. state is Fort Knox located?", "keywords": "Fort Knox, located, U.S. state"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX dbp: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Fort_Knox dbo:location ?uri . ?uri dbo:country res:United_States }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kentucky"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/United_States", "surface form": "U.S."}, {"URI": "http://dbpedia.org/resource/Fort_Knox", "surface form": "Fort Knox"}], "relations": [{"URI": "http://dbpedia.org/property/location", "surface form": "located"}, {"URI": "http://dbpedia.org/ontology/country", "surface form": "state"}]}, {"id": "173", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Give me all cities in New Jersey with more than 100000 inhabitants.", "keywords": "New Jersey, city, inhabitants, more than 100000"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX dbp: <http://dbpedia.org/property/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:City ; dbo:isPartOf res:New_Jersey ; dbo:populationTotal ?inhabitants FILTER ( ?inhabitants > 100000 ) }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Newark,_New_Jersey"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jersey_City,_New_Jersey"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Elizabeth,_New_Jersey"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Paterson,_New_Jersey"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/New_Jersey", "surface form": "New Jersey"}, {"URI": "http://dbpedia.org/resource/100000_(disambiguation)", "surface form": "100000 inhabitants"}], "relations": [{"URI": "http://dbpedia.org/ontology/country", "surface form": "cities"}]}, {"id": "174", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Which mountains are higher than the Nanga Parbat?", "keywords": "mountain, higher, Nanga Parbat"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Nanga_Parbat> <http://dbpedia.org/ontology/elevation> ?elevation . ?uri a <http://dbpedia.org/ontology/Mountain> { ?uri <http://dbpedia.org/ontology/elevation> ?otherelevation } UNION { ?uri <http://dbpedia.org/property/elevationM> ?otherelevation } FILTER ( ?otherelevation > ?elevation ) }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lhotse_Shar"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kangchenjunga"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cho_Oyu"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dhaulagiri"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lhotse"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Makalu"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Manaslu"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/South_Summit_(Mount_Everest)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kings_Peak_(Idaho)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lhotse_Middle"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Y_Ro_Wen"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Nanga_Parbat", "surface form": "Nanga Parbat"}], "relations": [{"URI": "http://dbpedia.org/ontology/elevation", "surface form": "mountains"}, {"URI": "http://dbpedia.org/ontology/elevation", "surface form": "higher"}]}, {"id": "175", "answertype": "string", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Give me all B-sides of the Ramones.", "keywords": "Ramones, B-sides"}], "query": {"sparql": "SELECT DISTINCT ?string WHERE { ?x <http://dbpedia.org/ontology/musicalArtist> <http://dbpedia.org/resource/Ramones> ; <http://dbpedia.org/ontology/bSide> ?string }"}, "answers": [{"head": {"vars": ["string"]}, "results": {"bindings": [{"string": {"type": "literal", "value": "\"No-One Could Ever Love You More\" (Norway)"}}, {"string": {"type": "literal", "value": "\"Babysitter\""}}, {"string": {"type": "literal", "value": "Censorshit"}}, {"string": {"type": "literal", "value": "\"I Don't Care\""}}, {"string": {"type": "literal", "value": "\"Go Home Ann\" (12\" only)"}}, {"string": {"type": "literal", "value": "\"Gee Girl\""}}, {"string": {"type": "literal", "value": "\"Miss Joan And Mr. Sam\""}}, {"string": {"type": "literal", "value": "\"Do You Wanna Dance?\""}}, {"string": {"type": "literal", "value": "\"California Sun\" / \"I Dont Wanna Walk Around With You\" (live)"}}, {"string": {"type": "literal", "value": "\"Daytime Dilemma (Dangers of Love)\""}}, {"string": {"type": "literal", "value": "\"Saturday Night Out\""}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/The_B-Sides", "surface form": "B-sides of the Ramones"}], "relations": []}, {"id": "176", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "What are the specialities of the UNC Health Care?", "keywords": "specialities, UNC Health Care"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/UNC_Health_Care> <http://dbpedia.org/property/speciality> ?uri }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cancer"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Trauma_center"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Traditional_Specialities_Guaranteed", "surface form": "specialities"}, {"URI": "http://dbpedia.org/resource/UNC", "surface form": "UNC"}, {"URI": "http://dbpedia.org/resource/Health_care", "surface form": "Health Care"}], "relations": []}, {"id": "177", "answertype": "date", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "When was Olof Palme shot?", "keywords": "date, Olof Palme, shot"}], "query": {"sparql": "SELECT DISTINCT ?date WHERE { <http://dbpedia.org/resource/Olof_Palme> <http://dbpedia.org/ontology/deathDate> ?date }"}, "answers": [{"head": {"vars": ["date"]}, "results": {"bindings": [{"date": {"type": "literal", "value": "1986-2-28"}}, {"date": {"type": "literal", "value": "1986-02-28"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Olof_Palme", "surface form": "Olof Palme"}], "relations": [{"URI": "http://dbpedia.org/ontology/discharge", "surface form": "shot"}]}, {"id": "178", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "List the seven kings of Rome.", "keywords": "kings, Rome"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/title> <http://dbpedia.org/resource/King_of_Rome> }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tullus_Hostilius"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lucius_Tarquinius_Superbus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Servius_Tullius"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ancus_Marcius"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Romulus_and_Remus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Numa_Pompilius"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lucius_Tarquinius_Priscus"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Rome", "surface form": "Rome"}], "relations": [{"URI": "http://dbpedia.org/ontology/leader", "surface form": "kings"}]}, {"id": "179", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Give me all people that were born in Vienna and died in Berlin.", "keywords": "people, born, Vienna, die, Berlin"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/birthPlace> <http://dbpedia.org/resource/Vienna> ; <http://dbpedia.org/ontology/deathPlace> <http://dbpedia.org/resource/Berlin> }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Michael_von_Newlinsky"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/John_Reinhardt_(director)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Heinrich_Ehrlich"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Emil_von_Reznicek"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Luise_Begas-Parmentier"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Adolf_Klein"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Michael_Meinecke"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Marie_von_Buelow"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Irene_Prador"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Steffie_Spira"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alfred_Halm"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Eduard_von_Winterstein"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Edmund_Meisel"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hilde_K\u00f6rber"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Eduard_Peithner_von_Lichtenfels"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Friedrich_Leitner"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tilla_Durieux"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Josef_Rufer"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Therese_Gr\u00fcnbaum"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fritz_Richard"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hugo_Flink"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alexander_Meissner"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Grete_von_Zieritz"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Karl_Etlinger"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Karl_Hellmer"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mathilde_Danegger"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Robert_Reinert"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Oscar_Sabo"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rudolf_Walther-Fein"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Willy_Trenk-Trebitsch"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Guido_von_List"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gerda_Laski"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Karoline_Seidler-Wranitzky"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hanna_Berger"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Leo_Mittler"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hans_Fidesser"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jacob_Taubes"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Viktoria_von_Ballasko"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Richard_Thurnwald"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Helene_Weigel"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Johann_Alexander_Hubler-Kahla"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Johann_Strauss_III"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Robert_Bodanzky"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Vienna", "surface form": "Vienna"}, {"URI": "http://dbpedia.org/resource/Berlin", "surface form": "Berlin"}], "relations": [{"URI": "http://dbpedia.org/ontology/birthPlace", "surface form": "born"}, {"URI": "http://dbpedia.org/ontology/flag", "surface form": "died"}]}, {"id": "180", "answertype": "boolean", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Is Darth Vader Luke\u2019s father?", "keywords": "Darth Vader, father, Luke"}], "query": {"sparql": "ASK WHERE { <http://dbpedia.org/resource/Darth_Vader> <http://dbpedia.org/ontology/child> <http://dbpedia.org/resource/Luke_Skywalker> }"}, "answers": [{"head": {}, "results": {}, "boolean": true}], "entities": [{"URI": "http://dbpedia.org/resource/Darth_Vader", "surface form": "Darth Vader Luke\u2019s father"}], "relations": []}, {"id": "181", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Show me all the breweries in Australia.", "keywords": "breweries, Australia"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Brewery> { ?uri <http://dbpedia.org/ontology/location> <http://dbpedia.org/resource/Australia> } UNION { ?uri <http://dbpedia.org/ontology/location> ?x . ?x <http://dbpedia.org/ontology/country> <http://dbpedia.org/resource/Australia> } }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cascade_Brewery"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Copper_Coast_Wines"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Matilda_Bay_Brewing_Company"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Palm_Breweries", "surface form": "Breweries in Australia"}], "relations": [{"URI": "http://dbpedia.org/ontology/show", "surface form": "show"}]}, {"id": "182", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Give me all films produced by Steven Spielberg with a budget of at least $80 million.", "keywords": "films, producer, Steven Spielberg, production budget, $80 million"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film> . ?uri <http://dbpedia.org/ontology/director> <http://dbpedia.org/resource/Steven_Spielberg> . ?uri <http://dbpedia.org/ontology/budget> ?b . FILTER( xsd:double(?b) >= 8.0E7 ) }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Adventures_of_Tintin_(film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/A.I._Artificial_Intelligence"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_BFG_(2016_film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Indiana_Jones_(franchise)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Minority_Report_(film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/War_of_the_Worlds_(2005_film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Indiana_Jones_and_the_Kingdom_of_the_Crystal_Skull"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Steven_Spielberg", "surface form": "Steven Spielberg"}, {"URI": "http://dbpedia.org/resource/Boeing_80", "surface form": "$80"}], "relations": [{"URI": "http://dbpedia.org/ontology/production", "surface form": "films"}, {"URI": "http://dbpedia.org/ontology/manufacturer", "surface form": "produced"}, {"URI": "http://dbpedia.org/ontology/budget", "surface form": "budget"}]}, {"id": "183", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Give me all soccer clubs in Spain.", "keywords": "Spain, soccer club"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/SoccerClub> { ?uri <http://dbpedia.org/ontology/ground> <http://dbpedia.org/resource/Spain> } UNION { ?uri <http://dbpedia.org/property/ground> ?ground FILTER regex(?ground, \"Spain\") } }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CF_Balaguer"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Villarreal_CF_(youth)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/UD_Los_Palacios"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jumilla_CF"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CD_Teruel"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Club_Ol\u00edmpico_de_Totana"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pego_CF"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CD_Corralejo"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Santa_Pola_CF"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Xota_FS"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/UD_Almer\u00eda"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Zaragoza_CD"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/La_Roda_CF"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Racing_de_Ferrol"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CD_Motril_Atl\u00e9tico"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Valencia_F\u00e9minas_CF"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/M\u00e9rida_AD"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CP_Amanecer"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/FS_Zamora"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/SD_Noja"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Barbate_CF"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CP_Malpartida"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/FC_Barcelona_Futsal"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/AD_Hurac\u00e1n"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CD_Guadalajara_(Spain)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CD_Quintanar_del_Rey"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cand\u00e1s_CF"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Linares_Deportivo"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CD_El_\u00c1lamo"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/SD_Chantada"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Palencia_CF"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/SD_Hullera_Vasco-Leonesa"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Atl\u00e9tico_Tarazona"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CD_River_Ega"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/UD_Horadada"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Santa_Comba_CF"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/SD_San_Pedro"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CD_Varea"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/UE_Rapitenca"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/UD_Gij\u00f3n_Industrial"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CD_Burela_FS"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/ED_Moratalaz"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CD_Berceo"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CD_Cristo_Atl\u00e9tico"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Real_Tapia_CF"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vallecas_CF"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Xerez_FC"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CD_Coria"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bermeo_FT"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CD_Mairena"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CD_Lumbreras"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Utebo_FC"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Manchego_CF"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Club_San_Ignacio"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/UD_Las_Zocas"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Atl\u00e9tico_Arteixo"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/FS_Garc\u00eda"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/UD_Aretxabaleta"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CF_Villanovense"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CD_Arenas_de_Frajanas"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/AD_Torpedo_66"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CD_Brunete"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CD_D\u00edter_Zafra"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CA_Cirbonero"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CD_Nacional_de_Madrid"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CD_Ciempozuelos"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Extremadura_UD_B"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CD_Orientaci\u00f3n_Mar\u00edtima"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Club_Siero"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CD_La_Uni\u00f3n"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CD_Tenerife"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CF_Norma_San_Leonardo"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/AD_Fundaci\u00f3n_Logro\u00f1\u00e9s"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CD_Arnedo"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Deportivo_Pacense"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Zamudio_SD"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CD_Pontejos"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ciudad_de_Lorca_CF"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/FS_Baix_Maestrat"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/AD_Orcasitas"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/FC_Santboi\u00e0"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sestao_Sport_Club"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/UD_Maracena"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Haro_Deportivo"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CD_Lal\u00edn"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Celta_de_Vigo_B"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Motril_CF"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Extremadura_UD"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Meng\u00edbar_CF"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Atl\u00e9tico_Mancha_Real"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ourense_FS"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CD_Banyoles"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Castillo_CF"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Navia_CF"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alicante_CF"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CD_Linares"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CFS_Bisontes_Castell\u00f3n"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Marino_de_Luanco"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/GCE_Villaralbo"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Polideportivo_Ejido_B"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CE_Alaior"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CD_Ariznabarra"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CD_Actur_Pablo_Iglesias"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Yag\u00fce_CF"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lorca_Deportiva_CF_B"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/O'Parrulo_FS"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CD_Vera_de_Almer\u00eda"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Apurtuarte_Club"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/AE_Prat"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Casino_del_Real_CF"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CD_Idoya"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/BM_Altea"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CD_\u00cdscar"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/SR_Villaverde_Boetticher_CF"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/BM_Alcobendas"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/UDA_Gramenet"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CD_Miajadas"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Caravaca_CF"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Real_\u00c1vila_CF"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CD_Hurac\u00e1n_Z"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Racing_Club_Portuense"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CD_Azkoyen"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/UD_G\u00e1ldar"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/C\u00f3rdoba_CF_B"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Talavera_FS"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/SD_Logro\u00f1\u00e9s"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Xerez_CD"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CD_Alquer\u00edas"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CD_Ourense"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CD_Ensidesa"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Antequera_CF"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sporting_Club_de_Lutxana"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Uni\u00f3n_Estepona_CF"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Atl\u00e8tic_de_Ciutadella"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/UD_Los_Llanos"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/AD_Torrej\u00f3n_CF_(women)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Atl\u00e9tico_de_Lugones_SD"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/UD_Guadalajara_FS"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/F\u00fatbol_Alcobendas_Sport"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/FS_Cartagena"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CV_Tenerife"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CP_Valdivia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Universidad_de_Las_Palmas_CF"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Atl\u00e9tico_Levante_UD"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CDA_Navalcarnero"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/SD_Beasain"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/AD_Almer\u00eda"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/UD_Melilla"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Meir\u00e1s_CF"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Murcia_Deportivo_CF"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/UD_Pav\u00eda"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ribera_Navarra_FS"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CE_Premi\u00e0"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Club_Lemos"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CD_San_Isidro"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gran_Canaria_FS"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CD_Llanes"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/UCAM_Murcia_CF"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/SD_Octavio_Vigo"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Deportivo_Alav\u00e9s_B"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CV_Las_Palmas"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/JD_Arrate"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CD_Sari\u00f1ena"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/UD_Salamanca_B"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CD_Getxo"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Crevillente_Deportivo"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lorca_Atl\u00e9tico_CF"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/C\u00e1diz_CF_B"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Getafe_CF_B"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CD_Covadonga"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CD_Castell\u00f3n_B"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CD_Agoncillo"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Astur_CF"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CA_Osasuna_B"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Santomera_CF"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Zarautz_KE"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Marsanz_FS"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ribadesella_CF"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CD_Fortuna"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CD_M\u00f3stoles"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/UE_Vic"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CD_Tropez\u00f3n"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CD_Palencia_Balompi\u00e9"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Arandina_CF"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Atl\u00e9tico_Saguntino"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CD_Boiro"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/BM_Ciudad_de_Almer\u00eda"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/AD_San_Juan"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/AD_Colmenar_Viejo"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/UE_Vilassar_de_Mar"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/SD_Buelna"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/UE_Sants"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mejorada_FS"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Valencia_FS"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CD_Ronda"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/UB_Conquense"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sporting_de_Gij\u00f3n_B"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CD_Aguilar"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/UD_Tegueste"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/SD_Reoc\u00edn_(women)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Linares_CF"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CD_Beniel"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Athletic_Club_(women)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/SD_Colloto"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CF_Badalona"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/UD_Tacuense"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CD_Barco"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/SCDR_Anaitasuna"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CD_Vigo_FS"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CF_Vimenor"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CD_El_Palo"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CA_Antoniano"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Real_Betis_B"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Villarreal_CF"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CD_Comarca_de_N\u00edjar"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Santo\u00f1a_CF"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kelme_CF"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CD_Soledad"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Conil_CF"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CD_Blanes"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CD_Los_Y\u00e9benes_San_Bruno"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/FC_Benavent"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hell\u00edn_Deportivo"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CD_Meng\u00edbar"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tomelloso_CF"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CD_La_Granja"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CF_Reus_Deportiu"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/UD_Villa_de_Santa_Br\u00edgida_B"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Zamora_CF"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CD_Ciudad_de_V\u00edcar"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CD_Puerta_Bonita"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/UD_Pu\u00e7ol"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CD_Carranque"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/SD_Atl\u00e9tico_Albericia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Callosa_Deportiva_CF"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CD_San_Fernando"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Antiguoko"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/UD_Ibarra"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/UD_Ibiza-Eivissa"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lleida_Esportiu"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/FC_Palafrugell"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CD_La_Muela"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CD_Cieza"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/AD_Cerro_de_Reyes"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/FC_Barcelona_(beach_soccer)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CD_Marianao_Poblet"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CF_Vilanova"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Reus_Deportiu"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/AD_Sabi\u00f1\u00e1nigo"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CD_Legan\u00e9s_B"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CD_Baza"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CD_Ourense_B"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/AD_Torrej\u00f3n_CF"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CD_Tortosa"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CD_Tede\u00f3n_EF"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CE_Const\u00e0ncia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sevilla_FC_C"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CD_Betis_San_Isidro"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Moralo_CP"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/UD_Las_Rozas_Boadilla"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/SD_Ejea"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CF_La_Uni\u00f3n"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/AD_Villaviciosa_de_Od\u00f3n"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/SP_Castilblanco"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CD_As_Pontes"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Uni\u00f3n_SC"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CFS_Jumilla"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/AD_El_Pardo"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/SD_Lemona"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CP_Granada_74"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CD_Condal"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CF_Gandar\u00edo_Sanse"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sangonera_Atl\u00e9tico_CF"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Santiago_Futsal"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Yeclano_Deportivo"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CD_Victoria_(Spain)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Real_Zaragoza"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/SE_Eivissa-Ibiza_B"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/UDC_Txantrea"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Urraca_CF"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Real_Betis_(women)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/SD_\u00d3rdenes"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CA_Bembibre"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Benidorm_CF"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CD_Manchego"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Racing_Club_Vilalb\u00e9s"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CF_Ribamont\u00e1n_al_Mar"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gal\u00e1ctico_Pegaso"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mazarr\u00f3n_CF"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Universidad_de_Las_Palmas_CF_B"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/BM_Puerto_Sagunto"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Monta\u00f1eros_CF"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Atl\u00e9tico_Valdemoro"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CD_Uni\u00f3n_Criptanense"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Betanzos_CF"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CE_Manresa"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Granada_Atl\u00e9tico_CF"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CD_Numancia_B"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Imperio_de_M\u00e9rida_CP"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CFS_Bilbao"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/HC_Liceo_La_Coru\u00f1a"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sporting_Villanueva_Promesas"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/UC_La_Estrella"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CD_Marchamalo"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ribarroja_CF"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/FC_Asc\u00f3"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Villarrubia_CF"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ruta_Leonesa_FS"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CD_Cudillero"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sevilla_Atl\u00e9tico"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Palam\u00f3s_CF"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Logro\u00f1\u00e9s_CF"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/SD_Ciudad_de_Santiago"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/RSD_Santa_Isabel"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/UE_Vilaju\u00efga"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CD_Santurtzi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Torrellano_CF"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CD_Bezana"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CD_Praviano"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CD_Cobeja"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CD_Madridejos"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CF_Jacetano"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/UD_Alzira"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/UD_Lanzarote"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/V\u00e9lez_CF"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Unionistas_de_Salamanca_CF"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CD_Lealtad"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/SD_Navarro_CF"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/UD_Los_Barrios"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lorca_FC"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CD_Laredo"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nar\u00f3n_BP"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Igualada_HC"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/ElPozo_Murcia_FS"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pe\u00f1a_Sport_FC"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/UD_Logro\u00f1\u00e9s"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CD_Tineo"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/SD_Negreira"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CD_Colmenar_de_Oreja"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CD_Bin\u00e9far"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Deportivo_Rayo_Cantabria"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Unami_Club_Polideportivo"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CD_Pe\u00f1a_Azagresa"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/UD_Tijarafe"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/La_Gineta_CF"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Salamanca_AC"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CAV_Murcia_2005"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CD_Cobe\u00f1a"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/UE_Alc\u00fadia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Athletic_Bilbao_Juvenil"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CD_Ferriolense"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/UD_Fuerteventura"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Villanueva_CF"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/C\u00e9ltiga_FC"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Orihuela_Deportiva_CF"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CD_Arenteiro"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alhaur\u00edn_de_la_Torre_CF"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Catarroja_CF"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Real_Uni\u00f3n"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/UD_Poblense"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dos_Hermanas_CF"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Zalla_UC"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CE_Sant_Gabriel_(women)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/UD_Llanera"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CD_Alfaro"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/UD_Somozas"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gran_Pe\u00f1a_FC"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sevilla_FC_(women)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Atl\u00e9tico_Boadilla_FS"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/DAV_Santa_Ana"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/ACD_San_Marcial"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/AD_Las_Palas"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/UE_Castelldefels"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/SD_O_Val"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CD_Fuencarral"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CD_Lagun_Onak"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pinatar_CF"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gimn\u00e1stica_Segoviana_CF"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/UD_P\u00e1jara_Playas_de_Jand\u00eda"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ver\u00edn_CF"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/AD_Casar_de_C\u00e1ceres"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alcobendas_CF"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Caja_Segovia_FS"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chiclana_CF"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Puerto_Real_CF"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Real_Madrid_Castilla"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CF_Figueruelas"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CA_Marbella"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CD_Zuera"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CCD_Alberite"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CF_Trival_Valderas"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Real_Valladolid_B"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/UD_Villa_de_Santa_Br\u00edgida"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/UD_Santa_Marta"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CD_Estradense"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CD_Cuarte"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CD_Elgoibar"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Club_Nal\u00f3n"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CA_Pinto"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/AD_Uni\u00f3n_Adarve"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/UD_Socu\u00e9llamos"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CP_La_Felguera"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CD_Vic\u00e1lvaro"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CD_Alcoyano"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CP_Calasancio"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/RSD_Alcal\u00e1"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jerez_FS"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/N\u00e1xara_CD"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/UD_Realejos"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CD_Cenicero"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CF_Molina"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CD_Chozas_de_Canales"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CD_Marino"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CD_Teguise"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Xerez_DFC_F\u00fatbol_Sala"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CD_Tur\u00f3n"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CD_Santa_Amalia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/AF_Calahorra"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Club_Portugalete"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/UD_Barbad\u00e1s"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CD_Montu\u00efri"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CD_Torrevieja"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CD_Roquetas"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rayo_Vallecano_B"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CF_Venta_de_Ba\u00f1os"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/SD_Eibar_B"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CD_D\u00e9nia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mar_Menor_CF"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CD_Bupolsa"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CF_Pobla_de_Mafumet"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Real_Uni\u00f3n_de_Tenerife_Club_de_F\u00fatbol"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/SD_Reoc\u00edn"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CD_Gri\u00f1\u00f3n"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Atl\u00e9tico_Madrid_(youth)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Internacional_de_Madrid_CF"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CP_Almer\u00eda"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CD_Mall\u00e9n"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Velarde_CF"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mislata_CF"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CF_Ardoi_FE"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CD_Altorric\u00f3n"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/AD_Ceut\u00ed_Atl\u00e9tico"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CD_Colunga"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/SD_Leioa"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Granada_74_CF"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/SD_Sporting_Sada"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ciudad_de_M\u00f3stoles_FS"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/SD_Salvatierra"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Real_Murcia_Imperial"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/UA_Horta"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tolosa_CF"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Racing_de_Sama"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CD_Tenerife_B"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/C.F._Lorca_Deportiva"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Getafe_Deportivo"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CE_J\u00fapiter"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/SD_Textil_Escudo"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CD_Onda"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lucena_CF"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/SD_Amorebieta"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CD_Quintanar"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/\u00c1guilas_FC"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/C\u00f3rdoba_CF"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Union_Sport_San_Vicente"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/FC_Jove_Espa\u00f1ol_San_Vicente"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Atl\u00e9tico_Madrid_C"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CE_Handbol_Mar\u00edtim"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CD_Vitoria"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/M\u00e1laga_CF_(women)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/UD_Marinaleda"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/FC_Vilafranca"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CD_Villanueva"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hurac\u00e1n_Valencia_CF"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CF_Gand\u00eda"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Torredonjimeno_CF"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CD_Azuqueca"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CF_Borriol"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CB_Torrevieja"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ordizia_KE"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Real_Oviedo_Vetusta"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/ACD_Ciudad_de_C\u00e1ceres"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/SD_Lagunak"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CF_Riudellots"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CF_Monta\u00f1esa"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CD_Plus_Ultra"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CD_Guijuelo"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CD_Laguna_de_Tenerife"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CD_San_Roque_de_Lepe"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CF_Rayo_Majadahonda"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/SD_Ponferradina_B"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/UD_Salamanca"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CD_Tudelano"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Villarreal_CF_C"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ja\u00e9n_FS"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Portonovo_SD"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/AD_Sagrada_Cena"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/SD_Tenisca"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Castro_FC"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CAP_Ciudad_de_Murcia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CE_Vilassar_de_Dalt"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/UE_T\u00e0rrega"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Luarca_CF"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/RCD_Espanyol_B"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CD_Choco"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CD_Aoiz"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/SDC_Galicia_Mugardos"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/SD_Barreda_Balompi\u00e9"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/AEC_Manlleu"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CE_Campos"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CD_Eg\u00fc\u00e9s"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CA_Deva"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CD_Coslada"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CD_Humanes"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CD_Santa_Eugenia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CP_Olivenza"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/AD_Parla"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CCD_Cerceda"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CD_Valdefierro"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CD_Santa_Marta"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CD_M\u00f3stoles_URJC"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sevilla_FC_(youth)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CD_Oberena"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Selaya_FC"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CD_Arguinegu\u00edn"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mora_CF"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Viveiro_CF"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/UP_Plasencia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/FS_M\u00f3stoles"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Torrellano_Illice_CF"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CE_L'Hospitalet"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alca\u00f1iz_CF"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CD_M\u00e1laga"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CD_Villegas"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CD_Illescas"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/\u00c9cija_Balompi\u00e9"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Burgos_CF_(I)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/R\u00edas_Baixas_FS"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/UD_Cass\u00e0"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CD_Aurrer\u00e1_de_Vitoria"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/AD_Sala_10"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Atl\u00e9tico_Granadilla"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CD_Colonia_Ofigevi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/AD_Super_Sego_FS"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/UD_San_Sebasti\u00e1n_de_los_Reyes"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/SCR_Pe\u00f1a_Deportiva"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pumar\u00edn_CF"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CF_Trujillo"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Girona_FC"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/AD_Gu\u00edxols"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Toledo_BM"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/R\u00e1pido_de_Bouzas"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CP_Chinato"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/M\u00e9rida_UD"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/ED_L\u00e1ncara"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Real_Madrid_C.F._(youth)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Las_Rozas_CF"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CD_Piedrabuena"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CD_Logro\u00f1o"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CD_Miguelturre\u00f1o"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CD_Guarnizo"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CA_River_Ebro"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CD_Bala_Azul"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/SD_Tarazona"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mule\u00f1o_CF"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/UD_Collerense"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/UE_Lleida"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Atl\u00e9tico_Madrid_F\u00e9minas"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Levante_UD"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sporting_Plaza_de_Argel"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CD_Burguillos"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Granada_CF_(women)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CD_Tuilla"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gernika_Club"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CD_Mensajero"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CD_Alhaurino"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CD_Anguiano"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/UC_Ceares"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/UD_San_Lorenzo_de_Flumen"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CF_S\u00f3ller"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CD_Santany\u00ed"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Talavera_CF"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Racing_de_Santander_B"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Daimiel_CF"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CE_Europa"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CD_San_Roque"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Atl\u00e9tico_Monz\u00f3n"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Real_Tit\u00e1nico"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Carnicer_Torrej\u00f3n_FS"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CA_Almer\u00eda"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alicante_CF_B"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Deportivo_de_La_Coru\u00f1a_B"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/UD_Barbastro"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rayo_Vallecano_(women)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Astorga_FS"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CP_Sanvicente\u00f1o"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Manzanares_CF"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/UM_Escobedo"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Solares_SD"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CF_Talavera_de_la_Reina"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CD_Giner_Torrero"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CD_Loeches"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CD_Aviaci\u00f3n"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/L'Entregu_CF"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pinto_FS"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/UD_Pomar"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/UE_Olot"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CD_Moa\u00f1a"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Atl\u00e9tico_Esquivias_CF"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/UE_Sant_Andreu"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gurutzeta_KFT"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CD_Margaritense"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/UD_Arenal"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CE_Andratx"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Villalonga_FC"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/UD_Altea"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Puertollano_FS"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Atl\u00e9tico_Tordesillas"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/San_Fernando_CD"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CF_Fuenlabrada"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Loja_CD"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CD_Mendi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/UE_Avi\u00e0"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CD_Alcal\u00e1"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CD_Becerril"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Laracha_CF"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CD_Don_Benito"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ciudad_de_Murcia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Real_Valladolid_(women)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Novelda_CF"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/UD_Talavera"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hu\u00e9rcal-Overa_CF"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/UD_Fraga"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Albacete_Balompi\u00e9_B"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CA_Candeleda"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/UD_Las_Palmas_Atl\u00e9tico"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/AD_Cartaya"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CD_Cebrere\u00f1a"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CF_La_Nuc\u00eda"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CFJ_Mollerussa"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CD_Brea"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/UD_Mutilvera"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Segovia_Futsal"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/SD_Lenense"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Calasparra_FC"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CD_Broll\u00f3n"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Uni\u00f3n_Tres_Cantos_FS"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/AD_Sagard\u00eda"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CD_Cala_d'Or"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CU_Collado_Villalba"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CD_Huarte"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/AD_Adra"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/SCD_Durango"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/AgD_Ceuta"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Moratalla_CF"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Amurrio_Club"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CD_Tauste"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Leis_26_Pontevedra_FS"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Arroyo_CP"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Orihuela_CF"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CE_Manacor"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/EF_Concepci\u00f3n"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CF_Peralada"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CD_Mosconia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CD_Izarra"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jerez_Industrial_CF"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CD_Orellana"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Villajoyosa_CF"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Real_Madrid_C"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Real_Avil\u00e9s_B"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Marbella_FC"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CD_Valdelacalzada"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pe\u00f1arroya_CF"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Muro_CF"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/SD_Almaz\u00e1n"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/SD_Retuerto_Sport"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/C.F._Lorca_Deportiva_(1969)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Arenas_CD"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lorca_Deportiva_CF"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Castilla-La_Mancha_FS"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Real_Aranjuez_CF"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Maspalomas_FS"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Coria_CF"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CD_Roces"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/H\u00e9rcules_CF_B"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Recreativo_de_Huelva_B"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/UD_Juventud_Barrio_del_Cristo"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CD_Aluvi\u00f3n"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/UD_Almansa"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/And\u00e9s_CF"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/SD_Oyonesa"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CD_Laudio"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Real_Sociedad_B"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Racing_Lerme\u00f1o"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CF_Atl\u00e9tico_Ciudad"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mondariz_FC"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CDF_Lakua_de_Vitoria"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ciudad_de_Plasencia_CF"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/UE_Figueres"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/FC_Puente_Tocinos"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Condal_Club"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CD_Binissalem"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Berganti\u00f1os_FC"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CA_Pulpile\u00f1o"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CD_Manchego_Ciudad_Real"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CE_Art\u00e0"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CD_Masnou"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Valencia_CF_(youth)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CD_Pozoblanco"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sestao_River_Club"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CD_Torrijos"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Atl\u00e9tico_Astorga_FC"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Atl\u00e9tico_Calatayud"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/SD_Indautxu"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Deportivo_Arag\u00f3n"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CD_Zarramonza"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Spain", "surface form": "Spain"}], "relations": [{"URI": "http://dbpedia.org/ontology/clubsRecordGoalscorer", "surface form": "soccer clubs"}]}, {"id": "184", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Who produced films starring Natalie Portman?", "keywords": "produce, film, starring, Natalie Portman"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?film a <http://dbpedia.org/ontology/Film> ; <http://dbpedia.org/ontology/starring> <http://dbpedia.org/resource/Natalie_Portman> ; <http://dbpedia.org/ontology/producer> ?uri }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mike_Nichols"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nicolas_Blanc"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/David_McFadzean"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Marc_E._Platt"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Wachowskis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Michael_Tapuah"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Scott_Stuber"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Laurence_Mark"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nancy_Grant"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rick_McCallum"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ram_Bergman"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Natalie_Portman"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Laurent_Truchot"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Patrice_Ledoux"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Susan_Cartsonis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Saul_Zaentz"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Shoja_Azari"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Joel_Silver"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ryan_Kavanaugh"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Richard_N._Gladstein"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Doug_Magallon,_Greg_Strom"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sigurj\u00f3n_Sighvatsson"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Wong_Kar-wai"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kevin_Feige"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sarah_Green_(film_producer)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Robert_Greenhut"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/John_Calley"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Larry_J._Franco"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tim_Burton"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Matt_Williams_(TV_producer)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dan_Halsted"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alison_Owen"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Michael_De_Luca"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gary_Gilbert"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Grant_Hill_(producer)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Spencer_Susser"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Natalie_Portman", "surface form": "produced films films starring Natalie Portman"}], "relations": [{"URI": "http://dbpedia.org/ontology/wineProduced", "surface form": "produced"}]}, {"id": "185", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Give me all breeds of the German Shepherd dog.", "keywords": "breed, German Shepherd dog"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/breed> <http://dbpedia.org/resource/German_Shepherd> }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mancs_(dog)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Appollo_(dog)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Blondi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lucca_(dog)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lightning_(dog)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Antis_(dog)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Strongheart"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nemo_A534"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Germany", "surface form": "German Shepherd dog"}, {"URI": "http://dbpedia.org/resource/German_Shepherd", "surface form": "German Shepherd dog"}], "relations": [{"URI": "http://dbpedia.org/ontology/genre", "surface form": "breeds"}, {"URI": "http://dbpedia.org/ontology/country", "surface form": ""}]}, {"id": "186", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Who is the heaviest player of the Chicago Bulls?", "keywords": "heaviest player, Chicago Bulls"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Person> ; <http://dbpedia.org/ontology/weight> ?num { ?uri <http://dbpedia.org/property/team> <http://dbpedia.org/resource/Chicago_Bulls> } UNION { ?uri <http://dbpedia.org/property/draftTeam> <http://dbpedia.org/resource/Chicago_Bulls> } UNION { ?uri <http://dbpedia.org/ontology/draftTeam> <http://dbpedia.org/resource/Chicago_Bulls> } } ORDER BY DESC(?num) OFFSET 0 LIMIT 1"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Roberto_Due\u00f1as"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Chicago_Bulls", "surface form": "Chicago Bulls"}], "relations": [{"URI": "http://dbpedia.org/ontology/coach", "surface form": "heaviest player"}]}, {"id": "187", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Which languages are spoken in Estonia?", "keywords": "language, spoken, Estonia"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/spokenIn> <http://dbpedia.org/resource/Estonia> }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Laiuse_Romani_language"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Estonian_Sign_Language"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Seto_dialect"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Russian_Sign_Language"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Baltic_Romani"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/V\u00f5ro_language"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Estonian_language"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Modern_Swedish"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Estonia", "surface form": "Estonia"}], "relations": [{"URI": "http://dbpedia.org/ontology/language", "surface form": "languages"}, {"URI": "http://dbpedia.org/ontology/spokenIn", "surface form": "spoken"}]}, {"id": "188", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "What is the largest country in the world?", "keywords": "largest country, world"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Country ; dbo:areaTotal ?n } ORDER BY DESC(?n) OFFSET 0 LIMIT 1"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Organization_for_Security_and_Co-operation_in_Europe"}}]}}], "entities": [], "relations": [{"URI": "http://dbpedia.org/ontology/areaTotal", "surface form": "largest country"}]}, {"id": "189", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "What is the largest city in america?", "keywords": "largest, city, america"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?lcity WHERE { dbr:United_States dbo:largestCity ?lcity }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/New_York_City"}}]}}], "entities": [], "relations": [{"URI": "http://dbpedia.org/ontology/largestCity", "surface form": "largest city"}, {"URI": "http://dbpedia.org/ontology/province", "surface form": "america"}]}, {"id": "190", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Who was the pope that founded the Vatican Television?", "keywords": "pope, founded, Vatican Television"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT ?uri WHERE { ?uri rdf:type dbo:Pope . res:Vatican_Television_Center dbo:foundedBy ?uri }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pope_John_Paul_II"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Vatican_Television_Center", "surface form": "Vatican Television"}], "relations": [{"URI": "http://dbpedia.org/ontology/material", "surface form": "pope"}, {"URI": "http://dbpedia.org/ontology/leader", "surface form": "founded"}]}, {"id": "191", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Who discovered Ceres?", "keywords": "discoverer, Ceres"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Ceres_(dwarf_planet)> dbo:discoverer ?uri }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Giuseppe_Piazzi"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Ceres_(dwarf_planet)", "surface form": "Ceres"}], "relations": [{"URI": "http://dbpedia.org/ontology/discoverer", "surface form": "discovered"}]}, {"id": "192", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Who is the king of the Netherlands?", "keywords": "king, the Netherlands"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { res:Netherlands dbo:leader ?uri . ?uri rdf:type dbo:Royalty }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Willem-Alexander_of_the_Netherlands"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Netherlands", "surface form": "Netherlands"}], "relations": [{"URI": "http://dbpedia.org/ontology/leader", "surface form": "king"}]}, {"id": "193", "answertype": "boolean", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Is Cola a beverage?", "keywords": "Cola, beverage"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> ASK WHERE { res:Cola rdf:type dbo:Beverage }"}, "answers": [{"head": {}, "results": {}, "boolean": true}], "entities": [{"URI": "http://dbpedia.org/resource/Cola", "surface form": "Cola"}], "relations": [{"URI": "http://dbpedia.org/ontology/strength", "surface form": "beverage"}]}, {"id": "194", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "What is the alma mater of the chancellor of Germany Angela Merkel?", "keywords": "Angela Merkel"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?Almamater WHERE { dbr:Angela_Merkel dbo:almaMater ?Almamater }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Leipzig_University"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Angela_Merkel", "surface form": "Germany Angela Merkel"}], "relations": [{"URI": "http://dbpedia.org/ontology/almaMater", "surface form": "alma mater"}, {"URI": "http://dbpedia.org/ontology/chancellor", "surface form": "chancellor"}]}, {"id": "195", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Who wrote the book Les Piliers de la terre?", "keywords": "wrote, book, The pillars of the Earth"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:The_Pillars_of_the_Earth dbo:author ?uri }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ken_Follett"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/La_Terre", "surface form": "book Les Piliers de la terre"}], "relations": [{"URI": "http://dbpedia.org/ontology/author", "surface form": "wrote"}]}, {"id": "196", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Which airports does Yeti Airlines serve?", "keywords": "airports, Yeti Airlines"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Yeti_Airlines dbo:targetAirport ?uri }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pokhara"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bhairahawa"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Biratnagar"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Yeti_Airlines", "surface form": "Yeti Airlines"}], "relations": [{"URI": "http://dbpedia.org/ontology/hubAirport", "surface form": "airports"}, {"URI": "http://dbpedia.org/ontology/colour", "surface form": "serve"}]}, {"id": "197", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Where is the birthplace of Goethe?", "keywords": "Goethe"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?Goethe WHERE { dbr:Johann_Wolfgang_von_Goethe dbo:birthPlace ?Goethe }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Holy_Roman_Empire"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Frankfurt"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Frankfurt-am-Main"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Goethe_Prize", "surface form": "Goethe"}], "relations": [{"URI": "http://dbpedia.org/ontology/birthPlace", "surface form": "birthplace"}]}, {"id": "198", "answertype": "boolean", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Was the Cuban Missile Crisis earlier than the Bay of Pigs Invasion?", "keywords": "Cuban Missile Crisis, earlier, Bay of Pigs Invasion"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> ASK WHERE { res:Cuban_Missile_Crisis dbo:date ?x . res:Bay_of_Pigs_Invasion dbo:date ?y FILTER ( ?x < ?y ) }"}, "answers": [{"head": {}, "results": {}, "boolean": false}], "entities": [{"URI": "http://dbpedia.org/resource/Cuba", "surface form": "Cuban Missile Crisis "}, {"URI": "http://dbpedia.org/resource/Cuban_Missile_Crisis", "surface form": "Cuban Missile Crisis "}, {"URI": "http://dbpedia.org/resource/Bay_of_Pigs_Invasion", "surface form": " the Bay of Pigs Invasion"}], "relations": [{"URI": "http://dbpedia.org/ontology/date", "surface form": "when"}, {"URI": "http://dbpedia.org/ontology/country", "surface form": ""}]}, {"id": "199", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Which ingredients do I need for carrot cake?", "keywords": "carrot cake, ingredients"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Carrot_cake dbo:ingredient ?uri }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Egg_(food)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Carrots"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Flour"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Almonds"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Baking_powder"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sugar"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/I", "surface form": "I"}, {"URI": "http://dbpedia.org/resource/Carrot_cake", "surface form": "carrot cake"}], "relations": [{"URI": "http://dbpedia.org/ontology/ingredient", "surface form": "ingredients"}]}, {"id": "200", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Who created Wikipedia?", "keywords": "Wikipedia, created"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Wikipedia dbo:author ?uri }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jimmy_Wales"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Larry_Sanger"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Wikipedia", "surface form": "Wikipedia"}], "relations": [{"URI": "http://dbpedia.org/ontology/author", "surface form": "created"}]}, {"id": "201", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "What is the highest mountain in Saxony Germany?", "keywords": "highest, mountain, Saxony, Germany"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?m WHERE { ?m dbo:mountainRange dbr:Ore_Mountains ; dbo:elevation ?height } ORDER BY DESC(?height) LIMIT 1"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fichtelberg"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Frankenstein,_Saxony", "surface form": "Saxony Germany"}], "relations": [{"URI": "http://dbpedia.org/ontology/elevation", "surface form": "highest mountain"}]}, {"id": "202", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Who is the current federal minister of finance in Germany?", "keywords": "federal minister of finance, germany"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> SELECT ?leader WHERE { <http://dbpedia.org/resource/Federal_Ministry_of_Finance_(Germany)> dbo:leader ?leader }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Wolfgang_Sch\u00e4uble"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Current_prime_minister_of_Canada", "surface form": "current federal minister"}, {"URI": "http://dbpedia.org/resource/Germany", "surface form": "Germany"}], "relations": [{"URI": "http://dbpedia.org/ontology/operator", "surface form": "finance"}]}, {"id": "203", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "In which country is Mecca located?", "keywords": "country, located, Mecca"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Mecca dbo:country ?uri }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Saudi_Arabia"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Mecca", "surface form": "Mecca"}], "relations": [{"URI": "http://dbpedia.org/ontology/country", "surface form": "country"}, {"URI": "http://dbpedia.org/ontology/locatedInArea", "surface form": "located"}]}, {"id": "204", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Who played Gus Fring in Breaking Bad?", "keywords": "play, Gus Fring, Breaking Bad"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Gus_Fring dbo:portrayer ?uri }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Giancarlo_Esposito"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Gus_Fring", "surface form": "Gus Fring"}, {"URI": "http://dbpedia.org/resource/Breaking_Bad", "surface form": "Breaking Bad"}], "relations": [{"URI": "http://dbpedia.org/ontology/portrayer", "surface form": "played"}]}, {"id": "205", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "In which country does the Nile start?", "keywords": "Nile, start, country"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Nile dbo:sourceCountry ?uri }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rwanda"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ethiopia"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Nile", "surface form": "Nile"}], "relations": [{"URI": "http://dbpedia.org/ontology/country", "surface form": "country"}, {"URI": "http://dbpedia.org/ontology/source", "surface form": "start"}]}, {"id": "206", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "In which state Penn State University is located?", "keywords": "Penn State University"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?s WHERE { dbr:Pennsylvania_State_University dbo:state ?s }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pennsylvania"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Pennsylvania_State_University", "surface form": "Penn State University"}], "relations": [{"URI": "http://dbpedia.org/ontology/position", "surface form": "located"}]}, {"id": "207", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "What is the biggest stadium in Spain?", "keywords": "biggest stadium, Spain"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Stadium ; dbo:location res:Spain ; dbo:seatingCapacity ?n } ORDER BY DESC(?n) OFFSET 0 LIMIT 1"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vicente_Calder\u00f3n_Stadium"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Spain", "surface form": "Spain"}], "relations": [{"URI": "http://dbpedia.org/property/stadium", "surface form": "biggest stadium"}]}, {"id": "208", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Who is the coach of Ankara's ice hockey team?", "keywords": "coach, ice hockey team, Ankara"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { ?x dbo:city res:Ankara ; dbo:league res:Turkish_Ice_Hockey_First_League ; dbo:coach ?uri }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/\u0130brahim_O\u011fuz"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Ankara", "surface form": "Ankara"}, {"URI": "http://dbpedia.org/resource/Greece_national_ice_hockey_team", "surface form": " ice hockey team"}], "relations": [{"URI": "http://dbpedia.org/ontology/coach", "surface form": "coach"}]}, {"id": "209", "answertype": "number", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "How large is the area of UK?", "keywords": "area, UK"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?area WHERE { dbr:United_Kingdom dbo:areaTotal ?area }"}, "answers": [{"head": {"vars": ["c"]}, "results": {"bindings": [{"c": {"type": "literal", "value": "2.42495e+11"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/United_Kingdom", "surface form": "UK"}], "relations": [{"URI": "http://dbpedia.org/ontology/area", "surface form": "area"}]}, {"id": "210", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Who created Batman?", "keywords": "Batman, creator"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Batman dbo:creator ?uri }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bob_Kane"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bill_Finger"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Batman", "surface form": "Batman"}], "relations": [{"URI": "http://dbpedia.org/ontology/creator", "surface form": "created"}]}, {"id": "211", "answertype": "boolean", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Was Sigmund Freud married?", "keywords": "Sigmund Freud, married"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> ASK WHERE { dbr:Sigmund_Freud dbo:spouse ?uri }"}, "answers": [{"head": {}, "results": {}, "boolean": true}], "entities": [{"URI": "http://dbpedia.org/resource/Sigmund_Freud", "surface form": "Sigmund Freud married"}], "relations": []}, {"id": "212", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Who are the developers of DBpedia?", "keywords": "developers, DBpedia"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:DBpedia dbo:developer ?uri }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/University_of_Mannheim"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Leipzig_University"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/OpenLink_Software"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/DBpedia", "surface form": "DBpedia"}], "relations": [{"URI": "http://dbpedia.org/ontology/developer", "surface form": "developers"}]}, {"id": "213", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Give me all movies directed by Francis Ford Coppola.", "keywords": "movie, direct, Francis Ford Coppola"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Film ; dbo:director res:Francis_Ford_Coppola }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Rain_People"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Godfather_Part_III"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/One_from_the_Heart"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Outsiders_(film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Terror_(1963_film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Godfather_Part_II"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Twixt_(film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Cotton_Club_(film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tonight_for_Sure"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Peggy_Sue_Got_Married"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bram_Stoker's_Dracula"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Conversation"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rumble_Fish"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Apocalypse_Now_Redux"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Godfather"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Youth_Without_Youth_(film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Finian's_Rainbow_(film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dementia_13"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tucker:_The_Man_and_His_Dream"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gardens_of_Stone"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Rainmaker_(1997_film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/You're_a_Big_Boy_Now"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tetro"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/New_York_Stories"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Godfather_Saga"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Godfather_(film_series)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Battle_Beyond_the_Sun"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Bellboy_and_the_Playgirls"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jack_(1996_film)"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Francis_Ford_Coppola", "surface form": "Francis Ford Coppola"}], "relations": [{"URI": "http://dbpedia.org/ontology/film", "surface form": "movies"}, {"URI": "http://dbpedia.org/ontology/president", "surface form": "directed"}]}, {"id": "214", "answertype": "boolean", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Are tree frogs a type of amphibian?", "keywords": "tree frog, amphibian"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> ASK WHERE { res:Hylidae dbo:class res:Amphibian }"}, "answers": [{"head": {}, "results": {}, "boolean": false}], "entities": [{"URI": "http://dbpedia.org/resource/Amphibian", "surface form": "amphibian"}], "relations": [{"URI": "http://dbpedia.org/ontology/family", "surface form": "tree"}, {"URI": "http://dbpedia.org/property/gross", "surface form": "frogs"}, {"URI": "http://dbpedia.org/ontology/type", "surface form": "type"}]}, {"id": "215", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "What is the location of the Houses of Parliament?", "keywords": "location, Houses of Parliament"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT ?uri WHERE { res:Palace_of_Westminster dbo:location ?uri }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/London"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/City_of_Westminster"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Palace_of_Westminster", "surface form": "Houses of Parliament"}], "relations": [{"URI": "http://dbpedia.org/ontology/location", "surface form": "location"}]}, {"id": "216", "answertype": "number", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "how much is the elevation of D\u00fcsseldorf Airport ?", "keywords": "D\u00fcsseldorf Airport"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?ele WHERE { dbr:D\u00fcsseldorf_Airport dbo:elevation ?ele } LIMIT 1"}, "answers": [{"head": {"vars": ["c"]}, "results": {"bindings": [{"c": {"type": "literal", "value": "44.8"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/D\u00fcsseldorf_Airport", "surface form": "D\u00fcsseldorf Airport"}], "relations": [{"URI": "http://dbpedia.org/ontology/elevation", "surface form": "elevation"}]}, {"id": "217", "answertype": "number", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "How much is the population of mexico city ?", "keywords": "mexico city"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?Mexico_City WHERE { dbr:Mexico_City dbo:populationTotal ?Mexico_City }"}, "answers": [{"head": {"vars": ["c"]}, "results": {"bindings": [{"c": {"type": "literal", "value": "8918653"}}]}}], "entities": [], "relations": [{"URI": "http://dbpedia.org/ontology/country", "surface form": "population"}, {"URI": "http://dbpedia.org/ontology/municipality", "surface form": "mexico city"}]}, {"id": "218", "answertype": "date", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "when was the founding date of french fifth republic?", "keywords": "french fifth republic"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?ff WHERE { dbr:French_Fifth_Republic dbo:foundingDate ?ff }"}, "answers": [{"head": {"vars": ["date"]}, "results": {"bindings": [{"date": {"type": "literal", "value": "1958-10-04"}}]}}], "entities": [], "relations": [{"URI": "http://dbpedia.org/ontology/institution", "surface form": "founding"}, {"URI": "http://dbpedia.org/ontology/channel", "surface form": "french"}, {"URI": "http://dbpedia.org/ontology/state", "surface form": "republic"}]}, {"id": "219", "answertype": "resource", "aggregation": false, "onlydbo": false, "hybrid": false, "question": [{"language": "en", "string": "Who was the first King of England?", "keywords": "first King of England"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX yago: <http://dbpedia.org/class/yago/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Royalty ; rdf:type yago:WikicatEnglishMonarchs ; dbo:activeYearsStartYear ?date } ORDER BY ASC(?date) OFFSET 0 LIMIT 1"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Harold_Godwinson"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/List_of_English_monarchs", "surface form": "King of England"}], "relations": []}, {"id": "220", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Who is the editor of Forbes?", "keywords": "Forbes, editor"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Forbes dbo:editor ?uri }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Steve_Forbes"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Forbes", "surface form": "Forbes"}], "relations": [{"URI": "http://dbpedia.org/ontology/editor", "surface form": "editor"}]}, {"id": "221", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Which awards did Douglas Hofstadter win?", "keywords": "Douglas Hofstadter, award"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Douglas_Hofstadter dbo:award ?uri }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/American_Academy_of_Arts_and_Sciences"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Book_Award"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pulitzer_Prize"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Douglas_Hofstadter", "surface form": "Douglas Hofstadter"}], "relations": [{"URI": "http://dbpedia.org/ontology/award", "surface form": "awards"}, {"URI": "http://dbpedia.org/ontology/award", "surface form": "win"}]}, {"id": "222", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Who is the youngest Darts player?", "keywords": "Darts player, youngest"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:DartsPlayer ; dbo:birthDate ?date } ORDER BY DESC(?date) OFFSET 0 LIMIT 1"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Max_Hopp"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Andrew_Gilding", "surface form": "Darts player"}], "relations": []}, {"id": "223", "answertype": "boolean", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Is horse racing a sport?", "keywords": "horse racing, sport"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> ASK WHERE { dbr:Horse_racing rdf:type dbo:Sport }"}, "answers": [{"head": {}, "results": {}, "boolean": true}], "entities": [], "relations": [{"URI": "http://dbpedia.org/ontology/raceHorse", "surface form": "horse"}, {"URI": "http://dbpedia.org/ontology/position", "surface form": "racing"}, {"URI": "http://dbpedia.org/ontology/sport", "surface form": "sport"}]}, {"id": "224", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Which river does the Brooklyn Bridge cross?", "keywords": "river, cross, Brooklyn Bridge"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Brooklyn_Bridge dbo:crosses ?uri }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/East_River"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Brooklyn_Bridge", "surface form": "Brooklyn Bridge"}], "relations": [{"URI": "http://dbpedia.org/ontology/river", "surface form": "river"}, {"URI": "http://dbpedia.org/ontology/crosses", "surface form": "cross"}]}, {"id": "225", "answertype": "number", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "How many people live in Poland?", "keywords": "How many people, Poland"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Poland dbo:populationTotal ?uri }"}, "answers": [{"head": {"vars": ["c"]}, "results": {"bindings": [{"c": {"type": "literal", "value": "38483957"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Poland", "surface form": "Poland"}], "relations": [{"URI": "http://dbpedia.org/ontology/residence", "surface form": "live"}]}, {"id": "226", "answertype": "date", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "When was the last episode of the TV series Friends aired?", "keywords": "last episode, Friends Tv show"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?date WHERE { dbr:Friends dbo:completionDate ?date }"}, "answers": [{"head": {"vars": ["date"]}, "results": {"bindings": [{"date": {"type": "literal", "value": "2004-05-06"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Tv_test_pattern", "surface form": "TV"}, {"URI": "http://dbpedia.org/resource/Thomas_&_Friends_(series_18)", "surface form": "series Friends"}], "relations": [{"URI": "http://dbpedia.org/ontology/type", "surface form": "episode"}, {"URI": "http://dbpedia.org/property/firstAired", "surface form": "aired"}]}, {"id": "227", "answertype": "boolean", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Is the wife of president Obama called Michelle?", "keywords": "Obama, president, wife, called, Michelle"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> ASK WHERE { res:Barack_Obama dbo:spouse ?spouse . ?spouse rdfs:label ?name FILTER regex(?name, \"Michelle\") }"}, "answers": [{"head": {}, "results": {}, "boolean": true}], "entities": [{"URI": "http://dbpedia.org/resource/Barack_Obama", "surface form": "Obama"}], "relations": [{"URI": "http://dbpedia.org/property/spouse", "surface form": "wife"}, {"URI": "http://dbpedia.org/ontology/guest", "surface form": "called"}]}, {"id": "229", "answertype": "string", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Who is 8th president of US?", "keywords": "8th President, USA"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbp: <http://dbpedia.org/property/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?name WHERE { dbr:8th_President_of_the_United_States dbo:wikiPageRedirects ?link . ?link dbp:name ?name }"}, "answers": [{"head": {"vars": ["string"]}, "results": {"bindings": [{"string": {"type": "literal", "value": "Martin Van Buren"}}, {"string": {"type": "literal", "value": "Van Buren"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/United_States", "surface form": "US"}], "relations": [{"URI": "http://dbpedia.org/ontology/leader", "surface form": "8th president"}]}, {"id": "230", "answertype": "number", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "how much is the total population of european union?", "keywords": "european union"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?europop WHERE { dbr:European_Union dbo:populationTotal ?europop }"}, "answers": [{"head": {"vars": ["c"]}, "results": {"bindings": [{"c": {"type": "literal", "value": "510056011"}}]}}], "entities": [], "relations": [{"URI": "http://dbpedia.org/ontology/totalPopulation", "surface form": "total population"}, {"URI": "http://dbpedia.org/ontology/league", "surface form": "european union"}]}, {"id": "231", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Give me all launch pads operated by NASA.", "keywords": "launch pad, operate, NASA"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:LaunchPad ; dbo:operator res:NASA }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mid-Atlantic_Regional_Spaceport_Launch_Pad_0"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Keweenaw_Rocket_Range"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Spaceport_Florida_Launch_Complex_36"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Wallops_Flight_Facility_Launch_Area_3"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Broglio_Space_Centre"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kennedy_Space_Center_Launch_Complex_39"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cape_Canaveral_Air_Force_Station_Launch_Complex_13"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/NASA", "surface form": "NASA"}], "relations": [{"URI": "http://dbpedia.org/ontology/institution", "surface form": "launch"}, {"URI": "http://dbpedia.org/ontology/operatedBy", "surface form": "pads operated"}]}, {"id": "232", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Who developed the video game World of Warcraft?", "keywords": "video game, World of Warcraft, develop"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:World_of_Warcraft dbo:developer ?uri }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Blizzard_Entertainment"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/World_of_Warcraft", "surface form": "video game World of Warcraft"}], "relations": [{"URI": "http://dbpedia.org/ontology/developer", "surface form": "developed"}]}, {"id": "233", "answertype": "string", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "What is the birth name of Adele?", "keywords": "Adele"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?bn WHERE { dbr:Adele dbo:birthName ?bn }"}, "answers": [{"head": {"vars": ["string"]}, "results": {"bindings": [{"string": {"type": "literal", "value": "Adele Laurie Blue Adkins"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Adele", "surface form": "Adele"}], "relations": [{"URI": "http://dbpedia.org/ontology/birthName", "surface form": "birth name"}]}, {"id": "234", "answertype": "number", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "What is the population of Cairo?", "keywords": "population, Cairo"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?pop WHERE { dbr:Cairo dbo:populationTotal ?pop }"}, "answers": [{"head": {"vars": ["c"]}, "results": {"bindings": [{"c": {"type": "literal", "value": "10230350"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Cairo", "surface form": "Cairo"}], "relations": [{"URI": "http://dbpedia.org/ontology/populationTotal", "surface form": "population"}]}, {"id": "235", "answertype": "boolean", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Is Frank Herbert still alive?", "keywords": "Frank Herbert, alive"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> ASK WHERE { OPTIONAL { res:Frank_Herbert dbo:deathDate ?date } FILTER ( ! bound(?date) ) }"}, "answers": [{"head": {}, "results": {}, "boolean": false}], "entities": [{"URI": "http://dbpedia.org/resource/Frank_Herbert", "surface form": "Frank Herbert"}], "relations": [{"URI": "http://dbpedia.org/ontology/deathDate", "surface form": "alive"}]}, {"id": "236", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "What is the last work of Dan Brown?", "keywords": "last work, Dan Brown"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbp: <http://dbpedia.org/property/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?book WHERE { { ?book dbo:author dbr:Dan_Brown . ?book dbp:releaseDate ?date } UNION { ?book dbo:author dbr:Dan_Brown . ?book dbo:publicationDate ?date} } ORDER BY DESC(xsd:date(?date)) LIMIT 1"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Inferno_(Brown_novel)"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Dan_Brown", "surface form": "Dan Brown"}], "relations": [{"URI": "http://dbpedia.org/ontology/battle", "surface form": "work"}]}, {"id": "237", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Where is Sungkyunkwan University?", "keywords": "Sungkyunkwan, University"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT DISTINCT ?country WHERE { dbr:Sungkyunkwan_University dbo:city ?city ; dbo:country ?country }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/South_Korea"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Sungkyunkwan_University", "surface form": "Sungkyunkwan University"}], "relations": []}, {"id": "238", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Who is the author of the interpretation of dreams?", "keywords": "Interpretation of Dreams, Author"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?Author WHERE { dbr:The_Interpretation_of_Dreams dbo:author ?Author }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sigmund_Freud"}}]}}], "entities": [], "relations": [{"URI": "http://dbpedia.org/ontology/author", "surface form": "author"}, {"URI": "http://dbpedia.org/ontology/meaning", "surface form": "interpretation"}, {"URI": "http://dbpedia.org/ontology/picture", "surface form": "dreams"}]}, {"id": "239", "answertype": "date", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "When was the death of Shakespeare?", "keywords": "Shakespeare"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?x WHERE { dbr:William_Shakespeare dbo:deathDate ?x } LIMIT 1"}, "answers": [{"head": {"vars": ["date"]}, "results": {"bindings": [{"date": {"type": "literal", "value": "1616-04-23"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/William_Shakespeare", "surface form": "Shakespeare"}], "relations": [{"URI": "http://dbpedia.org/ontology/deathDate", "surface form": "death"}]}, {"id": "241", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Who developed Slack?", "keywords": "developer, Slack"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?uri dbo:product <http://dbpedia.org/resource/Slack_(software)> }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Slack_Technologies"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Slack", "surface form": "Slack"}], "relations": [{"URI": "http://dbpedia.org/ontology/developer", "surface form": "developed"}]}, {"id": "242", "answertype": "uri", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Where is the origin of Carolina reaper?", "keywords": "Carolina reaper"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/>PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?uri WHERE { dbr:Carolina_Reaper dbo:origin ?uri}"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fort_Mill,_South_Carolina"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Carolina_Reaper", "surface form": "Carolina reaper"}], "relations": [{"URI": "http://dbpedia.org/ontology/origin", "surface form": "origin"}]}, {"id": "243", "answertype": "number", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "In which year was Rachel Stevens born?", "keywords": "year, born, Rachel Stevens"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Rachel_Stevens dbo:birthYear ?uri }"}, "answers": [{"head": {"vars": ["c"]}, "results": {"bindings": [{"c": {"type": "literal", "value": "1978"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Rachel_Stevens", "surface form": "Rachel Stevens"}], "relations": [{"URI": "http://dbpedia.org/ontology/birthYear", "surface form": "born"}]}, {"id": "244", "answertype": "number", "aggregation": true, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "How often did Jane Fonda marry?", "keywords": "Jane Fonda, marry, how often"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT (COUNT(DISTINCT ?uri) AS ?c) WHERE { res:Jane_Fonda dbo:spouse ?uri }"}, "answers": [{"head": {"vars": ["c"]}, "results": {"bindings": [{"c": {"type": "literal", "value": "3"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Jane_Fonda", "surface form": "Jane Fonda"}], "relations": [{"URI": "http://dbpedia.org/ontology/spouse", "surface form": "marry"}]}, {"id": "245", "answertype": "boolean", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Was the wife of president Lincoln called Mary?", "keywords": "Lincoln, president, wife, called, Mary"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> ASK WHERE { res:Abraham_Lincoln dbo:spouse ?spouse . ?spouse rdfs:label ?name FILTER regex(?name, \"Mary\") }"}, "answers": [{"head": {}, "results": {}, "boolean": true}], "entities": [{"URI": "http://dbpedia.org/resource/Abraham_Lincoln", "surface form": "Lincoln"}], "relations": [{"URI": "http://dbpedia.org/property/spouse", "surface form": "wife"}, {"URI": "http://dbpedia.org/property/nickname", "surface form": "called"}]}, {"id": "246", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Which cities does the Weser flow through?", "keywords": "Weser, flow through, city"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Weser dbo:city ?uri }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fulda_(river)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kassel"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hamelin"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Minden"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bremen"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bremerhaven"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hann._M\u00fcnden"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Weser", "surface form": "Weser"}], "relations": [{"URI": "http://dbpedia.org/ontology/country", "surface form": "cities"}, {"URI": "http://dbpedia.org/ontology/discharge", "surface form": "flow"}]}, {"id": "247", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "In which programming language is GIMP written?", "keywords": "GIMP, programming language"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:GIMP dbo:programmingLanguage ?uri }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/C_(programming_language)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/GTK+"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/GIMP", "surface form": "GIMP"}], "relations": [{"URI": "http://dbpedia.org/ontology/programmingLanguage", "surface form": "programming language"}, {"URI": "http://dbpedia.org/ontology/writer", "surface form": "written"}]}, {"id": "248", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Which university did Angela Merkel attend?", "keywords": "university, Angela Merkel"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?university WHERE { res:Angela_Merkel dbo:almaMater ?university }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Leipzig_University"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Angela_Merkel", "surface form": "Angela Merkel"}], "relations": [{"URI": "http://dbpedia.org/ontology/university", "surface form": "university"}, {"URI": "http://dbpedia.org/ontology/show", "surface form": "attend"}]}, {"id": "249", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "List all the musicals with music by Elton John.", "keywords": "musicals, music by, Elton John"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Musical ; dbo:musicBy res:Elton_John }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Lion_King_(musical)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Lion_King_Jr_(musical)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Billy_Elliot_the_Musical"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lestat_(musical)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Aida_(musical)"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Elton_John", "surface form": "Elton John"}], "relations": [{"URI": "http://dbpedia.org/property/musicals", "surface form": "musicals"}, {"URI": "http://dbpedia.org/ontology/musicalBand", "surface form": "music"}]}, {"id": "250", "answertype": "number", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "How many Aldi stores are there?", "keywords": "own, Aldi"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?number WHERE { res:Aldi dbo:numberOfLocations ?number }"}, "answers": [{"head": {"vars": ["c"]}, "results": {"bindings": [{"c": {"type": "literal", "value": "9600"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Aldi", "surface form": "Aldi stores"}], "relations": []}, {"id": "251", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "What is the longest river in the world?", "keywords": "longest river, world"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT ?uri WHERE { ?uri rdf:type dbo:BodyOfWater ; dbo:length ?length } ORDER BY DESC(?length) LIMIT 1"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Irtysh_River"}}]}}], "entities": [], "relations": [{"URI": "http://dbpedia.org/ontology/river", "surface form": "river"}]}, {"id": "252", "answertype": "date", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "When was John Adams born?", "keywords": "John Adams, born"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?date WHERE { res:John_Adams dbo:birthDate ?date }"}, "answers": [{"head": {"vars": ["date"]}, "results": {"bindings": [{"date": {"type": "literal", "value": "1735-10-19"}}, {"date": {"type": "literal", "value": "1735-10-30"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/John_Adams", "surface form": "John Adams"}], "relations": [{"URI": "http://dbpedia.org/ontology/birthDate", "surface form": "born"}]}, {"id": "253", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Which companies produce hovercrafts?", "keywords": "companies, produce, hovercrafts"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Company ; dbo:product res:Hovercraft }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Saunders-Roe"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hanjin_Heavy_Industries"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/British_Hovercraft_Corporation"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Companies_listed_on_the_New_York_Stock_Exchange_(J)", "surface form": "companies"}, {"URI": "http://dbpedia.org/resource/Hovercraft", "surface form": "Hovercrafts"}], "relations": [{"URI": "http://dbpedia.org/ontology/producer", "surface form": "produce"}]}, {"id": "254", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Who was the wife of U.S. president Lincoln?", "keywords": "U.S. president, Lincoln, wife"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Abraham_Lincoln dbo:spouse ?uri }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mary_Todd_Lincoln"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Abraham_Lincoln", "surface form": "Lincoln"}], "relations": [{"URI": "http://dbpedia.org/ontology/spouse", "surface form": "wife"}]}, {"id": "255", "answertype": "string", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Which species does an elephant belong?", "keywords": "species, elephant"}], "query": {"sparql": "PREFIX dbr: <http://dbpedia.org/resource/> PREFIX dbp: <http://dbpedia.org/property/> SELECT ?species WHERE { dbr:Elephant dbp:species ?species }"}, "answers": [{"head": {"vars": ["string"]}, "results": {"bindings": [{"string": {"type": "literal", "value": "Proboscidea"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Elephant", "surface form": "Elephant"}], "relations": [{"URI": "http://dbpedia.org/ontology/species", "surface form": "species"}, {"URI": "http://dbpedia.org/ontology/animal", "surface form": "belong"}]}, {"id": "256", "answertype": "number", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "How many people live in the capital of Australia?", "keywords": "Australia, capital, people, live"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?num WHERE { res:Australia dbo:capital ?x . ?x dbo:populationTotal ?num }"}, "answers": [{"head": {"vars": ["c"]}, "results": {"bindings": [{"c": {"type": "literal", "value": "381488"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Australia", "surface form": "Australia"}], "relations": [{"URI": "http://dbpedia.org/ontology/populationTotal", "surface form": "live"}, {"URI": "http://dbpedia.org/ontology/capital", "surface form": "capital"}]}, {"id": "257", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "In which ancient empire could you pay with cocoa beans?", "keywords": "ancient empire, pay, cocoa beans"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { ?uri dbo:currency res:Cocoa_bean }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Aztec_Empire"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Cocoa_bean", "surface form": "cocoa beans"}], "relations": [{"URI": "http://dbpedia.org/ontology/country", "surface form": "ancient empire"}, {"URI": "http://dbpedia.org/ontology/currency", "surface form": "pay"}]}, {"id": "258", "answertype": "number", "aggregation": true, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "How many theories did Albert Einstein come up with?", "keywords": "theories, Albert Einstein, come up"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT (COUNT(?uri) AS ?count) WHERE { dbr:Albert_Einstein dbo:knownFor ?uri }"}, "answers": [{"head": {"vars": ["c"]}, "results": {"bindings": [{"c": {"type": "literal", "value": "12"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Theories_of_cloaking", "surface form": "theories"}, {"URI": "http://dbpedia.org/resource/Albert_Einstein", "surface form": "Albert Einstein"}], "relations": []}, {"id": "259", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Who composed the soundtrack for Cameron's Titanic?", "keywords": "compose, soundtrack, Cameron's Titanic"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Titanic_(1997_film)> dbo:musicComposer ?uri }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/James_Horner"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Soundtrack_for_a_Revolution", "surface form": "soundtrack"}, {"URI": "http://dbpedia.org/resource/Cameron", "surface form": "Cameron"}, {"URI": "http://dbpedia.org/resource/Titanic_(1953_film)", "surface form": " Titanic"}], "relations": [{"URI": "http://dbpedia.org/ontology/musicComposer", "surface form": "composed"}]}, {"id": "260", "answertype": "number", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Give me the runtime of Toy Story.", "keywords": "runtime, Toy Story"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?runtime WHERE { res:Toy_Story dbo:runtime ?runtime }"}, "answers": [{"head": {"vars": ["c"]}, "results": {"bindings": [{"c": {"type": "literal", "value": "4860.0"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Toy_Story", "surface form": "Toy Story"}], "relations": [{"URI": "http://dbpedia.org/ontology/runtime", "surface form": "runtime"}]}, {"id": "262", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "With how many countries Iran has borders?", "keywords": "Iran, borders"}], "query": {"sparql": "PREFIX dbr: <http://dbpedia.org/resource/> PREFIX dbp: <http://dbpedia.org/property/> SELECT ?border WHERE { dbr:Geography_of_Iran dbp:borders ?border } LIMIT 8"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pakistan"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Turkey"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Afghanistan"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Land_borders"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Turkmenistan"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Iraq"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Armenia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Azerbaijan"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Low_Countries", "surface form": "countries Iran"}], "relations": [{"URI": "http://dbpedia.org/ontology/division", "surface form": "borders"}]}, {"id": "263", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Which electronics companies were founded in Beijing?", "keywords": "electronics companies, founded, Beijing"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Company ; dbo:industry res:Electronics ; dbo:foundationPlace res:Beijing }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lenovo"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Novak_Electronics", "surface form": "electronics companies"}, {"URI": "http://dbpedia.org/resource/Beijing", "surface form": "Beijing"}], "relations": [{"URI": "http://dbpedia.org/property/founder", "surface form": "founded"}]}, {"id": "264", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Who was the successor of John F. Kennedy?", "keywords": "John F. Kennedy, successor"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:John_F._Kennedy dbo:successor ?uri }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Benjamin_A._Smith_II"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lyndon_B._Johnson"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tip_O'Neill"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/F", "surface form": "F"}, {"URI": "http://dbpedia.org/resource/John_F._Kennedy", "surface form": "John Kennedy"}], "relations": [{"URI": "http://dbpedia.org/ontology/successor", "surface form": "successor"}]}, {"id": "265", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Who is the mayor of Paris?", "keywords": "mayor of Paris"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Paris dbo:mayor ?uri }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Anne_Hidalgo"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Paris", "surface form": "Paris"}], "relations": [{"URI": "http://dbpedia.org/ontology/mayor", "surface form": "mayor"}]}, {"id": "266", "answertype": "boolean", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Did Arnold Schwarzenegger attend a university?", "keywords": "Arnold Schwarzenegger, attend, university"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> ASK WHERE { res:Arnold_Schwarzenegger dbo:almaMater ?x . ?x rdf:type dbo:University }"}, "answers": [{"head": {}, "results": {}, "boolean": true}], "entities": [{"URI": "http://dbpedia.org/resource/Arnold_Schwarzenegger", "surface form": "Arnold Schwarzenegger"}], "relations": [{"URI": "http://dbpedia.org/ontology/show", "surface form": "attend"}, {"URI": "http://dbpedia.org/ontology/university", "surface form": "university"}]}, {"id": "267", "answertype": "boolean", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Is James Bond married?", "keywords": "James Bond, married"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> ASK WHERE { res:James_Bond dbo:spouse ?uri }"}, "answers": [{"head": {}, "results": {}, "boolean": false}], "entities": [{"URI": "http://dbpedia.org/resource/James_Bond", "surface form": "James Bond"}], "relations": [{"URI": "http://dbpedia.org/ontology/spouse", "surface form": "married"}]}, {"id": "268", "answertype": "boolean", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Does the Isar flow into a lake?", "keywords": "Isar, flow, lake"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> ASK WHERE { ?x dbo:inflow res:Isar ; rdf:type dbo:Lake }"}, "answers": [{"head": {}, "results": {}, "boolean": true}], "entities": [{"URI": "http://dbpedia.org/resource/Isar", "surface form": "Isar"}], "relations": [{"URI": "http://dbpedia.org/property/float", "surface form": "flow"}, {"URI": "http://dbpedia.org/ontology/lake", "surface form": "lake"}]}, {"id": "269", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Which Indian company has the most employees?", "keywords": "Indian company, the most employees"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Company ; dbo:location res:India ; dbo:numberOfEmployees ?n } ORDER BY DESC(?n) OFFSET 0 LIMIT 1"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Railway_Board"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/India", "surface form": "Indian company"}, {"URI": "http://dbpedia.org/resource/SPIC_(Indian_company)", "surface form": "Indian company"}], "relations": [{"URI": "http://dbpedia.org/ontology/numberOfEmployees", "surface form": "employees"}, {"URI": "http://dbpedia.org/ontology/country", "surface form": ""}]}, {"id": "270", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Who was John F. Kennedy's vice president?", "keywords": "John F. Kennedy, vice president"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:John_F._Kennedy dbo:vicePresident ?uri }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lyndon_B._Johnson"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/John_F._Kennedy", "surface form": "John F. Kennedy"}], "relations": [{"URI": "http://dbpedia.org/ontology/vicePresident", "surface form": "vice president"}]}, {"id": "271", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Which country does the creator of Miffy come from?", "keywords": "Miffy, creator, country"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Miffy dbo:creator ?x . ?x dbo:nationality ?uri }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Netherlands"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Miffy", "surface form": "Miffy"}], "relations": [{"URI": "http://dbpedia.org/ontology/country", "surface form": "country"}, {"URI": "http://dbpedia.org/ontology/creator", "surface form": "creator"}]}, {"id": "273", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "In what city is the Heineken brewery?", "keywords": "city, Heineken brewery"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Heineken dbo:manufacturer ?x . ?x dbo:locationCity ?uri }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Amsterdam"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Rosmalen_Grass_Court_Championships", "surface form": "Heineken brewery"}], "relations": [{"URI": "http://dbpedia.org/ontology/city", "surface form": "city"}]}, {"id": "274", "answertype": "boolean", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Is Barack Obama a democrat?", "keywords": "Barack Obama, democrat"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> ASK WHERE { res:Barack_Obama dbo:party <http://dbpedia.org/resource/Democratic_Party_(United_States)> }"}, "answers": [{"head": {}, "results": {}, "boolean": true}], "entities": [{"URI": "http://dbpedia.org/resource/Barack_Obama", "surface form": "Barack Obama"}], "relations": []}, {"id": "275", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "List the children of Margaret Thatcher.", "keywords": "Margaret Thatcher, child"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Margaret_Thatcher dbo:child ?uri }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Carol_Thatcher"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mark_Thatcher"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Margaret_Thatcher", "surface form": "Margaret Thatcher"}], "relations": [{"URI": "http://dbpedia.org/ontology/child", "surface form": "children"}]}, {"id": "276", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "From which region is the Melon de Bourgogne?", "keywords": "region, Melon de Bourgogne"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Melon_de_Bourgogne dbo:wineRegion ?uri }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Southern_Ontario"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Loire_Valley_(wine)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Oregon"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Washington_(U.S._state)"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Melon_de_Bourgogne", "surface form": "Melon de Bourgogne"}], "relations": [{"URI": "http://dbpedia.org/ontology/region", "surface form": "region"}]}, {"id": "278", "answertype": "number", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "how big is the total area of North Rhine- Westphalia?", "keywords": "Nord Rhine Westphalia"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?tarea WHERE { dbr:North_Rhine-Westphalia dbo:areaTotal ?tarea }"}, "answers": [{"head": {"vars": ["c"]}, "results": {"bindings": [{"c": {"type": "literal", "value": "3.40841e+10"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/North_Rhine-Westphalia", "surface form": "North Rhine- Westphalia"}], "relations": [{"URI": "http://dbpedia.org/ontology/areaTotal", "surface form": "total area"}]}, {"id": "279", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Which city has the most inhabitants?", "keywords": "city, the most inhabitants"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:City ; dbo:populationTotal ?pop } ORDER BY DESC(?pop) OFFSET 0 LIMIT 1"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Carei"}}]}}], "entities": [], "relations": [{"URI": "http://dbpedia.org/ontology/city", "surface form": "city"}, {"URI": "http://dbpedia.org/ontology/country", "surface form": "inhabitants"}]}, {"id": "280", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "What is Donald Trump's main business?", "keywords": "Donald Trump's, business"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?owner WHERE { ?owner dbo:owner dbr:Donald_Trump }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Trump_Hotel_Las_Vegas"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Trump_World_Tower"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Trump_Building"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Trump_Organization"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Donald_Trump", "surface form": "Donald Trump"}, {"URI": "http://dbpedia.org/resource/The_Main_Monkey_Business", "surface form": " main business"}], "relations": []}, {"id": "281", "answertype": "date", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "When will start the final match of the football world cup 2018?", "keywords": "football world cup 2018"}], "query": {"sparql": "PREFIX dbr: <http://dbpedia.org/resource/> PREFIX dbp: <http://dbpedia.org/property/> SELECT ?Date WHERE { dbr:2018_FIFA_World_Cup dbp:date ?Date } ORDER BY DESC(?Date) LIMIT 1"}, "answers": [{"head": {"vars": ["date"]}, "results": {"bindings": [{"date": {"type": "literal", "value": "2018-07-15"}}]}}], "entities": [], "relations": [{"URI": "http://dbpedia.org/ontology/head", "surface form": "start"}, {"URI": "http://dbpedia.org/ontology/rival", "surface form": "final match"}, {"URI": "http://dbpedia.org/ontology/trainer", "surface form": "football"}, {"URI": "http://dbpedia.org/ontology/title", "surface form": "cup 2018"}]}, {"id": "282", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Which films did Stanley Kubrick direct?", "keywords": "film, Stanley Kubrick, direct"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { ?uri dbo:director res:Stanley_Kubrick }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Day_of_the_Fight"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Barry_Lyndon"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/A_Clockwork_Orange_(film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/2001:_A_Space_Odyssey_(film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Shining_(film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fear_and_Desire"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Killing_(film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Paths_of_Glory"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Flying_Padre"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Eyes_Wide_Shut"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Full_Metal_Jacket"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Killer's_Kiss"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dr._Strangelove"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Seafarers"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Spartacus_(film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lolita_(1962_film)"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Stanley_Kubrick", "surface form": "Stanley Kubrick direct"}], "relations": [{"URI": "http://dbpedia.org/ontology/numberOfFilms", "surface form": "films"}]}, {"id": "283", "answertype": "number", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "how much is the population Iraq?", "keywords": "Iraq"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?pIraq WHERE { dbr:Iraq dbo:populationTotal ?pIraq }"}, "answers": [{"head": {"vars": ["c"]}, "results": {"bindings": [{"c": {"type": "literal", "value": "37056169"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Population", "surface form": "population Iraq"}], "relations": []}, {"id": "284", "answertype": "number", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "How many inhabitants does the largest city in Canada have?", "keywords": "inhabitants, largest city, Canada"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?num WHERE { res:Canada dbo:largestCity ?city . ?city dbo:populationTotal ?num }"}, "answers": [{"head": {"vars": ["c"]}, "results": {"bindings": [{"c": {"type": "literal", "value": "2615060"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Canada", "surface form": "Canada"}], "relations": [{"URI": "http://dbpedia.org/property/country", "surface form": "inhabitants"}, {"URI": "http://dbpedia.org/ontology/largestCity", "surface form": "largest city"}]}, {"id": "285", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Who is the mayor of the capital of French Polynesia?", "keywords": "mayor, capital, French Polynesia"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:French_Polynesia dbo:capital ?x . ?x dbo:mayor ?uri }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Michel_Buillard"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/France", "surface form": "French Polynesia"}, {"URI": "http://dbpedia.org/resource/French_Polynesia", "surface form": "French Polynesia"}], "relations": [{"URI": "http://dbpedia.org/ontology/mayor", "surface form": "mayor"}, {"URI": "http://dbpedia.org/ontology/capital", "surface form": "capital"}, {"URI": "http://dbpedia.org/ontology/country", "surface form": ""}]}, {"id": "286", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Give me all actors starring in movies directed by William Shatner.", "keywords": "actor, starring, movie, direct, William Shatner"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { ?x dbo:director res:William_Shatner ; dbo:starring ?uri }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tom_Towles"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Brenda_Bakke"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/William_Shatner"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/George_Takei"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/John_Prosky"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Duane_Whitaker"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dick_Van_Patten"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Amy_Acker"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Leonard_Nimoy"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rickey_Medlocke"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Walter_Koenig"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/DeForest_Kelley"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dan_Martin_(actor)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chuck_Williams_(actor)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/J.T._Colosa"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/James_Doohan"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dan_Gauthier"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nichelle_Nichols"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/William_Shatner", "surface form": "William Shatner"}], "relations": [{"URI": "http://dbpedia.org/ontology/artist", "surface form": "actors"}, {"URI": "http://dbpedia.org/ontology/starring", "surface form": "starring"}, {"URI": "http://dbpedia.org/ontology/film", "surface form": "movies"}, {"URI": "http://dbpedia.org/property/directedby", "surface form": "directed"}]}, {"id": "287", "answertype": "number", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "How tall is Claudia Schiffer?", "keywords": "Claudia Schiffer, tall"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?height WHERE { res:Claudia_Schiffer dbo:height ?height }"}, "answers": [{"head": {"vars": ["c"]}, "results": {"bindings": [{"c": {"type": "literal", "value": "1.81"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Claudia_Schiffer", "surface form": "Claudia Schiffer"}], "relations": [{"URI": "http://dbpedia.org/ontology/height", "surface form": "tall"}]}, {"id": "288", "answertype": "number", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "how much is the population densty rank of germany?", "keywords": "Germany"}], "query": {"sparql": "PREFIX dbr: <http://dbpedia.org/resource/> PREFIX dbp: <http://dbpedia.org/property/> SELECT ?rank WHERE { dbr:Germany dbp:populationDensityRank ?rank }"}, "answers": [{"head": {"vars": ["c"]}, "results": {"bindings": [{"c": {"type": "literal", "value": "58"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/RANK", "surface form": "population densty rank"}, {"URI": "http://dbpedia.org/resource/Germany", "surface form": "germany"}], "relations": []}, {"id": "289", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "What is the highest mountain in Italy?", "keywords": "highest, mountain, Italy"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Mountain ; dbo:locatedInArea res:Italy ; dbo:elevation ?num } ORDER BY DESC(?num) OFFSET 0 LIMIT 1"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mont_Blanc"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Italy", "surface form": "Italy"}], "relations": [{"URI": "http://dbpedia.org/ontology/elevation", "surface form": "highest mountain"}]}, {"id": "290", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "List all games by GMT.", "keywords": "game, GMT"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { ?uri dbo:publisher res:GMT_Games }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Washington's_War"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fields_of_Fire_(game)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Commands_&_Colors:_Ancients"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/A_World_At_War"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sword_of_Rome"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Twilight_Struggle"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Paths_of_Glory_(board_game)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chandragupta_(board_game)"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Generic_Mapping_Tools", "surface form": "GMT"}], "relations": [{"URI": "http://dbpedia.org/ontology/games", "surface form": "games"}]}, {"id": "291", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "What is the official language of Suriname?", "keywords": "Suriname, official language"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Suriname dbo:officialLanguage ?uri }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dutch_language"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Suriname", "surface form": "Suriname"}], "relations": [{"URI": "http://dbpedia.org/ontology/officialLanguage", "surface form": "official language"}]}, {"id": "292", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "In which city did Nikos Kazantzakis die?", "keywords": "city, Nikos Kazantzakis, die"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { res:Nikos_Kazantzakis dbo:deathPlace ?uri . ?uri rdf:type dbo:Town }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Freiburg_im_Breisgau"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Nikos_Kazantzakis", "surface form": "Nikos Kazantzakis"}], "relations": [{"URI": "http://dbpedia.org/ontology/deathPlace", "surface form": "die"}]}, {"id": "293", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "What is in a chocolate chip cookie?", "keywords": "ingredients, chocolate chip cookie"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Chocolate_chip_cookie dbo:ingredient ?uri }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chocolate_chip"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Margarine"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Butter"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Egg_(food)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Baking_soda"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Flour"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Salt"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Brown_sugar"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vanilla"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sugar"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Chocolate_chip_cookie", "surface form": "chocolate chip cookie"}], "relations": []}, {"id": "294", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "In which country is the Limerick Lake?", "keywords": "Limerick Lake, country"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Limerick_Lake dbo:country ?uri }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Canada"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Limerick_Lake", "surface form": "Limerick Lake"}], "relations": [{"URI": "http://dbpedia.org/ontology/country", "surface form": "country"}]}, {"id": "295", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Give me all video games published by Mean Hamster Software.", "keywords": "video game, publish, Mean Hamster Software"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:VideoGame ; dbo:publisher res:Mean_Hamster_Software }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Crossbow_(video_game)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Riven"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Mean_Hamster_Software", "surface form": "Mean Hamster Software"}], "relations": [{"URI": "http://dbpedia.org/ontology/film", "surface form": "video games"}, {"URI": "http://dbpedia.org/ontology/publisher", "surface form": "published"}]}, {"id": "296", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Give me all members of Prodigy.", "keywords": "member, Prodigy"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:The_Prodigy dbo:bandMember ?uri }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Maxim_(musician)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Liam_Howlett"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Keith_Flint"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/The_Prodigy", "surface form": "Prodigy"}], "relations": [{"URI": "http://dbpedia.org/ontology/bandMember", "surface form": "members"}]}, {"id": "297", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "In which time zone is Rome?", "keywords": "time zone, Rome"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Rome dbo:timeZone ?uri }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Central_European_Time"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Rome", "surface form": "Rome"}], "relations": [{"URI": "http://dbpedia.org/ontology/timeZone", "surface form": "time zone"}]}, {"id": "298", "answertype": "number", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "How high is the lighthouse in Colombo?", "keywords": "high, lighthouse in Colombo"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?num WHERE { res:Colombo_Lighthouse dbo:height ?num }"}, "answers": [{"head": {"vars": ["c"]}, "results": {"bindings": [{"c": {"type": "literal", "value": "15.0"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Colombo_Lighthouse", "surface form": "Lighthouse in Colombo"}], "relations": [{"URI": "http://dbpedia.org/ontology/height", "surface form": "high"}]}, {"id": "299", "answertype": "string", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Who are the writers of the Wall album of Pink Floyd?", "keywords": "the wall, pink floyd"}], "query": {"sparql": "PREFIX dbr: <http://dbpedia.org/resource/> PREFIX dbp: <http://dbpedia.org/property/> SELECT ?writers WHERE { dbr:The_Wall dbp:writer ?writers }"}, "answers": [{"head": {"vars": ["string"]}, "results": {"bindings": [{"string": {"type": "literal", "value": "Gilmour,"}}, {"string": {"type": "literal", "value": "Gilmour"}}, {"string": {"type": "literal", "value": "Waters,"}}, {"string": {"type": "literal", "value": "Waters, Ezrin"}}, {"string": {"type": "literal", "value": "Waters"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Pink_Floyd_\u2013_The_Wall", "surface form": "Wall album of Pink Floyd"}], "relations": [{"URI": "http://dbpedia.org/ontology/writer", "surface form": "writers"}]}, {"id": "300", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Who is the mayor of Rotterdam?", "keywords": "mayor, Rotterdam"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Rotterdam dbo:leaderName ?uri }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ahmed_Aboutaleb"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Rotterdam", "surface form": "Rotterdam"}], "relations": [{"URI": "http://dbpedia.org/ontology/leaderName", "surface form": "mayor"}]}, {"id": "301", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "What is the largest city in Australia?", "keywords": "Australia, largest city"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Australia dbo:largestCity ?uri }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sydney"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Australia", "surface form": "Australia"}], "relations": [{"URI": "http://dbpedia.org/ontology/largestCity", "surface form": "largest city"}]}, {"id": "302", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Who was married to president Chirac?", "keywords": "married to, president Chirac"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Jacques_Chirac dbo:spouse ?uri }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bernadette_Chirac"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Jacques_Chirac", "surface form": "president Chirac"}], "relations": [{"URI": "http://dbpedia.org/ontology/spouse", "surface form": "married"}]}, {"id": "303", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "What form of government is found in South Africa?", "keywords": "form, government, South Africa"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?uri WHERE { dbr:South_Africa dbo:governmentType ?uri }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Unitary_state"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/South_Africa", "surface form": "South Africa"}], "relations": [{"URI": "http://dbpedia.org/ontology/type", "surface form": "form"}, {"URI": "http://dbpedia.org/ontology/government", "surface form": "government"}]}, {"id": "304", "answertype": "number", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "How high is the Yokohama Marine Tower?", "keywords": "height, Yokohama Marine Tower"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?num WHERE { res:Yokohama_Marine_Tower dbo:height ?num }"}, "answers": [{"head": {"vars": ["c"]}, "results": {"bindings": [{"c": {"type": "literal", "value": "106.07"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Yokohama_Marine_Tower", "surface form": "Yokohama Marine Tower"}], "relations": [{"URI": "http://dbpedia.org/ontology/height", "surface form": "high"}]}, {"id": "305", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Which holidays are celebrated around the world? test2", "keywords": "holidays, celebrated, world"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Holiday }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Sorry_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Independence_Day_(Grenada)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Reed_Arts_Week"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/En_prison"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Day_to_Praise"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mbaba_belo_selambar"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Crime_Victims'_Rights_Week"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Epulum_Jovis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Thinla_(month)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gurpurb"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Twelfth_Night_(holiday)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Khordad"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/White_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Aban_(month)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Public_holidays_in_Haiti"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bundle_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Harh"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/International_Students'_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Independence_Day_(Israel)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fat_Thursday"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kanamara_Matsuri"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kumquat_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lent"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pakistan_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sovereignty_Day_(Slovenia)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Konsertti_Tampereella"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/International_Pixel-Stained_Technopeasant_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Family_Day_(Canada)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Peter_and_the_Magic_Egg"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Line-crossing_ceremony"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sussex_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Independence_Day_(Belarus)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/\u010cung\u0101x\u030c"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Subway_party"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ugadi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Twelfth"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Burns_supper"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/World_Cancer_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Martyred_Intellectuals_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lakshmi_Puja"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Panchayati_Raj_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rottela_Panduga"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Saint_George's_Day_in_England"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bara_Din"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/European_Day_of_Remembrance_for_Victims_of_Stalinism_and_Nazism"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Twelve_Days_of_Christmas"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ianuarius"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Falles"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Parintins_Folklore_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Mobility_Awareness_Month"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bathukamma"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Harvest_festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Maritime_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chaula_(month)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Remembrance_days_in_Slovakia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/St_John's_Day_(Estonia)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Yanla_(month)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Panquetzaliztli"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Frimaire"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Reclaiming_Our_Heritage"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Cancer_Survivors_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rotuma_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Statehood_Day_(Croatia)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alexandrian_Rite"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/International_Book_Year"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Commercium"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Willkakuti"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Green_week"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Shemini_Atzeret"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tisha_B'Av"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rosh_Hashanah"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sechsel\u00e4uten"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Texas_Independence_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Teeyan"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Super_Bowl_Sunday"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pok\u00e9mon:_Tenth_Anniversary"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mahavir_Jayanti"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ashwin_(Nepali_calendar)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pan_American_Aviation_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/World_Animal_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Labor_Day_Carnival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Minor_American_Revolution_holidays"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kamada_Ekadashi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Constitution_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Reunification_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Week_anniversary_of_Trujillo_Municipality"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vat_Purnima"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Global_Love_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kason"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Golu"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Drive_Electric_Week"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Birth_of_Bah\u00e1'u'll\u00e1h"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Maryland_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Principal_Holy_Day_(Anglicanism)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Eucharist_in_the_Catholic_Church"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Shraavana"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Prince_K\u016bhi\u014d_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Library_Week"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cuti_bersama"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ludi_Piscatorii"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Marathwada_Liberation_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Presentation_of_Mary"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Haitian_Heritage_Month"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hanuman_Jayanti"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Buhe"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Foundation_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kwanzaa"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pchum_Ben"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cassinga_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pooram"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/World_Chocolate_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/West_Country_Carnival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Godaan_Express"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gion_Matsuri"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/P\u00f3voa_de_Varzim_Holiday"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mohani"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Newark_Days"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Madison_Pride_and_MAGIC_Picnic"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dossabhoy_Muncherji_Raja"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/World_Toilet_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chhapra_Express"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Midsummer_in_New_York_City"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Day_of_Conception"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Walpurgis_Night"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kartik_(Nepali_calendar)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gasparilla_Pirate_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Honeymoon"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/International_Day_of_Non-Violence"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Independence_Day_(Bosnia_and_Herzegovina)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ratha_Saptami"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Anti-Fascist_Struggle_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/PUP_Centennial_Year"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rajab"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tartan_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Neptunalia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/All_Saints'_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Niv\u00f4se"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/World_Health_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Minden_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Liberation_Day_of_Korea"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/June_10th_Movement"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/10_Kislev"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Punctuation_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Recreation_Day_holiday"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Heritage_Open_Days"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nakba_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Zombie_Bike_Ride"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/140th_Year_Anniversary_Celebration_of_the_Emancipation_Proclamation"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Oxfordshire_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nabanna"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Flag_Day_(United_Arab_Emirates)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Oktoberfest_\u2013_La_Crosse,_Wisconsin"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Carnivals_of_Iztapalapa"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Veneralia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sweetest_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Heritage_Day_(South_Africa)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/World_Oral_Health_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Festa_Junina"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Silla_(month)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Yald\u0101_Night"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Auckland_Anniversary_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hueymiccaihuitl"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/\u015amigus-Dyngus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Work_and_Family_Month"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tibb's_Eve"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Day_of_the_German-speaking_Community"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Koningsdag"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Arba'een"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Life_is_a_Big_Holiday_for_Us"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Liberation_Day_(Lebanon)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/\u01e6wayay"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Etzalcualiztli"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Native_American_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Commemoration_(Anglicanism)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mercedonius"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Religious_Freedom_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Je\u00fbne_genevois"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Presentation_of_Jesus_at_the_Temple"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vaccination_Week_In_The_Americas"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lee\u2013Jackson\u2013King_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Memorial_Day_(South_Korea)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Flor\u00e9al"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/1907_in_New_Zealand"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Juneteenth"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Songkran"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Midsummer"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Reich_Harvest_Thanksgiving_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bounty_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hybristica"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tir_(month)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sadar_(festival)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Khrop_khru"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hobo_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Oregon_Bach_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hera_Panchami"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Candlemas"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Georgia_Train_and_Equip_Program"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Day_of_Reconciliation"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Primrose_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tozoztontli"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Public_holidays_in_the_United_Kingdom"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Intersex_Day_of_Remembrance"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sai\u014d_Matsuri"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Unity_Day_(Yemen)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Muharram"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Carmentalia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kandali_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sultan_Yazidis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chaitra_(Nepali_calendar)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Administrative_Professionals'_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Evelio_Javier_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Falgun"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Heroes'_Day_(Kenya)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Evacuation_Day_(New_York)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Limelight_Awards"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Republic_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kwahu_Easter"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Saitopolemos"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/World_Day_to_Combat_Desertification_and_Drought"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Italian_unification"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Aboriginal_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kaula_(month)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/World_Islam_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/World_Book_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Public_Lands_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rang_Panchami"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ludi_Romani"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kumauni_Holi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Initiation"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gelbis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Beverley_Folk_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nativity_of_St_John_the_Baptist"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Feast_of_Our_Lady_of_the_Hens"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Teotleco"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/International_Nurses_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/1999_in_Malaysia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Icelandic_National_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kamehameha_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kartik_Poornima"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pohela_(month)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Party_Foundation_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Baccalaureate_service"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Thevar_Jayanthi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Oak_Apple_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Amordadegan_festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ferragosto"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/1991_in_Malaysia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/1995_in_Malaysia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Memorial_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hody_(Moravia)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Philadelphia_Polish_American_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sajibu_nongma_panba"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/World_Asthma_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rashtriya_Ekta_Diwas"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/International_Museum_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mercuralia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Go_Skateboarding_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/International_Year_of_Biodiversity"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Emperor's_Birthday"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Battle_of_Saragarhi__Day__1"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hinamatsuri"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Paper_Airplane_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Public_holidays_in_Uruguay"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Zamalek_SC_Centennial"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ickey_Shuffle"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tihar_(festival)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/World_Press_Freedom_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Amalaka_Ekadashi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ganesh_Jayanti"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Valla_Sadhya"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Seward's_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Black_History_Month"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/International_Volunteer_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Phool_Walon_Ki_Sair"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dinamulag_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dhanteras"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fiestas_Patrias_(Peru)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Quds_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Asexual_Awareness_Week"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/World_Day_for_Cultural_Diversity_for_Dialogue_and_Development"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Memorial_Day_of_the_Exiles_and_Foibe"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Darwin_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ohi_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Public_holidays_in_Paraguay"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ratcatcher's_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Zaffa"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Coming_of_Age_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/NY_Green_Fest"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Australian_Citizenship_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Christmas_Sunday"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sangkhalok_ceramic_ware"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Cat_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Independence_Day_(Bahrain)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Victory_Day_over_Nazism_in_World_War_II"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Singles'_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/WAY_79"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Christmas_and_holiday_season"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Constitution_Day_(Ukraine)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Royal_Geelong_Show"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Charro_Days"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Translation_of_the_Relics_of_Saint_Nicholas_from_Myra_to_Bari"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ayudha_Puja"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Collar_day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ramadan_(calendar_month)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rabi'_al-awwal"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Handsel_Monday"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Language_Movement_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mangsir"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Entrance_(liturgical)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Federal_holiday"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Higan"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jefferson's_Birthday"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Antigua_Carnival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rito_della_Nivola"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nevada_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Leif_Erikson_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Day_of_the_Sun"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jana_Baha_Dyah_Jatra_(chariot_festival)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/LGBT_History_Month"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Khet_partug"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Feast_of_the_Immaculate_Conception"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/California_Admission_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Courir_de_Mardi_Gras"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Feast_of_Lanterns"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mehr_(month)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hallmark_holiday"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Qatar_National_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Olivia_Spencer_Bower_award"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tuli_(rite)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/World_Water_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Michigan_Technological_University's_Winter_Carnival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Awukudae_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/International_Day_of_Innocent_Children_Victims_of_Aggression"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Patriot_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Health_and_Sports_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Duanwu_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pi_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Inthakin"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Onam"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Child_Abuse_Prevention_Month"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Unification_Day_(Bulgaria)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Day_of_Remembrance_of_the_Victims_of_Political_Repressions"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/12-13_Tammuz"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hakata_Gion_Yamakasa"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fast_of_Nineveh"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chrysotriklinos"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Day_(Cameroon)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Public_holidays_in_Vietnam"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Residential_Drug_Abuse_Program"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/May_3rd_Constitution_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gandhi_Jayanti"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lesser_Festival_(Anglicanism)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/World_Communion_Sunday"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Karthikai_Deepam"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Julotta"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vent\u00f4se"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Light's_Golden_Jubilee"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/International_Mother_Language_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fiesta_Nacional_de_Espa\u00f1a"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Thanksgiving_(Canada)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Motherhood_and_Beauty_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/International_Sweater_Vestival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Science_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Georgia_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Meshir"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/F\u00eate_de_la_Musique"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Sanitation_Day_(Ghana)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/L\u012bnd\u0259i"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sandugo_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Festa_della_Repubblica"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Client's_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Festival_Nacional_de_la_Quenepa"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/High-level_Political_Forum_on_Sustainable_Development"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gargee'an"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Festa_da_Uva"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Saya_(folklore)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Umoja_Karamu"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nunavut_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Samasrayana"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/State_Patty's_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vaikuntha_Chaturdashi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Small_Business_Week"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Shavuot"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Republic_Day_(Niger)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Philippine_Debut"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/International_Holocaust_Remembrance_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/First_National_Government"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pre\u0161eren_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/International_Polar_Bear_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Mexican_Rite"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Corndog_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Orange_Blossom_Carnival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Heroes_Day_(Indonesia)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Coming_Out_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Earth_Day_Sunday"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Freedom_Day_(South_Africa)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cheese_Days"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Tap_Dance_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/World_Hijab_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Miyamairi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Samiljeol"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kanya_Puja"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Festival_of_Lights_(Hawaii)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Helsinki-p\u00e4iv\u00e4"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hanukkah"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Oregon_Centennial"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/International_Tiger_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cow_Harbor_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/World_Red_Cross_and_Red_Crescent_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Hugging_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Autism_Sunday"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Memorial_of_the_Holy_Guardian_Angels"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/World_Scout_Collectors_Meeting"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chinese_New_Year"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Philadelphia_Aurora"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Elgar_Birthplace_Museum"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Machad_Mamangam"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Baby_jumping"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Azores_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Angam_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Columbus_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Coconut_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/UnFreedom_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Festivals_of_P\u00f3voa_de_Varzim"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ashadha"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Holidays_for_Sale"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mid-Pentecost"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Baranger_Studios"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/UN_Russian_Language_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Acid_erosion"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/White_Sunday"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pompa_circensis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/LGBTI_Health_Summit"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/World_Freedom_Day_(United_States)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Apple_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Presidents'_Day_(Botswana)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Opposite_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/International_Anti-Corruption_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Russia_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/World_Compassion_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dhu_al-Qi'dah"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Davao_City_Torotot_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Labor_Thanksgiving_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sam_Collins_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Wray_(month)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/T\u1ebft"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Brumaire"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Bourbon_Heritage_Month"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Yipao"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Independence_Day_of_Republic_of_Moldova"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Friendship_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bal_Diwas"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Seaforth,_Queensland"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/World_Population_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Haitian_Carnival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/In_town,_without_my_car!"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/World_Tuberculosis_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Intersex_Awareness_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Masonic_funerals"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/March_1st_Movement"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sinulog"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/International_Dance_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/International_Translation_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Los_Angeles_Tofu_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Trafalgar_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hari_Merdeka"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Women's_Equality_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Day_of_the_Armed_Forces_of_Azerbaijan"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ballarat_Show"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Evacuation_Day_(Syria)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Parents'_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Magh_(Bengali_calendar)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Volkstrauertag"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Illuminated_procession"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jyeshtha_(month)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/International_Missing_Children's_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Le_Pays_de_la_Sagouine"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Snow_Day/Holiday_Road"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/United_Nations'_International_Day_of_Persons_with_Disabilities"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tirumala_Shanivaralu"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Week_of_Prayer_for_Christian_Unity"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/K\u014dreisai"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Independence_Day_(Djibouti)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Thai_Pongal"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Catandungan_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/African-American_Music_Appreciation_Month"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Victory_Day_(9_May)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Armenian_Genocide_Remembrance_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Public_holidays_in_Guam"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lammas"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Western_Australia_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sunday_within_the_Octave_of_Christmas"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Unity_Day_(United_States)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/September"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Senegal_Music_Awards"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/H\u014dnen_Matsuri"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Defender_of_the_Fatherland_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Boukout"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bon_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Manisola"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Day_(United_Arab_Emirates)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Sanctity_of_Human_Life_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Premio_Lo_Nuestro_2004"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Premio_Lo_Nuestro_2003"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Timkat"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mardi_Gras_in_Mobile,_Alabama"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/International_Day_Against_Homophobia,_Transphobia_and_Biphobia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Odunde_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/International_Day_of_Radiology"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pana_Sankranti"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tycho_Brahe_days"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Qixi_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jamhuri_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Public_Gardens_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Independence_Day_(Pakistan)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pelican_Drop"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Subbotnik"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Feast_of_Saints_Peter_and_Paul"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/2004_in_Malaysia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/1993_in_Malaysia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vente_de_Agosto"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Giubiana"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Primitive_Scottish_Rite"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/German-American_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nostalgia_Night"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Canada_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/World_Food_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/\u00deorl\u00e1ksmessa"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nag_Panchami"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/New_Year's_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Arrhephoria"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dano_(Korean_festival)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/International_Day_to_End_Impunity_for_Crimes_Against_Journalists"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Navratri"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Hispanic_Heritage_Month"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sonepur_Cattle_Fair"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Day_of_the_Walloon_Region"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rebild_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Espousals_of_the_Blessed_Virgin_Mary"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lui_Ngai_Ni"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/San_Jacinto_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/American_Business_Women's_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Consualia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Title_36_of_the_United_States_Code"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sombrero_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Liberation_Day_(Italy)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bhadro"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hangul_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tecuilhuitontli"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tawthalin"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Trinity_Arts_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Robert_E._Lee_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hungarian_Opera_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Choitro"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Zatra"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/International_Romani_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mar\u01e7\u016bmay"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Malcolm_X_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mickey's_Magical_Party"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pulaski_Days"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ratification_Day_(United_States)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fiesta_patronal"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ave_Maria_church"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bhadon"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Guanacaste_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cesar_Chavez_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/World_Marriage_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Public_holidays_in_Hong_Kong"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Newspaper_holiday"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Station_days"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/2017_in_Malaysia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ten_Days_of_Repentance"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chuseok"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lal_Loi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Advent_Sunday"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/La_Vijanera"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tangihanga"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mandi_Shivaratri_Fair"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Isru_chag"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mattu_Pongal"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Atemoztli"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dinagyang"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Defence_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Passover"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cambodian_New_Year"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Persons_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/No_Smoking_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Day_of_the_Flemish_Community"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Guru_Ravidass_Jayanti"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Europe_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Malaysia_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Great_Union_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Highland_2007"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Burmese_Martyrs'_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gawai_Dayak"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Recovery_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/2011_in_Malaysia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Akita_Kant\u014d"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tirgan"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tobata_Gion_Yamagasa_festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Pearl_Harbor_Remembrance_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pasni_(celebration)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Civic_Holiday"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Global_Handwashing_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vijayadashami"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Carnival_of_Madeira"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dey_(month)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sham_el-Nessim"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Defense_Transportation_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pioneer_Day_(Utah)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/2009_in_Malaysia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/HarvestMoon_Music_and_Arts_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/2007_in_Malaysia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gymnopaedia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hathor_(month)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lyndon_Baines_Johnson_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Varuthini_Ekadashi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Day_of_Catalonia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sha'ban"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lemuria_(festival)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Remembrance_Day_of_Journalists_Killed_in_the_Line_of_Duty"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Brazilica_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mid-Sha'ban"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Independence_Day_(Eritrea)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Memorial_Ride"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Feast_of_the_Most_Precious_Blood"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Maghar_(month)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Scandinavian_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Music_of_Ghanaian_Origin"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mid-Autumn_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Celebrate_Your_Name_Week"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kullu_Dussehra"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jhulan_Purnima"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Av"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Australia_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Weatherperson's_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Srabon"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bucyrus_Bratwurst_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Independence_Day_(Cyprus)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Veterans_Day_(South_Korea)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Thout"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sso_(rite)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Wedding_anniversary"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Idaho_Human_Rights_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Republic_Day_(Kazakhstan)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Blessing_(Roman_Catholic_Church)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Magha_Puja"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bataan_Memorial_Death_March"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Federal_Day_of_Thanksgiving,_Repentance_and_Prayer"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Higalaay_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Arctic_Winter_Games"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/2003_in_Malaysia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/St_Joseph's_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_LGBTI_Day_(Nepal)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Republic_Day_(India)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Revolution_and_Solidarity_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Operation_Matateh"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/\u00derett\u00e1ndinn"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Saint_Nicholas_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/UK_Music_Video_Awards"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vaisakh"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Coronation_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Christmas_in_Poland"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mother's_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Traditional_Ambrosian_Rite"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/World_Vegan_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Basant_Kite_Festival_(Punjab)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Diamond_jubilee"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tsagaan_Sar"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Obama_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Germinal_(French_Republican_Calendar)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Feria_de_Artesan\u00edas_de_Ponce"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Medieval_Festival_of_Elx"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Celebrate_Freedom_Week"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/International_Men's_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Boishakh"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/April"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Festa_do_Ros\u00e1rio"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Double_Ninth_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mole_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Armilustrium"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Martyrs'_Day_(Lebanon_and_Syria)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sansculottides"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sh\u00edyu\u00e8"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kislev"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nalukulangara_Pooram"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Foot_washing"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Coast_Guard_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Durga_Puja_in_Odisha"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Feast_of_the_Most_Holy_Redeemer"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Beltane"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Seokjeon_Daeje"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Enkutatash"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Quecholli"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fastnacht_(Pennsylvania_Dutch)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Allambie_Reception_Centre"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Aliturgical_days"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Memorial_Day_(Newfoundland_and_Labrador)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Bison_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Siblings_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Public_holidays_in_Ethiopia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Autumnal_Equinox_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/World_Storytelling_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Martin_Luther_King_Jr._Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Revolution_Day_(Mexico)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bicentennial"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/JoJo_Maman_B\u00e9b\u00e9"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Defender_of_Ukraine_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/World_Kindness_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Calle_Ocho_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Star_Wars_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bataan_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Liberation_Day_(Hong_Kong)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/World_Malaria_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Landing_of_the_33_Patriots_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sepand\u0101rmazg\u0101n"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Day_of_Revenge"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nemontemi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/School_Day_of_Non-violence_and_Peace"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/UST_Neo-Centennial_Celebration"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/D\u00eda_de_la_Altagracia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/2007_Langerado_Music_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Azar"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hoo_Hoo_Monument"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dearborn_Homecoming_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Non-Fiction_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Cherry_Blossom_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Summer_Festival,_Albania"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Montana_Pride"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/International_No_Diet_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Geography_of_Halloween"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Amerindian_Heritage_Month_(Guyana)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vishu"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Brooklyn-Queens_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Diwali"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Peshwai_Procession"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Concurso_de_Cante_Jondo"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Loving_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Youth_Art_Month"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vijay_Diwas_(India)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Overshoot_(microwave_communication)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Statehood_Day_(Serbia)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/International_Migrants_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kalabukay_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/International_Literacy_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/State_holidays_in_New_Jersey"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Festivus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lughnasadh"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ghost_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/World_Poetry_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/French_Rite"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Victory_day_of_Bangladesh"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/American_Heart_Month"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Finnish_Swedish_Heritage_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Culture_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Peter_and_Fevronia_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/2014_Arctic_Winter_Games"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tu_BiShvat"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/International_Day_of_No_Prostitution"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Parinirvana_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bodhi_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Shayani_Ekadashi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hosay"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Independence_Day_of_Trujillo"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Benque_fiesta"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Global_Information_Governance_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Federal_holidays_in_the_United_States"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Holy_Week_in_Mexico"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/World_Contact_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Soviet_Occupation_Day_(Georgia)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Regifugium"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Makar_Sankranti"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/April_Fools'_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Elul"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Saudi_National_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/\u0141\u00f3d\u017a_Biennale"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Feast_of_Christ_the_Priest"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/International_Francophonie_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Whit_Tuesday"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Sovereignty_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/International_Workers'_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Shakambhari_Purnima"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Constitution_Day_(Denmark)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Unity_Day_(Russia)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Radom_Air_Show"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Toxcatl"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pioneer_Days_(Chico,_California)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/World_AIDS_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/World_Day_for_Audiovisual_Heritage"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Christmas"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ascolia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nabakalebara_2015"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Feasts_of_Jesus_Christ"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Labour_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/All_Souls'_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Islam_Day_(Hawaii)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Meal_Monday"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lord_of_Huaman_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hola_Mohalla"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/2006_in_Malaysia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/D\u00eda_Mundial_de_Ponce"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Weihnachten"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Public_holidays_in_the_Soviet_Union"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Republic_Day_(Philippines)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Limassol_Carnival_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Great_Locomotive_Chase_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Day_of_the_Little_Candles"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/International_Youth_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Name_days_in_Bulgaria"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Celebrate_Bisexuality_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sigd"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Phalguna"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Freedom_to_Marry_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Grand_Review_of_the_Armies"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gustavus_Adolphus_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/8_Days_of_Christmas_(song)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Holy_Week_in_Zamora"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kargil_Vijay_Diwas"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Subaru_Cherry_Blossom_Festival_of_Greater_Philadelphia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Martius_(month)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sedantag"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Works_Art_&_Design_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/January"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Public_holidays_in_Argentina"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Famine_Commemoration_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mandela_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/International_Day_of_United_Nations_Peacekeepers"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Whit_Monday"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Radonitsa"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vesak"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nickanan_Night"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Virginia_Gold_Cup"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dhodha"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Independence_Day_(Somalia)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/International_Day_for_Tolerance"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sacred_Defence_Week"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Motorcade"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/NZ_Rail_150"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fraternal_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gibraltar_Diamond_Jubilee_Flotilla"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hardware_Freedom_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Autistic_Pride_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sankashti_Chaturthi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Boxing_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Sovereignty_and_Children's_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Samhain"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Holy_Week_in_Popay\u00e1n"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Shrove_Tuesday"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Winter_solstice"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mesori"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Union_Dissolution_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kottiyoor_Vysakha_Mahotsavam"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Flag_Day_(Australia)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fast_of_Esther"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Independence_Day_(Somaliland)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kali_Puja"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Eagle_Scout_Service_Project"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/DNA_day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Epip"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Feast_of_Saint_George"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vidovdan"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/H\u014donk\u014d"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/\u0110ur\u0111evdan"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sheriff's_March"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Quinquatria"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Saba_Saba_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Anant_Chaturdashi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Education_and_Sharing_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Waterloo_Air_Terminal"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Independence_Day_(Uzbekistan)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Eid_il-Burbara"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chatar_jatra"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Holika_Dahan"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Errol_Barrow_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ambedkar_Jayanti"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Diamond_Jubilee_of_Elizabeth_II"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dundee_Fortnight"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/African_Liberation_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cry_of_Dolores"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bhadra_(month)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Public_holidays_in_Greece"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Adloyada"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Casimir_Pulaski_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Madeira_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Katak"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ratu_Sir_Lala_Sukuna_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Loyalty_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Irreechaa"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Student_Day_(Iran)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tu_B'Av"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Russefeiring"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ask_a_Stupid_Question_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Red_Hand_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Occupation_of_the_Latvian_Republic_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Varalakshmi_Vratam"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Congregation_of_the_Servants_of_the_Paraclete"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Holidays_in_Wales"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Remembrance_Day_(Marshall_Islands)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rafe_Hernandez"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Independence_Day_of_Ukraine"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Aadi_Perukku"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Wasshoi_Hyakuman_Natsumatsuri"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rite_of_Adoption"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mesha_Sankranti"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Guru_Nanak_Gurpurab"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hong_Kong_New_Year_Countdown_Celebrations"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nettlemas"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Unity_Day_(Philadelphia)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dragobete"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/1_Kislev"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rosh_Hashanah_LaBehema"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rama_Navami"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Racial_Justice_Sunday"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vaikuntha_Ekadashi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nanomonestotse"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kiev_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/World_Immunization_Week"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Independence_Day_(Turkmenistan)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Holy_day_of_obligation"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/2007_Claxton_Shield"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Wa\u01f5ay"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Poy_Sang_Long"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Public_holidays_in_the_United_States"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Evacuation_Day_(Massachusetts)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pluvi\u00f4se"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rishi_Panchami"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lincoln_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mokshada_Ekadashi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chithirai_Thiruvizha"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Concord_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Curwood_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Day_of_Songun"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Queene's_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/1994_in_Malaysia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Greeley_Stampede"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/St._Knut's_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Portugal_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Public_holidays_in_Moldova"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/World_Humanitarian_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Heroes'_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/American_Sports_Holiday"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rite_of_Strict_Observance"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Remembrance_of_the_Dead"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Air_Force_Day_(Pakistan)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bahram-e_Pazhdo"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Public_holidays_in_Laos"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cloughtoberfest"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rite_of_Braga"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Feast_of_the_Seven_Fishes"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/T'anta_Raymi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Silicon_Valley_Pride"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/New_Beer's_Eve"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ndadaye_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/International_Chess_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Punjabi_Cinema_Golden_Honours"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Public_holidays_in_Syria"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Assumption_of_Mary"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Indigenous_Peoples'_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ganga_puja"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Helen_Keller_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Silver_Jubilee_of_King_Jigme_Singye_Wangchuck"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alaska_Folk_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Buergbrennen"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lupercalia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Saint_David's_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Marian_feast_days"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/International_Year_of_Astronomy"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Festa_de_l'Unit\u00e0"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fiestas_Patrias_(Chile)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/RRI_1"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Opiconsivia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Youth_Day_(India)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/World_Philosophy_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/West_Virginia_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/December_2009_Kurdish_protests_in_Turkey"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/World_Turtle_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/1981_Handsworth_riots"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rabi'_al-thani"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Walk_to_Work_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Aviation_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Quintilis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Salw\u0101\u01e7a"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Day_of_Mourning_(Canadian_observance)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Shahrivar"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Buddha's_Birthday"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gurdwara_Baba_Atal"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Paremhat"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/International_Day_in_Support_of_Victims_of_Torture"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Procrastination_Week"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Calan_Mai"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tobi_(month)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kupala_Night"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Okuyi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Youth_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Victoria_Day_(Scotland)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_event_of_Ghadir_Khumm"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/VEISHEA"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tenth_of_Tevet"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mahamastakabhisheka"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Discovery_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fast_day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Passover_Seder"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bonalu"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Public_holidays_in_the_Cook_Islands"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Public_holidays_in_Italy"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vaisakhi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Festival_of_Jewish_Culture_in_Warsaw"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mullivaikkal_Remembrance_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vaisakha"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Eid_al-Adha"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Christmas_in_Hawaii"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ganesh_Chaturthi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chilla_(month)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sanja_Matsuri"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bhairava_Ashtami"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/World_Development_Information_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/World_UFO_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Day_of_Sweden"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Floralia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Public_holidays_in_Ukraine"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Democracy_250"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Spencerville_Fair"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Malvinas_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Festa_della_Sensa"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/300th_anniversary_of_the_Romanov_dynasty"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Magh_(Sikh_calendar)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Puthandu"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gangamma_Jatara"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hallett_Cove_School"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Day_of_the_Young_Combatant"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/White_Cane_Safety_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Thingyan"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/St_Kilda_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Independence_Day_(Poland)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Shevat"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sadeh"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Misteri_di_Trapani"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bu\u00df-_und_Bettag"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gaecheonjeol"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Federal_Territory_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/2011\u201312_Austrian_Football_Championship"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hornbill_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Copenhagen_Distortion"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Marmot_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ozmas"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Harvey_Milk_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/August"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Arattupuzha_Pooram"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Novruz_in_Azerbaijan"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chet_(month)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Summer_vacation"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Adar"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lincoln's_Birthday"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Manicktalla_Chaltabagan_Lohapatty_Durga_Puja"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Outfly"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Move_Your_Domain_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mischief_Night"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Public_holidays_in_Canada"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Student_Day_(South_Korea)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Africa_Oy\u00e9"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Yom_Kippur"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Susan_B._Anthony_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/2009_Claxton_Shield"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Losar"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CPM_S30V_steel"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Oktoberfest_celebrations"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/1997_in_Malaysia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Victory_Day_(United_States)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Oktoberfest"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lopez_Jaena_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Constitution_Day_(United_States)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gumboot_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Christmas_(Don_McLean_album)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/UN_Spanish_Language_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Meskel"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Social_Media_Giving_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/World_Religion_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Cashew_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/2000_in_Malaysia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lebanese_Independence_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Music_Day_in_Azerbaijan"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Racial_Harmony_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Afghan_Independence_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Statehood_Day_(Slovenia)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Festum_Ovorum"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Christmas_(Jaci_Velasquez_album)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Towel_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Christopher_Street_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dancing_procession_of_Echternach"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Shravana_Putrada_Ekadashi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sukkot"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Transfer_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Republic_Day_(Turkey)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pulaski_Day_Parade"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Aesthetica_Short_Film_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bank_holidays_in_India"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Marine_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/\u01e6bargolay"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bird_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jeth"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jewish_American_Heritage_Month"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Adae_Kese_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Von_Steuben_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Trizna"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Japanese_New_Year"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Candidacy"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Buy_Nothing_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Festival_of_Mountain_and_Plain"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Shawwal"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/2010_Arctic_Winter_Games"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dev_Deepawali_(Varanasi)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nisan"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Communion_under_both_kinds"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/\u00c7\u00fck"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Greenery_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Galungan"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Public_Domain_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Good_Governance_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/International_Fetish_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Distaff_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lifetime_reserve_days"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ashvin"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/October"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Seventeenth_of_Tammuz"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ear_Candy_for_the_Headphone_Trippers"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/K\u014denji_Awa_Odori"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/L'Escalade"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tachhala_(month)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Nothing_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fermentation_Fest"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pausha_Putrada_Ekadashi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Small_Business_Saturday"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nemoralia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Founders_Day_(South_Africa)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Defenders_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Our_Lady_of_Meritxell"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jerusalem_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Purushottam_Maas"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/1913_Sligo_Dock_strike"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Norwegian_Constitution_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bagroiser"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nenmara_Vallanghy_Vela"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tammuz_(Hebrew_month)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Deepothsavam"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dongzhi_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hippika_gymnasia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Women's_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Happiest_Homecoming_on_Earth"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Independence_Day_(Sri_Lanka)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Wagaung"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Giving_Tuesday"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Papal_Concert_to_Commemorate_the_Shoah"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Black_Friday_(shopping)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/World_Radio_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ely_Eel_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vasant_Panchami"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Durga_Ashtami"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Corporate_anniversary"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kansas_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Zamenhof_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Saint_Lucy's_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Commemoration_Day_of_Fallen_Soldiers"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Poh"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/World_Hello_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Indiana_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/International_Day_of_Forests"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cincinnati_Pride"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Intercession_of_the_Theotokos"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/D\u00edas_Patrios_(Guatemala)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gay_Blue_Jeans_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Arbor_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pohela_Boishakh"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Day_of_Arafah"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Saint_John's_Eve"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ottawa_Irish_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kishiwada_Danjiri_Matsuri"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/International_Beer_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Collector_Car_Appreciation_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Klozum"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Yorke_Peninsula_Field_Days"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ickwell_May_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rectified_Scottish_Rite"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kosa_(folklore)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/V\u00e4lkommen_hem_(song)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/T\u0259la"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Public_holiday"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Platinum_jubilee"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/International_Bacon_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Manitoba_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vernal_Equinox_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dhanu"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Public_holidays_in_Tuvalu"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Heroes'_Day_(South_Africa)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jump-up_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cavalcade"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Flag_of_Canada_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pakta"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Leon_Day_(holiday)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Annunciation"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Yom_Hazikaron"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Water_rite"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Frozen_Dead_Guy_Days"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lantern_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Charak_Puja"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Peace_Officers_Memorial_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Waterloo_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_11-day_weekend"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Father's_Day_(United_States)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Totensonntag"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Public_holidays_in_Kiribati"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fordicidia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tirupati_Ganga_Jatara"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mifflin_Street_Block_Party"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Senshusei_course"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Blacks_and_Whites'_Carnival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/War_Victims_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Armed_Forces_Day_(South_Korea)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Reactions_to_Innocence_of_Muslims"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/San_Francisco_Jazz_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Festival_Folcl\u00f3rico_y_Reinado_Nacional_del_Bambuco"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Golden_Jubilee_of_Elizabeth_II"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dissolution_of_the_Parliament_of_the_United_Kingdom"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tazaungmon"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Wash-up_period"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dragon_Boat_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Melon_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Golden_Week_(Japan)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Maslenitsa"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Independence_Day_(Republic_of_Macedonia)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tableround"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nayrouz"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/American_Family_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Honey_Bee_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fructidor"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Day_of_Remembrance_(Cambodia)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Data_Privacy_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Koninkrijksdag"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Krishna_Janmashtami"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Yukka_Nu_Hii"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Turkey_shoot"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Loi_Krathong"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Honey_Month"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Independence_Day_(Estonia)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/An_Leabhar_M\u00f2r"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Afro-Colombian_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Armed_Forces_Day_(United_Kingdom)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Korean_New_Year"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/International_Day_of_the_Disappeared"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cassette_Store_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Feast_of_the_Holy_Name_of_Jesus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/World_Art_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Slava"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sawan"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sh\u016bsen-kinenbi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kachhala_(month)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rogation_days"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kashmir_Solidarity_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sirimanothsavam"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kshamavani"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Purim"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mimouna"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Raksha_Bandhan"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Cornbread_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Liberty_Weekend"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sharad_Purnima"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/International_Civil_Aviation_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Yenya"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Good_Friday"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Qhapaq_hucha"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Martyrs'_Day_(Panama)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Torch_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mixed_Race_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sinhalese_New_Year"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Canadian_Centennial"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Feast_of_the_Prayer_of_Christ"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Aberri_Eguna"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sivan"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Prince_Rainier_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ardee_Baroque_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Boxing_Week"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Victory_Day_(Croatia)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/World_Blood_Donor_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/International_Day_of_Solidarity_with_the_Palestinian_People"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Patriots'_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Evolution_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/World_Space_Week"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Commemoration_of_Atat\u00fcrk,_Youth_and_Sports_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Melbourne_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pyatho"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/White_House_Iftar_dinner"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dilla_(month)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Piatra_Ro\u0219ie_Dacian_fortress"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Guy_Fawkes_Night"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cold_Food_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/International_Talk_Like_a_Pirate_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Postal_holiday"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kingston_Canadian_Film_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Culture_Freedom_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Typing_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Feralia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Juicy_Couture"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/St._Stephen's_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Voters'_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Festival_of_Lights_(Lyon)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Golden_jubilee"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mucenici"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/French_Community_Holiday"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Honor_America_Days"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Spanish_Radio_Academy"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Galician_Literature_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Birthday_of_the_Monkey_God"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Candlemas_(disambiguation)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tynwald_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Water_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Qingming_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Flag_Day_in_Mexico"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Makan_bajamba"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jumada_al-Thani"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Festa_della_Santissima_Piet\u00e0"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Azad_Kashmir_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Royal_Hobart_Regatta"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Windsor\u2013Detroit_International_Freedom_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Feriae_Latinae"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mehregan"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Karamu_(feast)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Zmaray"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Puritan_Sabbatarianism"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cinco_de_Mayo"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bhai_Phonta"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Angarki_Sankashti_Chaturthi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ruby_jubilee"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Oddfest"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Magh_(Nepali_calendar)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/International_Transgender_Day_of_Visibility"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Day_of_the_Vow"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Music_For_People_&_Thingamajigs_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Coral_Triangle_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Maithili_New_Year"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/2012_Arctic_Winter_Games"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Binirayan_festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Koliada"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/St_Mark's_Eve"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Education_Day_(India)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Berchtoldstag"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/St_Piran's_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Royal_Toowoomba_Show"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lei_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Passiontide"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Little_Christmas"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/International_Purple_Hijab_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/2005_NCAA_Division_I_Women's_Volleyball_Tournament"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/International_Yoga_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Babinden"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pittsburgh_Folk_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Africa_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/St._Andrew's_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Zh\u0113ngyu\u00e8"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Be\u00f1esmen"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/1934_Centenary_of_Melbourne"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Truman_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cyrus_the_Great_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Puente_(holiday)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Independence_Day_(Myanmar)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/60th_Anniversary_Celebrations_of_Bhumibol_Adulyadej's_Accession"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Independence_Day_(Croatia)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Old_Cows_Days/The_Days_of_the_Brindled_Cow"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jefferson\u2013Jackson_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Muslim_holidays"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Aprilis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Trinidad_and_Tobago_Carnival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Saturnalia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Repatriation_tax_holiday"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Public_holidays_in_Liberia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ice_Cream_for_Breakfast_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Simchat_Torah"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/COPD_Awareness_Month"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jewish_holidays"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Igue_festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cedar_Fest"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/International_Day_of_Charity"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vinalia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Festa_de_S\u00e3o_Jo\u00e3o_do_Porto"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Holy_Week_in_the_Philippines"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fixed_feast"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Beer_Day_(United_States)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Universal_Day_of_Culture"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mandali_Puja"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Feast_of_the_Circumcision_of_Christ"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/La_Tomatina"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Peerla_Panduga"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Special_Shabbat"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pope_John_Paul_II_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Random_Acts_of_Kindness_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/2007\u201308_S\u00fcper_Lig"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Day_of_the_National_Flag_(Ukraine)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Annual_Customs_of_Dahomey"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Independence_Day_(Botswana)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Airborne_March"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Veterans_Day_(Sweden)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gokarna_Aunsi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Classical_tradition"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Public_holidays_in_the_Republic_of_Ireland"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cheti_Chand"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bachhala_(month)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Indian_Day_(Brazil)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Time_Machine_50th_Anniversary_Tour"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mourning_of_Muharram"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/International_Astrology_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Castile_and_Le\u00f3n_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ratha-Yatra"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gai_Jatra"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nepal_Sambat"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Glasgow_Fair"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/East-Central_Minnesota_Pride"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chaturmas"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Trndez"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/St._Clement's_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tammuz_(Babylonian_calendar)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Februarius"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Moi_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Laylat_al-Qadr"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sitalsasthi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Christmas_lights_in_Medell\u00edn"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Employee_Appreciation_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lath_mar_Holi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Principal_Feast"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sweden_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Paoni"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Democracy_Day_(Nigeria)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Laskiainen"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Phagun_(Nepali_calendar)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Qinhuai_Lantern_Fair"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/New_York_State_government_holidays"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/M\u0103r\u021bi\u0219or"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mainz_carnival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hong_Kong_Special_Administrative_Region_Establishment_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Oprah_Winfrey's_Legends_Ball"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Procession_of_the_Holy_Blood"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Missouri_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Thermidor"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ashura"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Takanakuy"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bus\u00f3j\u00e1r\u00e1s"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Global_Day_of_Action_on_Military_Spending"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Transgender_Day_of_Remembrance"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/International_Day_of_Happiness"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Koiak"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Viking_tour"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/International_Chocolate_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Paynauen_Duyan_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Iqbal_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/First_Night"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/F\u00eate_du_Vodoun"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Police_Day_(Egypt)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Udhauli"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Professional_learning_community"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Independence_Day_(Philippines)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Day_(Vietnam)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lity_(Orthodox_Vespers)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Statehood_Day_(Lithuania)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gunla"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Statehood_Day_(Montenegro)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Maaveerar_Naal"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sumidagawa_Fireworks_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Easter_Friday"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Michaelmas"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Commemoration_of_the_Passion_of_Christ"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/World_Smile_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Arts_First"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Centennial"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jamaica_Independence_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Black_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/1996_in_Malaysia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/1998_in_Malaysia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Victoria_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Abaca_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Garifuna_Settlement_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Roanoke_Arts_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Triduum"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/World_Environment_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Guam_Discovery_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Bouncy"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Za_kri\u017een"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Independence_Day_(Finland)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Warriors'_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Saint-Jean-Baptiste_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sarawak_Self-government_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Airborne_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cancer_Control_Month"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Geologists_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Public_holidays_in_Libya"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Matronalia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Super_Saturday"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chaharshanbe_Suri"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Photo_op"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Limba_noastr\u0103_(public_holiday)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Festival_(Anglicanism)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Woodward_Dream_Cruise"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Weiya"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Arifana"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/World_Freedom_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Godiva_Procession"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Christmas_in_Ireland"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/North_Carolina_Watermelon_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Festival_of_Fantastic_Films"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mujahideen_Victory_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Abacost"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Melbourne_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Daeboreum"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Armistice_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Postcards_(TV_series)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Huey_Tozoztli"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Julebord"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Day_(Singapore)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tlaxochimaco"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Halloween"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Midsumma_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Maha_Shivaratri"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/King's_Feast"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cyber_Monday"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/George's_Day_in_Autumn"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Paopi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Banian,_Iran"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Plough_Sunday"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/America's_Got_Talent_(season_10)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tatiana_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hakata_Dontaku"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tom_Thumb_Gallery"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Pet_Month"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Albanian_Flag_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Thadingyut_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Spring_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kollam_Pooram"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vrishchikam"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dhanu_jatra"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Blessed_Rainy_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Heroes'_Day_(Namibia)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cotswold_Olimpick_Games"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Founder's_Day_(Ghana)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ronald_Reagan_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Komos"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Opening_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Deliberation_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Day_of_Missile_Forces_and_Artillery"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pan_American_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Amphidromia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Carnaval_de_Ponce"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Emergency_Rescuer's_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Record_Store_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/San_Jos\u00e9_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Journal_of_Rudolph_Friederich_Kurz"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mordad"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/420_(cannabis_culture)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gibraltar_National_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chhath"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Old_New_Year"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Flag_Day_(United_States)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Carl_Garner_Federal_Lands_Cleanup_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bastille_Day_military_parade"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Day_of_Neutrality"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kha_b-Nisan"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ugly_Way"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Iunius_(month)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Remembrance_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Martyrs'_Day_(Albania)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Asian_Pacific_American_Heritage_Month"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ponce_Jazz_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/HumanLight"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Good_Neighbor_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Canberra_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Relick_Sunday"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Independence_and_Unity_Day_(Slovenia)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/U.P._Centennial_Year"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rosalia_(festival)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Edge_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/World_Rak\u0131_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nowruz"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fractio_panis_(liturgy)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Thadingyut"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Guide_Dog_Month"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/World_Osteoporosis_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dahi_Handi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Balipratipada"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Stratford_Shakespeare_Festival_production_history"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/School_holidays_in_the_United_States"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Freedom_Day_(Belarus)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lane_County_Fair"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bibi-Ka-Alam"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bark_Mitzvah"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Royal_Launceston_Show"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Volunteer_Week"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/22_Shvat"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Women_of_Aviation_Worldwide_Week"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sizdah_Be-dar"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Independence_Day_(India)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alabama_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Independence_Day_(Brazil)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Bird-Feeding_Month"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Royal_Ploughing_Ceremony"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Earth_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Annaprashana"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gudi_Padwa"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Guavaween"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Now_Is_the_Month_of_Maying"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chaiti_Festival,_Rayagada"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Serfs_Emancipation_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ulcinj_Municipality_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Whuppity_Scoorie_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Constitution_Week"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Native_American_Heritage_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Annapolis_Valley_Apple_Blossom_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ulwaluko"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Urs"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bhadra_(Nepali_calendar)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dominican_Rite"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Public_holidays_in_Taiwan"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sekrenyi_festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kharchi_puja"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/May"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Software_Freedom_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Quincea\u00f1era"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Anzac_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vulcan_(mythology)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Potlatch"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Adae_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Sleepy_Head_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Feast_of_the_Swans"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Saint_Catherine's_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bob_Halloran"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Holi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Joishtho"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Payna"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/2004_PDC_World_Darts_Championship"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bradford_Mela"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Menstrual_hygiene_day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Caristia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Suna_Besha"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bourne_Free"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Dairy_Goat_Awareness_Week"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Baishakh"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rizal_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bhogi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lohri"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Supra_(feast)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ho'olaule'a"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Scarlet_Sails_(tradition)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sama_Chakeva"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Boomsday"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Meditrinalia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Day_of_Commemoration"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Deadly_Awards"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Thanksgiving"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Clean_Monday"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Surin_Elephant_Round-up"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Agonalia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Baci"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Yuri's_Night"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tazaungdaing_festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nane_Nane_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Brush_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Setsubun"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ancient_and_Primitive_Rite"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Day_of_Remembrance_for_all_Victims_of_Chemical_Warfare"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Freedom_Day_(Malta)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alaverdoba"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Public_holidays_in_Vatican_City"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Khamis_el_sakara"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bunga_Dyah_Jatra_(chariot_festival)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ottawa_Fringe_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/International_Day_of_the_Girl_Child"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/World_Day_Against_Child_Labour"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Maand_van_het_Spannende_Boek"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jidai_Matsuri"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Thanksgiving_(United_States)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/World_Egg_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Calends"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cistercian_Rite"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/World_Oceans_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sourest_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Expectation_of_the_Blessed_Virgin_Mary"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rite_of_Memphis-Misraim"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Christmas_Eve"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chaitra"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/International_Day_of_Remembrance_of_the_Victims_of_Slavery_and_the_Transatlantic_Slave_Trade"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Irish-American_Heritage_Month"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Grandparents_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/International_Co-operative_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Statehood_Day_(Hawaii)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Independence_Day_(Algeria)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/H\u00f9ng_Kings'_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cemetery_Sunday"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/2013_in_Malaysia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Liberation_Day_(Jersey)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Slametan"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Heroes_Day_(Saint_Kitts_and_Nevis)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alaska_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Regifting_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/\u00d3lavs\u00f8ka"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Remembrance_Sunday"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Respect_for_the_Aged_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vimy_Ridge_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Constitution_Day_(India)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Day_of_Reason"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Majuba_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/100th_Anniversary_of_the_Independence_of_Albania"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Peach_Drop_(Atlanta,_Georgia)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Decoration_Day_(Canada)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Datta_Jayanti"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/International_Day_of_Older_Persons"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Land_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/June"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Patriots'_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/November"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/World_Vegetarian_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Catfish_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Royal_Hobart_Show"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Imperial_hunt_of_the_Qing_dynasty"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Freedom_and_Democracy_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Public_holidays_in_Togo"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jivitputrika"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Keipi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mamankam_festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Remembrance_Day_(Sri_Lanka)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Grammar_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Filipino_American_History_Month"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Day_of_Victory_in_the_Great_Fatherland_Liberation_War"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Labour_Day_(Singapore)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Agrahayana"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/United_Nations_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Veterans_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Farvardin"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jumada_al-awwal"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Aldersgate_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Square_Root_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/11_Nissan"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Family_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/October_is_the_Kindest_Month"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Shichi-Go-San"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Foso_(feast)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/System_Administrator_Appreciation_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Savitri_Brata"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ogrohayon"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Constitution_Day_(South_Korea)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Christmas_in_Romania"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sh\u014dwa_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ndut_initiation_rite"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vision_quest"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/West_Syrian_Rite"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Atla_Tadde"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Armed_Forces_Day_(Bangladesh)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Magha_(month)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/International_Day_of_Democracy"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/2001_in_Malaysia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/2005_in_Malaysia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Yoga_Month"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Saint_Patrick's_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sakela"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Boss's_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lee\u2013Jackson_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Shinj\u014d_Matsuri"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/World_Statistics_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Campbell_Live"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jestha_(Nepali_calendar)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/\u00d6skudagur"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Commemoration_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/World_Wildlife_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Panoply_Arts_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Belgian_National_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Baraat"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Darwin_Centennial_Celebration_(1959)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Revolution_Day_(Egypt)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Naraka_Chaturdashi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nine_Emperor_Gods_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/European_Day_of_the_Righteous"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Virgen_de_los_Angeles"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lauderdale_County_Tomato_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Picnic_Day_(Australian_holiday)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Single_rider"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Veterans'_Day_(Netherlands)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Moveable_feast_(observance_practice)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rash_guard"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Feast_of_the_First_Fruits_of_Wine"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Okinawa_Memorial_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Independence_Day_(Niger)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pregnancy_and_Infant_Loss_Remembrance_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Biikebrennen"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Baltic_Freedom_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Confederate_Memorial_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Contraband_Days"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Resistive_touchscreen"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sette_Giugno"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/J\u00f3nsmessa"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Satyanath"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Independence_Day_(Georgia)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Public_holidays_in_Botswana"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Assu"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Folk_Festival_(Australia)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Feast_of_Saint_George_(Palestine)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Friendship_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jacksonville_Jazz_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Saviours'_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Prairial"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/International_Solidarity_Day_of_Azerbaijanis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/College_Scholastic_Ability_Test_(South_Korea)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Day_of_Encouragement"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dashain"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/St._George_Melkite_Catholic_Church"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rhein_in_Flammen"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Children's_Day_(Japan)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Byzantine_Rite"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dree_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Savior_of_the_Apple_Feast_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Victory_in_Europe_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Harriet_Tubman_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Armed_Forces_Day_(Poland)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/North_Borneo_Self-government_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nadaw"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Geek_Pride_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/White_House_Hanukkah_Party"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ab-Zohr"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vend\u00e9miaire"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Floral_City_Heritage_Days"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/United_States_federal_observances"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Train_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Transgender_Awareness_Week"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dokopiny_Ziemniaka"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/We_Are_One:_The_Obama_Inaugural_Celebration_at_the_Lincoln_Memorial"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Delivery_month"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Philippine_Independence_Day_Parade"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Yom_HaAliyah"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Man's_Day_and_Woman's_Day_(Iceland)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Victory_over_Japan_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Day_of_the_People's_Republic_of_China"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ravindra_Mhatre"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/New_Orleans_Jazz_&_Heritage_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sammakka_Saralamma_Jatara"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/D\u00eda_Nacional_de_Galicia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Asharh"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Nine_Days"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Republic_Day_(Republic_of_Macedonia)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pusn\u00e2"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rite_of_passage"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Victory_Day_(Malta)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Yomari_punhi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Epiphany_(holiday)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/People's_Sunday"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Wrestling_shoe"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Eid_al-Fitr"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Day_of_Remembrance_for_Truth_and_Justice"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Martyrs'_Day_(India)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Thursday_of_the_Dead"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/UN_Chinese_Language_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/First_Day_of_Summer"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fiesta_Nacional_de_la_Danza"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Amburbium"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gita_Jayanti"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ashanti_Yam_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mothering_Sunday"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/100_years_of_women_in_transport_campaign"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jongmyo_jerye"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ochpaniztli"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Norbertine_Rite"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/World_Intellectual_Property_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Greek_festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Christmas_in_the_Philippines"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tax_amnesty"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ferrymead_125"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Manabasa_Gurubara"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pokemon20"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Yule"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dormition_of_the_Mother_of_God"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/H\u0131d\u0131rellez"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Access_to_Information_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Carmelite_Rite"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Panay_Liberation_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/2002_in_Malaysia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Attrition_(dental)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nirjala_Ekadashi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bank_holiday"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Christmas_tree_plundering"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Stuttering_Awareness_Week"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Cleavage_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Talabukon_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Holy_Week_in_Spain"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Confederate_History_Month"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Asian_Excellence_Awards"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Carlyle_Holiday"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ramadan"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nayon"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Blood_wings"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Shakrain"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Law_Day_(United_States)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Carnival_in_Belize"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Micareta"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Siyum_HaShas"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Batik_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fossil_Fools_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Eighth_(United_States)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/\u014cmisoka"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Guru_Purnima"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chandeshwori_Jatra"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Monkey_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sami_National_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Teej"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Songkran_(Thailand)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Ayatollah_(football_celebration)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Washington's_Birthday"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Flag_Day_(Argentina)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sangken"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Radio_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Darwin_2009:_A_Pittsburgh_Partnership"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Renn_Fayre"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hadaka_Matsuri"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/1983\u201384_British_Home_Championship"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ambrosian_Rite"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jumu'atul-Wida"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/International_Day_of_Peace"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/March"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lancashire_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Akwasidae_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/DNA_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Parade"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Repentance_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/New_Year's_Eve"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Pizza_Month"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Holiday_of_the_City_of_Miskolc"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Blasphemy_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/LePox'a"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/List_of_observances_in_the_United_States_by_presidential_proclamation"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jewel_of_Russia_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/World_Teachers'_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Child_Health_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cosmonautics_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hillbilly_Days"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Umchwasho"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pintados-Kasadyaan"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Roodmas"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mummer's_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chalica"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rita_Angus_Residency"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ambarvalia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Karnataka_Rajyotsava"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Willka_Raymi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Luminato"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pesach_Sheni"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tom_and_Jerry:_A_Nutcracker_Tale"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Shrawan_(Nepali_calendar)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Father's_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rare_Disease_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Prabodhini_Ekadashi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Anti-Bullying_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Giant_Lantern_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Maharashtra_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Day_of_the_Sun"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Unification_Day_(Cameroon)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/World_Hepatitis_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/World_Usability_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bastille_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Safar"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Akshaya_Tritiya"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/L\u00e0yu\u00e8"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Aztec_New_Year"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Leeds_Pride"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Huey_Tecuilhuitl"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Workers'_Memorial_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/UN_French_Language_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ashadh_(Nepali_calendar)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/D\u00eda_del_Mar"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Independence_Day_(Bangladesh)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Maius"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Laba_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sahasra_purna_chandrodayam"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Navy_Day_(Chile)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Day_of_the_Republic_of_China"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Imbolc"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Palm_Sunday"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/SumBingTik_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/\u015eeva_Zistan\u00ea"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Independence_Day_(United_States)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Wide_World_Over"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/International_Women's_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pain_Awareness_Month"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mother's_Day_(United_States)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Messidor"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Bike_Month"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vivaha_Panchami"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fenakiwi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Whitsundays_(disambiguation)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/La_Ceiba_Carnival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fiestas_patronales_in_Puerto_Rico"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rakhri"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/White_Lotus_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/World_Prematurity_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bennington_Battle_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bhau-beej"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pitru_Paksha"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lychee_and_Dog_Meat_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Entrepreneurs'_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rat_trick"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Se\u00f1orita_Panam\u00e1_2002"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/World_No_Tobacco_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Funeral_procession"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/International_Day_against_Nuclear_Tests"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rabindra_Jayanti"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Singles_Awareness_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Winter_carnival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Maifest"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sikmogil"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Srivari_Brahmotsavam"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Human_Rights_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Peace_Jubilee"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ati-Atihan_festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jaanip\u00e4ev"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/World_Breastfeeding_Week"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Waso"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Spiritual_Baptist/Shouter_Liberation_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dengaku"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/1992_in_Malaysia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fifty_Grand_for_Christmas"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tabodwe"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pride_Fest_(Bismarck_and_Mandan,_North_Dakota)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Commonwealth_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/La\u1e5bam"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fast_of_the_Firstborn"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bloomsday"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Public_holidays_in_Mongolia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Feast_of_Our_Lady_of_Ransom"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Youm-e-Takbir"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/International_Day_of_Zero_Tolerance_to_Female_Genital_Mutilation"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lekhah_Dodi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/World_Mosquito_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ririe_Days"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mobad"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bermuda_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/International_Colour_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Triumph_of_the_Revolution"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Green_Monday"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Comedy_festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Woodstock_Jazz_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Prathamastami"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/General_Pulaski_Memorial_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hobbit_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hoshana_Rabbah"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Baba_Marta_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/German_Unity_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Constitution_Memorial_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/October_Holiday"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Liverpool_Shakespeare_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Thaipusam"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Poush"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sacrament"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Stephen_Foster_Memorial_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Birkat_Hachama"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Brooklyn_Hip-Hop_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Silver_jubilee"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/UN_Arabic_Language_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mha_Puja"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Accession_Day_(Jammu_and_Kashmir)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Victory_dance_(sports)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Day_of_Prayer"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fast_of_Gedalia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Las_Ma\u00f1anitas_(celebration)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/July"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tagu"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Samjinnal"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/NAIDOC_Week"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fajr_decade"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Children's_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/White_River,_Mpumalanga"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lag_BaOmer"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Do\u017cynki"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Veterans_Day_(Norway)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Edinburgh's_Hogmanay"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Agrasen_Jayanti"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/International_Sculpture_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Public_holidays_in_Singapore"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/GlobalFest"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Shoppable_Windows"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Terminalia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/February"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Groundhog_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Liberation_Day_(Netherlands)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Labor_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Thrissur_Pooram"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mawlid"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Forefathers'_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Poetry_Month"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/2008_National_Year_of_Reading"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Saint_George's_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Reformation_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Port_Eliot_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kadayawan_Festival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Karva_Chauth"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/UN_English_Language_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Songkran_(Lao)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ninoy_Aquino_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Malanka"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Blue_Mass"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Waitangi_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kanda_Matsuri"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/2008_in_Malaysia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Day_of_the_Dead"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Afghan_wedding"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Leonese_Language_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Eucharist"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ordibehesht"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/International_Lefthanders_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Act_Zluky"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fiestas_de_Santa_Fe"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Samavartanam"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Swiss_National_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sat_Thai"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rosa_Parks_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Survivors_of_Suicide_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Global_Money_Week"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tepeilhuitl"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nagoba_Jatara"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Parmouti"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Archbishop_of_Erbil"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cultural_depictions_of_Augustus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/American_Civil_War_Centennial"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ivy_Day_(Ireland)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Women's_History_Month"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Newspaper_Carrier_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bihu"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ambubachi_Mela"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pausha"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Retrocession_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Indian_Arrival_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Madaraka_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Secular_Games"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Puerto_Rico_Constitution_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Svensk_Hyllningsfest"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Black_Friday_(partying)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fiji_Week"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ngoenyang"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Yhyakh"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Khordad_Sal"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Agila_Social_and_Economic_Carnival"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Veterans'_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/World_Students'_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nyepi"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Grand_Duke's_Official_Birthday"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Valentine's_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nuakhai"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Falles_of_Alzira"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/19_Kislev"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Store_Bededag"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Free_Comic_Book_Day"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Durga_Puja"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Testa", "surface form": "test2"}], "relations": [{"URI": "http://dbpedia.org/ontology/feastDay", "surface form": "holidays"}, {"URI": "http://dbpedia.org/ontology/party", "surface form": "celebrated"}]}, {"id": "306", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Who is the tallest basketball player?", "keywords": "tallest, basketball player"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:BasketballPlayer ; dbo:height ?num } ORDER BY DESC(?num) OFFSET 0 LIMIT 1"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Thijs_Vermeulen"}}]}}]}, {"id": "307", "answertype": "number", "aggregation": true, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "How many languages are spoken in Turkmenistan?", "keywords": "languages, Turkmenistan"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT (COUNT(DISTINCT ?x) AS ?c) WHERE { res:Turkmenistan dbo:language ?x }"}, "answers": [{"head": {"vars": ["c"]}, "results": {"bindings": [{"c": {"type": "literal", "value": "2"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Turkmenistan", "surface form": "Turkmenistan"}], "relations": [{"URI": "http://dbpedia.org/ontology/language", "surface form": "languages"}, {"URI": "http://dbpedia.org/ontology/spokenIn", "surface form": "spoken"}]}, {"id": "308", "answertype": "boolean", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Did Che Guevara have children?", "keywords": "children, Che Guevara"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> ASK WHERE { res:Che_Guevara dbo:child ?uri }"}, "answers": [{"head": {}, "results": {}, "boolean": true}], "entities": [{"URI": "http://dbpedia.org/resource/Che_Guevara", "surface form": "Che Guevara"}], "relations": [{"URI": "http://dbpedia.org/ontology/child", "surface form": "children"}]}, {"id": "309", "answertype": "boolean", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Did Kaurism\u00e4ki ever win the Grand Prix at Cannes?", "keywords": "Kaurism\u00e4ki, winner, Grand Prix at Cannes"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> ASK WHERE { res:Aki_Kaurism\u00e4ki dbo:award <http://dbpedia.org/resource/Grand_Prix_(Cannes_Film_Festival)> }"}, "answers": [{"head": {}, "results": {}, "boolean": false}], "entities": [{"URI": "http://dbpedia.org/resource/Aki_Kaurism\u00e4ki", "surface form": "Kaurism\u00e4ki"}, {"URI": "http://dbpedia.org/resource/Grand_Prix_(Cannes_Film_Festival)", "surface form": "Grand Prix at Cannes"}], "relations": [{"URI": "http://dbpedia.org/ontology/award", "surface form": "win"}]}, {"id": "310", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "To which party does the mayor of Paris belong?", "keywords": "party, mayor of Paris, belong"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Paris dbo:mayor ?x . ?x dbo:party ?uri }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Socialist_Party_(France)"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Paris", "surface form": "Paris"}], "relations": [{"URI": "http://dbpedia.org/ontology/party", "surface form": "party"}, {"URI": "http://dbpedia.org/ontology/mayor", "surface form": "mayor"}, {"URI": "http://dbpedia.org/ontology/date", "surface form": "belong"}]}, {"id": "311", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Who is the Formula 1 race driver with the most races?", "keywords": "Formula 1, race driver, races, most"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:FormulaOneRacer ; dbo:races ?x } ORDER BY DESC(?x) OFFSET 0 LIMIT 1"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Michael_Schumacher"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Race_Driver:_Create_&_Race", "surface form": "Formula 1 race driver"}], "relations": [{"URI": "http://dbpedia.org/ontology/races", "surface form": "races"}]}, {"id": "312", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "What country is Sitecore from?", "keywords": "country, Sitecore"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Sitecore dbo:foundationPlace ?uri }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Denmark"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Sitecore", "surface form": "Sitecore"}], "relations": [{"URI": "http://dbpedia.org/ontology/country", "surface form": "country"}]}, {"id": "313", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Give me the birth place of Frank Sinatra.", "keywords": "birth place, Frank Sinatra"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?place WHERE { res:Frank_Sinatra dbo:birthPlace ?place }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hoboken,_New_Jersey"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Frank_Sinatra", "surface form": "Frank Sinatra"}], "relations": [{"URI": "http://dbpedia.org/ontology/birthPlace", "surface form": "birth place"}]}, {"id": "314", "answertype": "boolean", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Is Christian Bale starring in Velvet Goldmine?", "keywords": "Christian Bale, starring, Velvet Goldmine"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> ASK WHERE { res:Velvet_Goldmine dbo:starring res:Christian_Bale }"}, "answers": [{"head": {}, "results": {}, "boolean": true}], "entities": [{"URI": "http://dbpedia.org/resource/Christian_Bale", "surface form": "Christian Bale"}, {"URI": "http://dbpedia.org/resource/Velvet_Goldmine", "surface form": "Velvet Goldmine"}], "relations": [{"URI": "http://dbpedia.org/ontology/starring", "surface form": "starring"}]}, {"id": "315", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Who is the son of Sonny and Cher?", "keywords": "son, Sonny and Cher"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { ?uri dbo:parent res:Cher ; dbo:parent res:Sonny_Bono }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chaz_Bono"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Cher", "surface form": "Sonny and Cher"}, {"URI": "http://dbpedia.org/resource/Sonny_Bono", "surface form": "Sonny and Cher"}], "relations": [{"URI": "http://dbpedia.org/ontology/child", "surface form": "son"}]}, {"id": "316", "answertype": "number", "aggregation": true, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "How many ethnic groups live in Slovenia?", "keywords": "how many, ethnic groups, Slovenia"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT (COUNT(DISTINCT ?uri) AS ?c) WHERE { res:Slovenia dbo:ethnicGroup ?uri }"}, "answers": [{"head": {"vars": ["c"]}, "results": {"bindings": [{"c": {"type": "literal", "value": "4"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Slovenia", "surface form": "Slovenia"}], "relations": [{"URI": "http://dbpedia.org/ontology/ethnicGroup", "surface form": "ethnic"}, {"URI": "http://dbpedia.org/ontology/populationTotal", "surface form": "live"}]}, {"id": "317", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "What is the capital of Cameroon?", "keywords": "capital, Cameroon"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Cameroon dbo:capital ?uri }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Yaound\u00e9"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Cameroon", "surface form": "Cameroon"}], "relations": [{"URI": "http://dbpedia.org/ontology/capital", "surface form": "capital"}]}, {"id": "318", "answertype": "boolean", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Was Natalie Portman born in the United States?", "keywords": "Natalie Portman, born, United States"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> ASK WHERE { res:Natalie_Portman dbo:birthPlace ?city . ?city dbo:country res:United_States }"}, "answers": [{"head": {}, "results": {}, "boolean": false}], "entities": [{"URI": "http://dbpedia.org/resource/Natalie_Portman", "surface form": "Natalie Portman"}, {"URI": "http://dbpedia.org/resource/United_States", "surface form": "United States"}], "relations": [{"URI": "http://dbpedia.org/ontology/birthPlace", "surface form": "born"}]}, {"id": "319", "answertype": "number", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "How many pages does War and Peace have?", "keywords": "pages, War and Peace"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?n WHERE { res:War_and_Peace dbo:numberOfPages ?n }"}, "answers": [{"head": {"vars": ["c"]}, "results": {"bindings": [{"c": {"type": "literal", "value": "1225"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/War_and_Peace", "surface form": "War and Peace"}], "relations": []}, {"id": "320", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Who is the oldest child of Meryl Streep?", "keywords": "oldest child, Meryl Streep"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Meryl_Streep dbo:child ?uri . ?uri dbo:birthDate ?d } ORDER BY ASC(?d) OFFSET 0 LIMIT 1"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Henry_Wolfe_Gummer"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Meryl_Streep", "surface form": "Meryl Streep"}], "relations": [{"URI": "http://dbpedia.org/ontology/child", "surface form": "child"}]}, {"id": "321", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Which television shows were created by Walt Disney?", "keywords": "television show, create, Walt Disney"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:TelevisionShow ; dbo:creator res:Walt_Disney }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mickey_Mouse_Clubhouse"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alice_Comedies"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/List_of_Jiminy_Cricket_educational_serials"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Walt_Disney_anthology_television_series"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Mickey_Mouse_Club"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Walt_Disney", "surface form": "Walt Disney"}], "relations": [{"URI": "http://dbpedia.org/ontology/televisionSeries", "surface form": "television shows"}, {"URI": "http://dbpedia.org/ontology/creator", "surface form": "created"}]}, {"id": "322", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "What does IYCM stand for?", "keywords": "IYCM, stand for"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { ?uri dbo:abbreviation \"IYCM\" }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Youth_Climate_Movement"}}]}}], "entities": [], "relations": [{"URI": "http://dbpedia.org/ontology/position", "surface form": "stand"}]}, {"id": "323", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Which types of grapes grow in Oregon?", "keywords": "grape types, grow, Oregon"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Oregon_wine dbo:growingGrape ?uri }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tempranillo"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pinotage"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Riesling"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vermentino"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Muller_Thurgau"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ehrenfelser"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chasselas"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dolcetto"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Frontenac_(grape)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Malbec"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pinot_gris"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Grenache_blanc"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/St_Croix_(grape)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Blaufr\u00e4nkisch"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Verdejo"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Roussanne"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chardonnay"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Huxelrebe"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Early_Muscat"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Durif"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pinot_noir"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pinot_blanc"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Black_Muscat"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Traminette"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nebbiolo"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Baco_noir"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Marechal_Foch"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Coda_di_Volpe"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/La_Crescent_(grape)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Petit_Verdot"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cabernet_Franc"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/St._Laurent_(grape)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Scheurebe"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Teroldego"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Montepulciano_(grape)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Syrah"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Leon_Millot"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chenin_blanc"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sauvignon_vert"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Niagara_(grape)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pinot_Meunier"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/La_Crosse_(grape)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kerner_(grape)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tinta_Amarela"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gruner_Veltliner"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Marquette_(grape)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Caprettone"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Grenache"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lagrein"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Zinfandel"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tinta_Cao"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Marsanne"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cayuga_White"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cabernet_Sauvignon"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Merlot"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Petit_Manseng"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Carm\u00e9n\u00e8re"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mourv\u00e8dre"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Muscat_Canelli"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fiano_(grape)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sauvignon_blanc"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Aligot\u00e9"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Trousseau_(grape)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sangiovese"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/S\u00e9millon"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gamay_noir"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Counoise"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vignoles_(grape)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Touriga_Nacional"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sylvaner"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Muscat_Ottonel"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Melon_de_Bourgogne"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Arneis"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Graciano"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Viognier"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gewurztraminer"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mondeuse_noire"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Auxerrois_Blanc"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Malvasia"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Albari\u00f1o"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tannat"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Barbera"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Oregon", "surface form": "Oregon"}], "relations": [{"URI": "http://dbpedia.org/property/type", "surface form": "types"}, {"URI": "http://dbpedia.org/property/grass", "surface form": "grapes"}, {"URI": "http://dbpedia.org/property/flag", "surface form": "grow"}]}, {"id": "324", "answertype": "boolean", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Was U.S. president Jackson involved in a war?", "keywords": "U.S. president, Jackson, war"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> ASK WHERE { res:Andrew_Jackson dbo:battle ?battle }"}, "answers": [{"head": {}, "results": {}, "boolean": true}], "entities": [{"URI": "http://dbpedia.org/resource/Andrew_Jackson", "surface form": "Jackson"}], "relations": [{"URI": "http://dbpedia.org/ontology/address", "surface form": "involved"}, {"URI": "http://dbpedia.org/ontology/profession", "surface form": "war"}]}, {"id": "325", "answertype": "date", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "When was the Titanic completed?", "keywords": "Titanic, completion date"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?date WHERE { res:RMS_Titanic dbo:completionDate ?date }"}, "answers": [{"head": {"vars": ["date"]}, "results": {"bindings": [{"date": {"type": "literal", "value": "1912-04-02"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Titanic_(1953_film)", "surface form": "Titanic"}], "relations": [{"URI": "http://dbpedia.org/ontology/completionDate", "surface form": "completed"}]}, {"id": "326", "answertype": "boolean", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Did Tesla win a nobel prize in physics?", "keywords": "Tesla, nobel prize, physics"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> ASK WHERE { res:Nikola_Tesla dbo:award res:Nobel_Prize_in_Physics }"}, "answers": [{"head": {}, "results": {}, "boolean": false}], "entities": [{"URI": "http://dbpedia.org/resource/Nikola_Tesla", "surface form": "Tesla"}, {"URI": "http://dbpedia.org/resource/Nobel_Prize_in_Physics", "surface form": "nobel prize"}], "relations": [{"URI": "http://dbpedia.org/ontology/award", "surface form": "win"}, {"URI": "http://dbpedia.org/property/title", "surface form": "nobel prize"}, {"URI": "http://dbpedia.org/ontology/animal", "surface form": "physics"}]}, {"id": "327", "answertype": "number", "aggregation": true, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "How many states are in Mexico?", "keywords": "states, Mexico"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT (COUNT(?uri) AS ?count) WHERE { ?uri dbo:type dbr:States_of_Mexico }"}, "answers": [{"head": {"vars": ["c"]}, "results": {"bindings": [{"c": {"type": "literal", "value": "31"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Mexico", "surface form": "Mexico"}], "relations": []}, {"id": "328", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Which scientist is known for the Manhattan Project and the Nobel Peace Prize?", "keywords": "scientist, known for, Manhattan Project, Nobel Peace Prize"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri dbo:knownFor res:Manhattan_Project ; rdf:type dbo:Scientist ; dbo:knownFor res:Nobel_Peace_Prize }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Joseph_Rotblat"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Manhattan_Project", "surface form": "Manhattan Project"}, {"URI": "http://dbpedia.org/resource/Nobel_Peace_Prize", "surface form": "Nobel Peace Prize"}], "relations": [{"URI": "http://dbpedia.org/ontology/knownFor", "surface form": "known for"}, {"URI": "http://dbpedia.org/ontology/knownFor", "surface form": "known for"}]}, {"id": "329", "answertype": "number", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "How much did the Lego Movie cost?", "keywords": "Lego Movie, cost"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?n WHERE { res:The_Lego_Movie dbo:budget ?n }"}, "answers": [{"head": {"vars": ["c"]}, "results": {"bindings": [{"c": {"type": "literal", "value": "6.0E7"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/The_Lego_Movie", "surface form": "Lego Movie"}], "relations": [{"URI": "http://dbpedia.org/ontology/budget", "surface form": "cost"}]}, {"id": "330", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Who composed the music for Harold and Maude?", "keywords": "Harold and Maude, compose, music"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Harold_and_Maude dbo:musicComposer ?uri }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cat_Stevens"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Harold_and_Maude", "surface form": "Harold and Maude"}], "relations": [{"URI": "http://dbpedia.org/ontology/musicComposer", "surface form": "composed"}, {"URI": "http://dbpedia.org/ontology/musicComposer", "surface form": "music"}]}, {"id": "331", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "List all episodes of the first season of the HBO television series The Sopranos.", "keywords": "HBO, television series, Sopranos, first season, episodes"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { ?uri dbo:series res:The_Sopranos ; dbo:seasonNumber 1 }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Isabella_(The_Sopranos)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Meadowlands_(The_Sopranos)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/I_Dream_of_Jeannie_Cusamano"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Legend_of_Tennessee_Moltisanti"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Boca_(The_Sopranos)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nobody_Knows_Anything"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pax_Soprana"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/A_Hit_Is_a_Hit"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Denial,_Anger,_Acceptance"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/College_(The_Sopranos)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/46_Long"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Sopranos_(episode)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Down_Neck"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/HBO", "surface form": "HBO"}, {"URI": "http://dbpedia.org/resource/The_Sopranos_(episode)", "surface form": "television series The Sopranos"}], "relations": [{"URI": "http://dbpedia.org/ontology/episodeNumber", "surface form": "episodes"}, {"URI": "http://dbpedia.org/ontology/seasonNumber", "surface form": "season"}]}, {"id": "332", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Which city has the least inhabitants?", "keywords": "city, the least inhabitants"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:City ; dbo:populationTotal ?pop } ORDER BY ASC(?pop) OFFSET 0 LIMIT 1"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bakhdida"}}]}}], "entities": [], "relations": [{"URI": "http://dbpedia.org/ontology/city", "surface form": "city"}, {"URI": "http://dbpedia.org/ontology/country", "surface form": "inhabitants"}]}, {"id": "333", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Where is Syngman Rhee buried?", "keywords": "Syngman Rhee, buried"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Syngman_Rhee dbo:restingPlace ?uri }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Seoul_National_Cemetery"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Syngman_Rhee", "surface form": "Syngman Rhee"}], "relations": [{"URI": "http://dbpedia.org/ontology/restingPlace", "surface form": "buried"}]}, {"id": "334", "answertype": "boolean", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Does Neymar play for Real Madrid?", "keywords": "Neymar, play, Real Madrid"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> ASK WHERE { res:Neymar dbo:team <http://dbpedia.org/resource/Real_Madrid_C.F.> }"}, "answers": [{"head": {}, "results": {}, "boolean": false}], "entities": [{"URI": "http://dbpedia.org/resource/Neymar", "surface form": "Neymar"}, {"URI": "http://dbpedia.org/resource/Jorge_Mer\u00e9", "surface form": "Real Madrid"}], "relations": [{"URI": "http://dbpedia.org/ontology/team", "surface form": "play"}]}, {"id": "335", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Who wrote the book The Pillars of the Earth?", "keywords": "wrote, book, The pillars of the Earth"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:The_Pillars_of_the_Earth dbo:author ?uri }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ken_Follett"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/The_Pillars_of_the_Earth", "surface form": "The Pillars of the Earth"}], "relations": [{"URI": "http://dbpedia.org/ontology/author", "surface form": "wrote"}]}, {"id": "336", "answertype": "boolean", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Do Prince Harry and Prince William have the same parents?", "keywords": "Prince Harry, Prince William, same, parents"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> ASK WHERE { <http://dbpedia.org/resource/Prince_William,_Duke_of_Cambridge> dbo:parent ?x . res:Prince_Harry dbo:parent ?x }"}, "answers": [{"head": {}, "results": {}, "boolean": true}], "entities": [{"URI": "http://dbpedia.org/resource/Prince_Harry", "surface form": "Prince Harry"}, {"URI": "http://dbpedia.org/resource/Prince_William,_Duke_of_Cambridge", "surface form": "Prince William"}], "relations": [{"URI": "http://dbpedia.org/ontology/parent", "surface form": "parents"}]}, {"id": "337", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Who was the doctoral supervisor of Albert Einstein?", "keywords": "doctoral supervisor, Albert Einstein"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Albert_Einstein dbo:doctoralAdvisor ?uri }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alfred_Kleiner"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Albert_Einstein", "surface form": "Albert Einstein"}], "relations": [{"URI": "http://dbpedia.org/ontology/doctoralAdvisor", "surface form": "doctoral supervisor"}]}, {"id": "338", "answertype": "boolean", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Does Breaking Bad have more episodes than Game of Thrones?", "keywords": "Breaking Bad, episodes, more than, Game of Thrones"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> ASK WHERE { res:Breaking_Bad dbo:numberOfEpisodes ?x . res:Game_of_Thrones dbo:numberOfEpisodes ?y FILTER ( ?y > ?x ) }"}, "answers": [{"head": {}, "results": {}, "boolean": false}], "entities": [{"URI": "http://dbpedia.org/resource/Breaking_Bad", "surface form": "Breaking Bad"}, {"URI": "http://dbpedia.org/resource/Game_of_Thrones", "surface form": "Game of Thrones"}], "relations": [{"URI": "http://dbpedia.org/ontology/episodeNumber", "surface form": "episodes"}]}, {"id": "339", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Who was Vincent van Gogh inspired by?", "keywords": "person, inspiring, Vincent van Gogh"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { ?uri dbo:influenced res:Vincent_van_Gogh }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Anton_Mauve"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Vincent_van_Gogh", "surface form": "Vincent van Gogh"}], "relations": [{"URI": "http://dbpedia.org/ontology/influenced", "surface form": "inspired"}]}, {"id": "340", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Which building after the Burj Khalifa has the most floors?", "keywords": "building, after, Burj Khalifa, most floors"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { res:Burj_Khalifa dbo:floorCount ?burj . ?uri rdf:type dbo:Building ; dbo:floorCount ?proj FILTER ( ?proj < ?burj ) } ORDER BY DESC(?proj) LIMIT 1"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/102_Incheon_Tower"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Burj_Khalifa", "surface form": "Burj Khalifa"}], "relations": [{"URI": "http://dbpedia.org/ontology/building", "surface form": "building"}, {"URI": "http://dbpedia.org/ontology/floorCount", "surface form": "floors"}]}, {"id": "341", "answertype": "string", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "What was the final result of the War of the Roses?", "keywords": "result, War of Roses"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT DISTINCT ?result WHERE { ?uri dbo:isPartOfMilitaryConflict dbr:Wars_of_the_Roses ; dbo:result ?result ; dbo:date ?date } ORDER BY DESC(?date) OFFSET 0 LIMIT 1"}, "answers": [{"head": {"vars": ["string"]}, "results": {"bindings": [{"string": {"type": "literal", "value": "Decisive Tudor victory"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/The_War_of_the_Roses_(film)", "surface form": "War of the Roses"}], "relations": []}, {"id": "342", "answertype": "number", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "How much did Pulp Fiction cost?", "keywords": "cost, Pulp Fiction"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?n WHERE { res:Pulp_Fiction dbo:budget ?n }"}, "answers": [{"head": {"vars": ["c"]}, "results": {"bindings": [{"c": {"type": "literal", "value": "8.0"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Pulp_Fiction", "surface form": "Pulp Fiction"}], "relations": [{"URI": "http://dbpedia.org/ontology/budget", "surface form": "cost"}]}, {"id": "343", "answertype": "boolean", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Is proinsulin a protein?", "keywords": "proinsulin, protein"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> ASK WHERE { res:Proinsulin rdf:type dbo:Protein }"}, "answers": [{"head": {}, "results": {}, "boolean": true}]}, {"id": "344", "answertype": "boolean", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Do Urdu and Persian have a common root?", "keywords": "Urdu, Persian, common root"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> ASK WHERE { dbr:Urdu dbo:languageFamily ?uri . dbr:Persian_language dbo:languageFamily ?uri }"}, "answers": [{"head": {}, "results": {}, "boolean": true}], "entities": [{"URI": "http://dbpedia.org/resource/Urdu_Wikipedia", "surface form": "Urdu and Persian"}], "relations": [{"URI": "http://dbpedia.org/ontology/parent", "surface form": "common root"}]}, {"id": "345", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Who is starring in Spanish movies produced by Benicio del Toro?", "keywords": "starring, Spanish movies, produced, Benicio del Toro"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?film rdf:type dbo:Film ; dbo:country res:Spain ; dbo:producer res:Benicio_del_Toro ; dbo:starring ?uri . ?uri rdf:type dbo:Person }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Benicio_del_Toro"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Spain", "surface form": "Spanish movies"}, {"URI": "http://dbpedia.org/resource/The_Movies_(film)", "surface form": "Spanish movies"}, {"URI": "http://dbpedia.org/resource/Benicio_del_Toro", "surface form": "Benicio del Toro"}], "relations": [{"URI": "http://dbpedia.org/ontology/starring", "surface form": "starring"}, {"URI": "http://dbpedia.org/ontology/wineProduced", "surface form": "produced"}, {"URI": "http://dbpedia.org/ontology/country", "surface form": ""}]}, {"id": "346", "answertype": "boolean", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Is Lake Baikal bigger than the Great Bear Lake?", "keywords": "Lake Baikal, bigger than, Great Bear Lake"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> ASK WHERE { res:Lake_Baikal dbo:areaTotal ?a1 . res:Great_Bear_Lake dbo:areaTotal ?a2 FILTER ( ?a1 > ?a2 ) }"}, "answers": [{"head": {}, "results": {}, "boolean": true}], "entities": [{"URI": "http://dbpedia.org/resource/Lake_Baikal", "surface form": "\"Lake Baikal"}, {"URI": "http://dbpedia.org/resource/Great_Bear_Lake", "surface form": "\"Great Bear Lake"}], "relations": []}, {"id": "347", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Show me all books in Asimov's Foundation series.", "keywords": "books, Asimov, Foundation series"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { ?uri dbo:series res:Foundation_series }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Originist"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Foundation_and_Earth"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Forward_the_Foundation"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Asimov_(disambiguation)", "surface form": "Asimov"}, {"URI": "http://dbpedia.org/resource/Foundation_series", "surface form": " Foundation series"}], "relations": [{"URI": "http://dbpedia.org/ontology/show", "surface form": "show"}, {"URI": "http://dbpedia.org/property/books", "surface form": "books"}]}, {"id": "348", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Where was Bach born?", "keywords": "birthplace, Bach"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Johann_Sebastian_Bach dbo:birthPlace ?uri }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Eisenach"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Johann_Sebastian_Bach", "surface form": "Bach"}], "relations": [{"URI": "http://dbpedia.org/ontology/birthPlace", "surface form": "born"}]}, {"id": "349", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Which city has the oldest running metro?", "keywords": "city, oldest running metro"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT ?loc WHERE { ?uri dbo:type dbr:Rapid_transit ; dbo:openingYear ?date ; dbo:location ?loc . ?loc rdf:type dbo:City } ORDER BY ASC(?date) LIMIT 1"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Almaty"}}]}}], "entities": [], "relations": [{"URI": "http://dbpedia.org/ontology/city", "surface form": "city"}, {"URI": "http://dbpedia.org/ontology/government", "surface form": "running"}, {"URI": "http://dbpedia.org/ontology/populationMetro", "surface form": "metro"}]}, {"id": "350", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Who designed the Brooklyn Bridge?", "keywords": "Brooklyn Bridge, design"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Brooklyn_Bridge dbo:architect ?uri }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/John_Augustus_Roebling"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Brooklyn_Bridge", "surface form": "Brooklyn Bridge"}], "relations": [{"URI": "http://dbpedia.org/property/designer", "surface form": "designed"}]}, {"id": "351", "answertype": "number", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "How many people live in Eurasia?", "keywords": "people, Eurasia"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?population WHERE { res:Eurasia dbo:populationTotal ?population }"}, "answers": [{"head": {"vars": ["c"]}, "results": {"bindings": [{"c": {"type": "literal", "value": "5041175000"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Eurasia", "surface form": "Eurasia"}], "relations": [{"URI": "http://dbpedia.org/ontology/populationTotal", "surface form": "live"}]}, {"id": "352", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Who is the host of the BBC Wildlife Specials?", "keywords": "host, BBC Wildlife Specials"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:BBC_Wildlife_Specials dbo:presenter ?uri }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/David_Attenborough"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/BBC", "surface form": "BBC"}, {"URI": "http://dbpedia.org/resource/BBC_Wildlife_Specials", "surface form": "Wildlife Specials"}], "relations": [{"URI": "http://dbpedia.org/ontology/presenter", "surface form": "host"}]}, {"id": "353", "answertype": "number", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "What is the total population of Melbourne, Florida?", "keywords": "total population, Melbourne Florida"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> SELECT ?uri WHERE { <http://dbpedia.org/resource/Melbourne,_Florida> dbo:populationTotal ?uri }"}, "answers": [{"head": {"vars": ["c"]}, "results": {"bindings": [{"c": {"type": "literal", "value": "76068"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Melbourne,_Florida", "surface form": "Melbourne, Florida"}], "relations": [{"URI": "http://dbpedia.org/ontology/populationTotal", "surface form": "total population"}]}, {"id": "354", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "What country is Mount Everest in?", "keywords": "country, Mount Everest"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { res:Mount_Everest dbo:locatedInArea ?uri . ?uri rdf:type dbo:Country }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/China"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nepal"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Mount_Everest", "surface form": "Mount Everest"}], "relations": [{"URI": "http://dbpedia.org/ontology/country", "surface form": "country"}]}, {"id": "355", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "To which artistic movement did the painter of The Three Dancers belong?", "keywords": "artistic movement, painter, The Three Dancers"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:The_Three_Dancers dbo:author ?person . ?person dbo:movement ?uri }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cubism"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Surrealism"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/The_Three_Dancers", "surface form": "The Three Dancers"}], "relations": [{"URI": "http://dbpedia.org/ontology/movement", "surface form": "artistic movement"}, {"URI": "http://dbpedia.org/ontology/painter", "surface form": "painter"}, {"URI": "http://dbpedia.org/ontology/date", "surface form": "belong"}]}, {"id": "356", "answertype": "date", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "When did Operation Overlord commence?", "keywords": "when, Operation Overlord, commence"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?d WHERE { res:Operation_Overlord dbo:date ?d }"}, "answers": [{"head": {"vars": ["date"]}, "results": {"bindings": [{"date": {"type": "literal", "value": "1944-08-30"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Operation_Overlord", "surface form": "Operation Overlord commence"}], "relations": [{"URI": "http://dbpedia.org/ontology/date", "surface form": "when"}]}, {"id": "357", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "What is the bridge with the longest span?", "keywords": "bridge, longest span"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Bridge ; dbo:mainspan ?s } ORDER BY DESC(?s) OFFSET 0 LIMIT 1"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Overseas_Highway"}}]}}], "entities": [], "relations": [{"URI": "http://dbpedia.org/ontology/discipline", "surface form": "bridge"}, {"URI": "http://dbpedia.org/ontology/mainspan", "surface form": "span"}]}, {"id": "358", "answertype": "boolean", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Is there a video game called Battle Chess?", "keywords": "video game, Battle Chess"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> ASK WHERE { ?uri rdf:type dbo:VideoGame ; rdfs:label \"Battle Chess\"@en }"}, "answers": [{"head": {}, "results": {}, "boolean": true}], "entities": [{"URI": "http://dbpedia.org/resource/Battle_Chess", "surface form": "Battle Chess"}], "relations": [{"URI": "http://dbpedia.org/property/release", "surface form": "video game"}, {"URI": "http://dbpedia.org/ontology/alias", "surface form": "called"}]}, {"id": "359", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Who was buried in the Great Pyramid of Giza?", "keywords": "buried, Great Pyramid of Giza"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?uri WHERE { ?uri dbo:restingPlace dbr:Great_Pyramid_of_Giza }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hetepheres_II"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hetepheres_I"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Great_Pyramid_of_Giza", "surface form": "Great Pyramid of Giza"}], "relations": [{"URI": "http://dbpedia.org/ontology/weight", "surface form": "buried"}]}, {"id": "360", "answertype": "boolean", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Does the Ford Motor Company have a manufacturing plant in Malaysia?", "keywords": "Ford Motor Company, manufacturing plant, Malaysia"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> ASK WHERE { ?uri dbo:assembly dbr:Malaysia ; dbo:manufacturer dbr:Ford_Motor_Company }"}, "answers": [{"head": {}, "results": {}, "boolean": true}], "entities": [{"URI": "http://dbpedia.org/resource/Ford_Motor_Company", "surface form": "Ford Motor Company"}, {"URI": "http://dbpedia.org/resource/Malaysia", "surface form": "Malaysia"}], "relations": [{"URI": "http://dbpedia.org/property/industry", "surface form": "manufacturing plant"}]}, {"id": "361", "answertype": "boolean", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Did Socrates influence Aristotle?", "keywords": "Socrates, influence, Aristotle"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> ASK WHERE { res:Aristotle dbo:influencedBy res:Socrates }"}, "answers": [{"head": {}, "results": {}, "boolean": true}], "entities": [{"URI": "http://dbpedia.org/resource/Socrates", "surface form": "Socrates"}, {"URI": "http://dbpedia.org/resource/Aristotle", "surface form": "Aristotle"}], "relations": [{"URI": "http://dbpedia.org/ontology/influencedBy", "surface form": "influence"}]}, {"id": "362", "answertype": "number", "aggregation": true, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "How many children did Benjamin Franklin have?", "keywords": "Benjamin Franklin, child"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT (COUNT(DISTINCT ?uri) AS ?c) WHERE { res:Benjamin_Franklin dbo:child ?uri }"}, "answers": [{"head": {"vars": ["c"]}, "results": {"bindings": [{"c": {"type": "literal", "value": "3"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Benjamin_Franklin", "surface form": "Benjamin Franklin"}], "relations": [{"URI": "http://dbpedia.org/property/children", "surface form": "children"}]}, {"id": "363", "answertype": "number", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "How tall is Michael Jordan?", "keywords": "tall, Michael Jordan"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?num WHERE { res:Michael_Jordan dbo:height ?num }"}, "answers": [{"head": {"vars": ["c"]}, "results": {"bindings": [{"c": {"type": "literal", "value": "1.9812"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Michael_Jordan", "surface form": "Michael Jordan"}], "relations": [{"URI": "http://dbpedia.org/ontology/height", "surface form": "tall"}]}, {"id": "364", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "In which UK city are the headquarters of the MI6?", "keywords": "MI6, headquarters, city, UK"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { res:Secret_Intelligence_Service dbo:headquarter ?uri . ?uri dbo:country res:United_Kingdom }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/London"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/United_Kingdom", "surface form": "UK"}, {"URI": "http://dbpedia.org/resource/Secret_Intelligence_Service", "surface form": "MI6"}], "relations": [{"URI": "http://dbpedia.org/ontology/city", "surface form": "city"}, {"URI": "http://dbpedia.org/ontology/headquarter", "surface form": "headquarters"}]}, {"id": "365", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Who created Family Guy?", "keywords": "create, Family Guy"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Family_Guy dbo:creator ?uri }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Seth_MacFarlane"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Family_Guy", "surface form": "Family Guy"}], "relations": [{"URI": "http://dbpedia.org/ontology/creator", "surface form": "created"}]}, {"id": "366", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "In which city does the Chile Route 68 end?", "keywords": "city, Chile Route 68, ends"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Chile_Route_68 dbo:routeEnd ?uri }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Valpara\u00edso"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Chile_Route_68", "surface form": "Chile Route 68 end"}], "relations": [{"URI": "http://dbpedia.org/ontology/city", "surface form": "city"}]}, {"id": "367", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Give me the grandchildren of Elvis Presley.", "keywords": "Elvis Presley, grandchildren"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Elvis_Presley dbo:child ?child . ?child dbo:child ?uri }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Riley_Keough"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Elvis_Presley", "surface form": "Elvis Presley"}], "relations": [{"URI": "http://dbpedia.org/ontology/child", "surface form": "grandchildren"}]}, {"id": "368", "answertype": "date", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "When did the Ming dynasty dissolve?", "keywords": "dissolve, Ming dynasty"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?date WHERE { res:Ming_dynasty dbo:dissolutionDate ?date }"}, "answers": [{"head": {"vars": ["date"]}, "results": {"bindings": [{"date": {"type": "literal", "value": "1644-04-25"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Ming_dynasty", "surface form": "Ming dynasty dissolve"}], "relations": [{"URI": "http://dbpedia.org/ontology/date", "surface form": "when"}]}, {"id": "369", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "In which military conflicts did Lawrence of Arabia participate?", "keywords": "Lawrence of Arabia, military conflict"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:T._E._Lawrence dbo:battle ?uri }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Battle_of_Aqaba"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/World_War_I"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Capture_of_Damascus"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Siege_of_Medina"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Arab_Revolt"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Battle_of_Megiddo_(1918)"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/T._E._Lawrence", "surface form": "Lawrence of Arabia"}], "relations": [{"URI": "http://dbpedia.org/ontology/militaryBranch", "surface form": "military conflicts"}, {"URI": "http://dbpedia.org/ontology/participant", "surface form": "participate"}]}, {"id": "370", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "What is the timezone in San Pedro de Atacama?", "keywords": "timezone, San Pedro de Atacama"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:San_Pedro_de_Atacama dbo:timeZone ?uri }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Time_in_Chile"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/San_Pedro_de_Atacama", "surface form": "San Pedro de Atacama"}], "relations": [{"URI": "http://dbpedia.org/ontology/timeZone", "surface form": "timezone"}]}, {"id": "371", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Give me all books by William Goldman with more than 300 pages.", "keywords": "book, William Goldman, pages, more than 300"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Book ; dbo:author res:William_Goldman ; dbo:numberOfPages ?x FILTER ( ?x > 300 ) }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Marathon_Man_(novel)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Which_Lie_Did_I_Tell%3F"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hype_and_Glory"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Boys_and_Girls_Together"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tinsel_(novel)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Control_(novel)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Color_of_Light"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Princess_Bride"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Wait_Till_Next_Year"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Brothers_(Goldman_novel)"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/William_Goldman", "surface form": "William Goldman"}, {"URI": "http://dbpedia.org/resource/300", "surface form": "300"}], "relations": [{"URI": "http://dbpedia.org/ontology/volume", "surface form": "books"}]}, {"id": "372", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "What did Bruce Carver die from?", "keywords": "Bruce Carver, die"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Bruce_Carver dbo:deathCause ?uri }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cancer"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Bruce_Carver", "surface form": "Bruce Carver"}], "relations": [{"URI": "http://dbpedia.org/ontology/deathCause", "surface form": "die"}]}, {"id": "373", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Which subsidiary of Lufthansa serves both Dortmund and Berlin Tegel?", "keywords": "subsidiary, Lufthansa, serve, Dortmund, Berlin Tegel"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Lufthansa dbo:subsidiary ?uri . ?uri dbo:targetAirport res:Dortmund_Airport ; dbo:targetAirport res:Berlin_Tegel_Airport }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Germanwings"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Lufthansa", "surface form": "Lufthansa"}, {"URI": "http://dbpedia.org/resource/Dortmund_Airport", "surface form": "Dortmund"}, {"URI": "http://dbpedia.org/resource/Berlin_Tegel_Airport", "surface form": "Berlin Tegel"}], "relations": [{"URI": "http://dbpedia.org/ontology/subsidiary", "surface form": "subsidiary"}, {"URI": "http://dbpedia.org/ontology/chain", "surface form": "serves"}]}, {"id": "374", "answertype": "boolean", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Does Abraham Lincoln's death place have a website?", "keywords": "Abraham Lincoln, death place, website"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> ASK WHERE { res:Abraham_Lincoln dbo:deathPlace ?p . ?p dbo:website ?w }"}, "answers": [{"head": {}, "results": {}, "boolean": false}], "entities": [{"URI": "http://dbpedia.org/resource/Abraham_Lincoln", "surface form": "Abraham Lincoln"}, {"URI": "http://dbpedia.org/resource/This_Place_Is_Death", "surface form": " death place"}, {"URI": "http://dbpedia.org/resource/Website", "surface form": "website"}], "relations": []}, {"id": "375", "answertype": "boolean", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Did Elvis Presley have children?", "keywords": "Elvis Presley, children"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> ASK WHERE { res:Elvis_Presley dbo:child ?uri }"}, "answers": [{"head": {}, "results": {}, "boolean": true}], "entities": [{"URI": "http://dbpedia.org/resource/Elvis_Presley", "surface form": "Elvis Presley"}], "relations": [{"URI": "http://dbpedia.org/ontology/child", "surface form": "children"}]}, {"id": "376", "answertype": "boolean", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Is Michelle Obama the wife of Barack Obama?", "keywords": "Michelle Obama, wife, Barack Obama"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> ASK WHERE { res:Barack_Obama dbo:spouse res:Michelle_Obama }"}, "answers": [{"head": {}, "results": {}, "boolean": true}], "entities": [{"URI": "http://dbpedia.org/resource/Michelle_Obama", "surface form": "Michelle Obama"}, {"URI": "http://dbpedia.org/resource/Barack_Obama", "surface form": "Barack Obama"}], "relations": [{"URI": "http://dbpedia.org/ontology/spouse", "surface form": "wife"}]}, {"id": "377", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "In which city does Sylvester Stallone live?", "keywords": "city, live, Sylvester Stallone"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:City . res:Sylvester_Stallone dbo:residence ?uri }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Beverly_Hills,_California"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Sylvester_Stallone", "surface form": "Sylvester Stallone"}], "relations": [{"URI": "http://dbpedia.org/ontology/city", "surface form": "city"}, {"URI": "http://dbpedia.org/ontology/residence", "surface form": "live"}]}, {"id": "378", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Which books by Kerouac were published by Viking Press?", "keywords": "book, Kerouac, publish, Viking Press"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Book ; dbo:publisher res:Viking_Press ; dbo:author res:Jack_Kerouac }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/On_the_Road"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Door_Wide_Open"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Atop_an_Underwood:_Early_Stories_and_Other_Writings"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Jack_Kerouac", "surface form": "Kerouac"}, {"URI": "http://dbpedia.org/resource/Viking_Press", "surface form": "Viking Press"}], "relations": [{"URI": "http://dbpedia.org/ontology/title", "surface form": "books"}, {"URI": "http://dbpedia.org/ontology/publisher", "surface form": "published"}]}, {"id": "379", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Who wrote the song Hotel California?", "keywords": "write, song, Hotel California"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Hotel_California dbo:writer ?uri }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Don_Felder"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Glenn_Frey"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Don_Henley"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Hotel_California", "surface form": "song Hotel California"}], "relations": [{"URI": "http://dbpedia.org/ontology/writer", "surface form": "wrote"}]}, {"id": "380", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "What is the capital of Canada?", "keywords": "capital, Canada"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Canada dbo:capital ?uri }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ottawa"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Canada", "surface form": "Canada"}], "relations": [{"URI": "http://dbpedia.org/ontology/capital", "surface form": "capital"}]}, {"id": "381", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Who is the mayor of Tel Aviv?", "keywords": "Tel Aviv, mayor"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Tel_Aviv dbo:leaderName ?uri }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ron_Huldai"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Tel_Aviv", "surface form": "Tel Aviv"}], "relations": [{"URI": "http://dbpedia.org/ontology/mayor", "surface form": "mayor"}]}, {"id": "382", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "What form of government does Russia have?", "keywords": "form of government, Russia"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Russia dbo:governmentType ?uri }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Federalism"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Russia", "surface form": "Russia"}], "relations": [{"URI": "http://dbpedia.org/ontology/type", "surface form": "form"}, {"URI": "http://dbpedia.org/ontology/governmentType", "surface form": "government"}]}, {"id": "383", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Show me the book that Muhammad Ali wrote.", "keywords": "book, wrote, Muhammad Ali"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Book ; dbo:author res:Muhammad_Ali }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Greatest:_My_Own_Story"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Soul_of_a_Butterfly"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Muhammad_Ali", "surface form": "Muhammad Ali"}], "relations": [{"URI": "http://dbpedia.org/ontology/author", "surface form": "wrote"}]}, {"id": "384", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Who was the first to climb Mount Everest?", "keywords": "first, climb, mount Everest"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Mount_Everest dbo:firstAscentPerson ?uri }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tenzing_Norgay"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Edmund_Hillary"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Krzysztof_Wielicki"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Leszek_Cichy"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Mount_Everest", "surface form": "Mount Everest"}], "relations": [{"URI": "http://dbpedia.org/ontology/board", "surface form": "climb"}]}, {"id": "385", "answertype": "number", "aggregation": true, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "How many languages are spoken in Colombia?", "keywords": "languages, Colombia"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT (COUNT(DISTINCT ?uri) AS ?c) WHERE { ?uri rdf:type dbo:Language . res:Colombia dbo:language ?uri }"}, "answers": [{"head": {"vars": ["c"]}, "results": {"bindings": [{"c": {"type": "literal", "value": "2"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Colombia", "surface form": "Colombia"}], "relations": [{"URI": "http://dbpedia.org/ontology/language", "surface form": "languages"}, {"URI": "http://dbpedia.org/ontology/spokenIn", "surface form": "spoken"}]}, {"id": "386", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "What is the currency of the Czech Republic?", "keywords": "Czech republic, currency"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Czech_Republic dbo:currency ?uri }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Czech_koruna"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Czech_Republic", "surface form": "Czech Republic"}, {"URI": "http://dbpedia.org/resource/Czech_Republic", "surface form": "Czech Republic"}], "relations": [{"URI": "http://dbpedia.org/ontology/currency", "surface form": "currency"}, {"URI": "http://dbpedia.org/ontology/country", "surface form": ""}]}, {"id": "387", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Where in France is sparkling wine produced?", "keywords": "produced, France, sparkling wine"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { ?uri dbo:wineProduced res:Sparkling_wine ; dbo:location res:France }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Loire_Valley_(wine)"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Sparkling_wines", "surface form": "sparkling wine"}, {"URI": "http://dbpedia.org/resource/France", "surface form": "France"}], "relations": [{"URI": "http://dbpedia.org/ontology/parkingInformation", "surface form": "sparkling"}, {"URI": "http://dbpedia.org/ontology/wineRegion", "surface form": "wine produced"}]}, {"id": "388", "answertype": "date", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "When did Boris Becker end his active career?", "keywords": "Boris Becker, end career"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?d WHERE { res:Boris_Becker dbo:activeYearsEndDate ?d }"}, "answers": [{"head": {"vars": ["date"]}, "results": {"bindings": [{"date": {"type": "literal", "value": "1999-06-25"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Boris_Becker", "surface form": "Boris Becker"}], "relations": [{"URI": "http://dbpedia.org/ontology/result", "surface form": "end"}, {"URI": "http://dbpedia.org/ontology/careerPrizeMoney", "surface form": "active career"}]}, {"id": "389", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Which movies starring Mickey Rourke were directed by Guy Ritchie?", "keywords": "movies, starring, Mickey Rourke, directed, Guy Ritchie"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Film ; dbo:starring res:Mickey_Rourke ; dbo:director res:Guy_Ritchie }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Hire"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Mickey_Rourke", "surface form": "Mickey Rourke"}, {"URI": "http://dbpedia.org/resource/Guy_Ritchie", "surface form": "Guy Ritchie"}], "relations": [{"URI": "http://dbpedia.org/ontology/film", "surface form": "movies"}, {"URI": "http://dbpedia.org/ontology/starring", "surface form": "starring"}, {"URI": "http://dbpedia.org/ontology/president", "surface form": "directed"}]}, {"id": "390", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "In which films did Julia Roberts as well as Richard Gere play?", "keywords": "film, play, Julia Roberts, Richard Gere"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Film ; dbo:starring res:Julia_Roberts ; dbo:starring res:Richard_Gere }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Runaway_Bride_(film)"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pretty_Woman"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Julia_Roberts", "surface form": "Julia Roberts"}, {"URI": "http://dbpedia.org/resource/Richard_Gere", "surface form": "Richard Gere"}], "relations": [{"URI": "http://dbpedia.org/ontology/numberOfFilms", "surface form": "films"}, {"URI": "http://dbpedia.org/ontology/starring", "surface form": "play"}]}, {"id": "391", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Show me Hemingway's autobiography.", "keywords": "autobiography, Hemingway"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { ?uri dbo:author res:Ernest_Hemingway ; dbo:literaryGenre res:Autobiography }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/A_Moveable_Feast"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Hemingway_House", "surface form": "Hemingway"}, {"URI": "http://dbpedia.org/resource/Autobiography", "surface form": " autobiography"}], "relations": [{"URI": "http://dbpedia.org/ontology/show", "surface form": "show"}]}, {"id": "392", "answertype": "number", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "How tall is Amazon Eve?", "keywords": "Amazon Eve, tall"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?height WHERE { res:Amazon_Eve dbo:height ?height }"}, "answers": [{"head": {"vars": ["c"]}, "results": {"bindings": [{"c": {"type": "literal", "value": "2.02"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Amazon_Eve", "surface form": "Amazon Eve"}], "relations": [{"URI": "http://dbpedia.org/ontology/height", "surface form": "tall"}]}, {"id": "393", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "What are the five boroughs of New York?", "keywords": "five boroughs, New York"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?uri dbo:governmentType <http://dbpedia.org/resource/Borough_(New_York_City)> }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Queens"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Staten_Island"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Manhattan"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Bronx"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Brooklyn"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/New_York", "surface form": "New York"}], "relations": [{"URI": "http://dbpedia.org/ontology/municipality", "surface form": "boroughs"}]}, {"id": "394", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Give me all Canadian Grunge record labels.", "keywords": "record label, Canadian, Grunge"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:RecordLabel ; dbo:genre res:Grunge ; dbo:country res:Canada }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Murderecords"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Canada", "surface form": "Canadian Grunge record labels"}, {"URI": "http://dbpedia.org/resource/Canadian_independent_record_labels", "surface form": "Canadian Grunge record labels"}], "relations": [{"URI": "http://dbpedia.org/ontology/country", "surface form": ""}]}, {"id": "395", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "In which country does the Ganges start?", "keywords": "Ganges, start, country"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Ganges dbo:sourceCountry ?uri }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/India"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Ganges", "surface form": "Ganges"}], "relations": [{"URI": "http://dbpedia.org/ontology/country", "surface form": "country"}, {"URI": "http://dbpedia.org/ontology/source", "surface form": "start"}]}, {"id": "396", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Who is the founder of Penguin Books?", "keywords": "founder, Penguin Books"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { res:Penguin_Books dbo:founder ?uri }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Allen_Lane"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Penguin_Books", "surface form": "Penguin Books"}], "relations": [{"URI": "http://dbpedia.org/ontology/founder", "surface form": "founder"}]}, {"id": "397", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Who wrote the Game of Thrones theme?", "keywords": "writer, Game of Thrones"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Game_of_Thrones dbo:composer ?uri }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ramin_Djawadi"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Game_of_Thrones", "surface form": "Game of Thrones"}], "relations": [{"URI": "http://dbpedia.org/ontology/composer", "surface form": "wrote"}]}, {"id": "398", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Who is the president of Eritrea?", "keywords": "president, Eritrea"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Eritrea dbo:leader ?uri ; dbo:leaderTitle \"President\"@en }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Isaias_Afwerki"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Eritrea", "surface form": "Eritrea"}], "relations": [{"URI": "http://dbpedia.org/ontology/president", "surface form": "president"}]}, {"id": "399", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "In which city did John F. Kennedy die?", "keywords": "city, John F. Kennedy, die"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { res:John_F._Kennedy dbo:deathPlace ?uri . ?uri rdf:type dbo:City }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dallas"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/John_F._Kennedy", "surface form": "John F. Kennedy"}], "relations": [{"URI": "http://dbpedia.org/ontology/deathPlace", "surface form": "die"}]}, {"id": "400", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "What is the highest mountain in Australia?", "keywords": "Australia, highest mountain"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Mountain ; dbo:locatedInArea res:Australia ; dbo:elevation ?elevation } ORDER BY DESC(?elevation) LIMIT 1"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mawson_Peak"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Australia", "surface form": "Australia"}], "relations": [{"URI": "http://dbpedia.org/property/elevation", "surface form": "highest mountain"}]}, {"id": "401", "answertype": "string", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Who writes the Farmers' Almanac?", "keywords": "writes, Farmers' Almanac"}], "query": {"sparql": "PREFIX dbp: <http://dbpedia.org/property/> SELECT ?uri WHERE { <http://dbpedia.org/resource/Farmers'_Almanac> dbp:editor ?uri }"}, "answers": [{"head": {"vars": ["string"]}, "results": {"bindings": [{"string": {"type": "literal", "value": "Sandi Duncan"}}, {"string": {"type": "literal", "value": "Peter Geiger"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Farmers_Creek_Township,_Jackson_County,_Iowa", "surface form": "Farmers"}, {"URI": "http://dbpedia.org/resource/Project_Almanac", "surface form": " Almanac"}], "relations": [{"URI": "http://dbpedia.org/property/writer", "surface form": "writes"}]}, {"id": "402", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Give me the currency of China.", "keywords": "currency, China"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:China dbo:currency ?uri }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Renminbi"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/China", "surface form": "China"}], "relations": [{"URI": "http://dbpedia.org/ontology/currency", "surface form": "currency"}]}, {"id": "403", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Give me all Swedish oceanographers.", "keywords": "Swedish, oceanographer"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { ?uri dbo:field res:Oceanography ; dbo:birthPlace res:Sweden }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vagn_Walfrid_Ekman"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Sweden", "surface form": "Swedish oceanographers"}, {"URI": "http://dbpedia.org/resource/Swedish", "surface form": "Swedish oceanographers"}], "relations": [{"URI": "http://dbpedia.org/ontology/country", "surface form": ""}, {"URI": "http://dbpedia.org/ontology/country", "surface form": ""}]}, {"id": "404", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "In which city are the headquarters of the United Nations?", "keywords": "city, headquarters of the United Nations"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { res:Headquarters_of_the_United_Nations dbo:location ?uri . ?uri rdf:type dbo:City }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/New_York_City"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Headquarters_of_the_United_Nations", "surface form": "headquarters of the United Nations"}], "relations": [{"URI": "http://dbpedia.org/ontology/city", "surface form": "city"}, {"URI": "http://dbpedia.org/ontology/headquarter", "surface form": "headquarters"}]}, {"id": "405", "answertype": "boolean", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Is Rita Wilson the wife of Tom Hanks?", "keywords": "Rita Wilson, wife, Tom Hanks"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> ASK WHERE { res:Tom_Hanks dbo:spouse res:Rita_Wilson }"}, "answers": [{"head": {}, "results": {}, "boolean": true}], "entities": [{"URI": "http://dbpedia.org/resource/Rita_Wilson", "surface form": "Rita Wilson"}, {"URI": "http://dbpedia.org/resource/Tom_Hanks", "surface form": "Tom Hanks"}], "relations": [{"URI": "http://dbpedia.org/property/spouse", "surface form": "wife"}]}, {"id": "406", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "In which countries do people speak Japanese?", "keywords": "which countries, speak, Japanese"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Country ; dbo:language res:Japanese_language }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Japan"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Palau"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Allied_Military_Government_for_Occupied_Territories"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Countries_of_the_United_Kingdom", "surface form": "countries"}, {"URI": "http://dbpedia.org/resource/Japan", "surface form": "Japanese"}, {"URI": "http://dbpedia.org/resource/Japanese", "surface form": "Japanese"}], "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": "407", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Which of Tim Burton's films had the highest budget?", "keywords": "highest budget, film, Tim Burton"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { ?uri dbo:director res:Tim_Burton ; dbo:budget ?b } ORDER BY ?b OFFSET 0 LIMIT 1"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Big_Eyes"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Tim_Burton", "surface form": "Tim Burton"}], "relations": [{"URI": "http://dbpedia.org/ontology/numberOfFilms", "surface form": " films"}, {"URI": "http://dbpedia.org/ontology/elevation", "surface form": "highest budget"}]}, {"id": "408", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Which museum in New York has the most visitors?", "keywords": "museum, New York, the most visitors"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Museum ; dbo:location res:New_York_City ; dbo:numberOfVisitors ?num } ORDER BY DESC(?num) OFFSET 0 LIMIT 1"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Metropolitan_Museum_of_Art"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/New_York_City", "surface form": "New York"}], "relations": [{"URI": "http://dbpedia.org/ontology/museum", "surface form": "museum"}, {"URI": "http://dbpedia.org/ontology/numberOfVisitors", "surface form": "visitors"}]}, {"id": "409", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "What was the first Queen album?", "keywords": "first album, Queen"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Album ; dbo:artist <http://dbpedia.org/resource/Queen_(band)> ; dbo:releaseDate ?d } ORDER BY ASC(?d) OFFSET 0 LIMIT 1"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Queen_(Queen_album)"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Queen_(Queen_album)", "surface form": "Queen album"}], "relations": []}, {"id": "410", "answertype": "string", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "What was the first name of the band Queens of the Stone Age?", "keywords": "first name, Queens of the Stone Age"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?name WHERE { res:Queens_of_the_Stone_Age dbo:alias ?name }"}, "answers": [{"head": {"vars": ["string"]}, "results": {"bindings": [{"string": {"type": "literal", "value": "Gamma Ray (1996\u20131997)"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Queens_of_the_Stone_Age", "surface form": "band Queens of the Stone Age"}], "relations": []}, {"id": "411", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "What was the last movie with Alec Guinness?", "keywords": "Alec Guinness, last, movie"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Film ; dbo:starring res:Alec_Guinness ; dbo:releaseDate ?date } ORDER BY DESC(?date) LIMIT 1"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kafka_(film)"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Alec_Guinness", "surface form": "Alec Guinness"}], "relations": [{"URI": "http://dbpedia.org/ontology/picture", "surface form": "movie"}]}, {"id": "412", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Give me all actors starring in Last Action Hero.", "keywords": "actor, starring, Last Action Hero"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Last_Action_Hero dbo:starring ?uri }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tom_Noonan"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/F._Murray_Abraham"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Arnold_Schwarzenegger"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mercedes_Ruehl"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Charles_Dance"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Art_Carney"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Frank_McRae"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Austin_O'Brien"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Robert_Prosky"}}, {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Anthony_Quinn"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Last_Action_Hero", "surface form": "Last Action Hero"}], "relations": [{"URI": "http://dbpedia.org/ontology/starring", "surface form": "starring"}]}, {"id": "413", "answertype": "resource", "aggregation": false, "onlydbo": true, "hybrid": false, "question": [{"language": "en", "string": "Who discovered Pluto?", "keywords": "discovered, Pluto"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?uri WHERE { dbr:Pluto dbo:discoverer ?uri }"}, "answers": [{"head": {"vars": ["uri"]}, "results": {"bindings": [{"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Clyde_Tombaugh"}}]}}], "entities": [{"URI": "http://dbpedia.org/resource/Pluto", "surface form": "Pluto"}], "relations": [{"URI": "http://dbpedia.org/ontology/discovered", "surface form": "discovered"}]}]} \ No newline at end of file +{ + "dataset": { "id": "qald-9-train" }, + "questions": [ + { + "id": "1", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "List all boardgames by GMT.", + "keywords": "boardgame, GMT" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> SELECT ?uri WHERE { ?uri dbo:publisher res:GMT_Games }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Washington's_War" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Fields_of_Fire_(game)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Commands_&_Colors:_Ancients" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/A_World_At_War" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sword_of_Rome" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Twilight_Struggle" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Paths_of_Glory_(board_game)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chandragupta_(board_game)" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Generic_Mapping_Tools", + "surface form": "GMT" + }, + { + "URI": "http://dbpedia.org/resource/Belarus", + "surface form": "Boardgames by" + } + ], + "relations": [] + }, + { + "id": "2", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Who developed Skype?", + "keywords": "develop, Skype" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> SELECT DISTINCT ?uri WHERE { res:Skype dbo:developer ?uri. }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Microsoft" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Skype_Technologies" + } + } + ] + } + } + ], + "entities": [ + { "URI": "http://dbpedia.org/resource/Skype", "surface form": "Skype" } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/developer", + "surface form": "developed" + } + ] + }, + { + "id": "3", + "answertype": "resource", + "aggregation": false, + "onlydbo": false, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Which people were born in Heraklion?", + "keywords": "people, born, heraklion" + } + ], + "query": { + "sparql": "PREFIX yago: <http://dbpedia.org/class/yago/> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Person ; onto:birthPlace <http://dbpedia.org/resource/Heraklion>. }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kapsetaki_duo" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gianna_Angelopoulos-Daskalaki" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lefteris_Gialousis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Elia_del_Medigo" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Christoforos_Papakaliatis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Meletius_I_Pegas" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ilya_Livykou" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Maria_Spiridaki" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Minas_Pitsos" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Manolis_Stefanoudakis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dimitris_Raptakis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Michael_Katehakis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Fotis_Kafatos" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Odysseas_Elytis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Antonis_Bourselis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Stiliani_Pilatou" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Stavros_Labrakis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Manolis_Moniakis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/El_Greco" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Andreas_Musalus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nikos_Androulakis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Labros_Kefaloukos" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Manolis_Saliakas" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ieroklis_Stoltidis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Yannis_Markopoulos" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Georgios_Sarris" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Manolis_Kefalogiannis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cyril_Lucaris__Hieromartyr_Cyril_Lucaris__1" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Beata_Kitsikis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Leonidas_Kyrkos" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Argyro_Strataki" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Michael_Koukoulakis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Anastasios_Triantafyllou" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Maria_Papapetros" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Francisco_Leontaritis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Janus_Plousiadenos" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cyril_Lucaris" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Notis_Sfakianakis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Albi_Alla" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Manolis_Tzanakakis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nektarios_Tavernarakis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Christos_Saloustros" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nikos_Kazantzakis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Christoforos_Liontakis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Romylos_Kedikoglou" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nadia_Valavani" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lena_Platonos" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nikonas_Spiliotakis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Michalis_Sifakis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Christos_Kozyrakis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Giannis_Domatas" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Giorgos_Grammatikakis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Charalampos_Damianakis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chrysovalantis_Kozoronis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Apelles_of_Heraklion" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rhea_Galanaki" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Konstanty_Korniakt" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Stephanos_Sahlikis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Manolis_Rasoulis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Joseph_Sifakis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Konstantinos_Gouvis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Konstantinos_Volanakis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Zacharias_Kavousakis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lili_Zografou" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/\u0130brahim_Senil" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Iosif_Daskalakis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Spyros_Danellis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Angelos_Akotantos" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Joseph_Solomon_Delmedigo" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Abraham_III_of_Armenia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Georgios_Kalaitzakis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nicholas_Kalliakis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Andreas_Ritzos" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nikos_Marinakis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nikos_Machlas" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sapfo_Notara" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Elli_Alexiou" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Manolis_Roubakis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ntinos_Konstantakis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Manolis_Papadrakakis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Theophanes_the_Cretan" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dimitrios_Kiliaras" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Giannis_Vardinogiannis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nikos_Karelis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Georgios_Samaras" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Michail_Fragoulakis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Greg_Massialas" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rika_Dialina" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Michael_Damaskinos" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Giorgos_Giakoumakis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nikos_Kousidis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Francesco_Barozzi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Aristeidis_Stergiadis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Georges_Panayotis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Andreas_Bouchalakis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Manolis_Rovithis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Peter_Diamandopoulos" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Heraklion", + "surface form": "Heraklion" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/birthPlace", + "surface form": "born" + } + ] + }, + { + "id": "4", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "In which U.S. state is Area 51 located?", + "keywords": "Area 51, located, U.S. state" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> SELECT DISTINCT ?uri WHERE { res:Area_51 dbo:location ?uri . ?uri dbo:country res:United_States. }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nevada" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lincoln_County,_Nevada" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/United_States", + "surface form": "US" + }, + { + "URI": "http://dbpedia.org/resource/Area_51", + "surface form": "Area 51" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/gross", + "surface form": "located" + } + ] + }, + { + "id": "5", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Who is the mayor of New York City?", + "keywords": "New York City, mayor" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:New_York_City dbo:leaderName ?uri }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bill_de_Blasio" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/New_York_City", + "surface form": "New York City" + } + ], + "relations": [ + { "URI": "http://dbpedia.org/ontology/mayor", "surface form": "mayor" } + ] + }, + { + "id": "6", + "answertype": "resource", + "aggregation": true, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Which countries have places with more than two caves?", + "keywords": "country, place, cave, more than two" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?cave rdf:type dbo:Cave ; dbo:location ?uri . ?uri rdf:type dbo:Country } GROUP BY ?uri HAVING ( COUNT(?cave) > 2 )" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/India" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Philippines" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Japan" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Greece" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Spain" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Turkey" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vietnam" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/United_States" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Australia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Italy" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Republic_of_Ireland" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Venezuela" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mexico" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Georgia_(country)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Austria" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Germany" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Slovenia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gibraltar" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Serbia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/France" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Abkhazia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jamaica" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/China" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/South_Africa" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Brazil" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Azerbaijan" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Countries_of_the_United_Kingdom", + "surface form": "countries" + }, + { + "URI": "http://dbpedia.org/resource/Caves_of_Aggtelek_Karst_and_Slovak_Karst", + "surface form": "caves" + } + ], + "relations": [ + { "URI": "http://dbpedia.org/ontology/place", "surface form": "places" } + ] + }, + { + "id": "7", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Where did Abraham Lincoln die?", + "keywords": "Abraham Lincoln, die" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> SELECT DISTINCT ?uri WHERE { res:Abraham_Lincoln dbo:deathPlace ?uri. }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Washington,_D.C." + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Petersen_House_(Washington,_D.C.)" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Abraham_Lincoln", + "surface form": "Abraham Lincoln" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/deathDate", + "surface form": "die" + } + ] + }, + { + "id": "8", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Which airports does Air China serve?", + "keywords": "airports, Air China" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Air_China dbo:targetAirport ?uri }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tianjin_Binhai_International_Airport" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Guangzhou_Baiyun_International_Airport" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chongqing_Jiangbei_International_Airport" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Shanghai_Hongqiao_International_Airport" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Wuhan_Tianhe_International_Airport" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lhasa_Gonggar_Airport" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hohhot_Baita_International_Airport" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hangzhou_Xiaoshan_International_Airport" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Guiyang_Longdongbao_International_Airport" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Air_China", + "surface form": "Air China" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/hubAirport", + "surface form": "airports" + }, + { "URI": "http://dbpedia.org/property/row", "surface form": "serve" } + ] + }, + { + "id": "9", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Give me all actors starring in movies directed by and starring William Shatner.", + "keywords": "actor, starring, movie, direct, starring, William Shatner" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX dbp: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { ?x dbo:director res:William_Shatner ; dbo:starring res:William_Shatner { ?x dbo:starring ?uri } UNION { ?x dbp:starring ?uri } }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tom_Towles" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Brenda_Bakke" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/William_Shatner" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/John_Prosky" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dan_Martin_(actor)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Duane_Whitaker" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chuck_Williams_(actor)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dick_Van_Patten" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/J.T._Colosa" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dan_Gauthier" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Amy_Acker" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rickey_Medlocke" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/William_Shatner", + "surface form": "William Shatner" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/artist", + "surface form": "actors" + }, + { + "URI": "http://dbpedia.org/ontology/starring", + "surface form": "starring" + }, + { "URI": "http://dbpedia.org/ontology/film", "surface form": "movies" }, + { + "URI": "http://dbpedia.org/property/directedby", + "surface form": "directed" + }, + { + "URI": "http://dbpedia.org/ontology/starring", + "surface form": "starring" + } + ] + }, + { + "id": "10", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "What are the official languages of the Philippines?", + "keywords": "Philippines, official language" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Philippines dbo:officialLanguage ?uri }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Philippine_English" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Filipino_language" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Philippines", + "surface form": "Philippines" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/officialLanguage", + "surface form": "official languages" + } + ] + }, + { + "id": "11", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Give me all Danish films.", + "keywords": "film, Denmark" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Film ; dbo:country res:Denmark }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Stolen_Spring_(film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Frode_og_alle_de_andre_r\u00f8dder__Frode_og_alle_de_andre_r\u00f8dder__1" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tr\u00e6llene_/_The_Thralls" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Breaking_the_Waves" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ronal_the_Barbarian" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Valhalla_(film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Little_Brother,_Big_Trouble:_A_Christmas_Adventure" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Forbidden_Team" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Fidibus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Skal_vi_v\u00e6dde_en_million%3F" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Asterix_and_the_Vikings" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Monastery:_Mr._Vig_and_the_Nun" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Open_Hearts" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Red_Meadows" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Inheritance_(2003_film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dancer_in_the_Dark" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Den_farlige_alder" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Str\u00f8mer" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Danmarks_N\u00e6ste_Topmodel_(cycle_4)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Next_Stop_Paradise" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/After_the_Wedding" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Flickering_Lights" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Princess_(2006_film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nation_Estate" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/You_Are_Not_Alone_(film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/H\u00f8jt_paa_en_kvist" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sons_of_the_Soil" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jeg_har_elsket_og_levet" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Constance_(1998_film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bornholms_stemme" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Family_Matters_(film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Burma_VJ" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Khomeini's_Boys" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/De_blaa_drenge" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/ID_A" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Venner_for_altid" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/K\u00f8benhavnere" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/En_slem_Dreng" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ghost_Train_International" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/N\u00f8ddebo_Pr\u00e6steg\u00e5rd" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Familien_Pille_som_Spejdere" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pelle_the_Conqueror" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Babette's_Feast" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/K\u00f8rsel_med_Gr\u00f8nlandske_Hunde" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/A_Summer_Tale" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bang_Bang_Orangutang" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Don_Olsen_kommer_til_byen" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Arn_\u2013_The_Knight_Templar" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Vicar_of_Vejlby_(1931_film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Viking_Watch_of_the_Danish_Seaman" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Songs_from_the_Second_Floor" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Klown_Forever" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bionicle:_Mask_of_Light" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/De_5_i_fedtefadet" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sunes_familie" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ditte,_Child_of_Man" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gasolin'_(film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Credo_(1997_film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Farlig_Ungdom" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Herberg_for_Hjeml\u00f8se" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Susanne_(1950_film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Benny's_Bathtub" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Der_kom_en_dag" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/We_Meet_at_Tove's" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Murk_(film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Den_kul\u00f8rte_Slavehandler" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/What_No_One_Knows" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hotel_Paradis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kira's_Reason:_A_Love_Story" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Busters_verden" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Eye_of_the_Eagle_(film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/De_Udstillede" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nynne" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kong_Buksel\u00f8s" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Eksperimentet" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Perfect_Human" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nordhavets_m\u00e6nd" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Echo_(2007_film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/De_besejrede_Pebersvende" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vildledt_Elskov" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Fr\u00e6kke_Frida_og_de_frygtl\u00f8se_spioner" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Af_banen" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bag_K\u00f8benhavns_kulisser" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Giv_Gud_en_chance_om_s\u00f8ndagen" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Stjerneskud" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/K\u00e6rlighed_og_Mobilisering" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Karlas_kabale" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Samson_&_Sally" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Journey_to_Saturn" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/A_War" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Antichrist_(film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Crying_for_Love" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Supervoksen" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Help!_I'm_a_Fish" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jag_\u00e4r_din_krigare" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Webmaster_(film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Frk._M\u00f8llers_jubil\u00e6um" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/That's_Me,_Too" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Der_var_engang_en_vicev\u00e6rt" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Let's_Get_Lost_(1997_film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/When_the_Light_Comes" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Smiling_in_a_War_Zone" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Reptilicus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/L\u00f8vejagten" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Regel_nr._1" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Sinful_Dwarf" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pusher_(film_series)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Journey_to_the_Seventh_Planet" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Der_rote_Kreis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Something_Better_to_Come" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Torremolinos_73" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Stealing_Rembrandt" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Teddy_Bear_(2012_film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Terribly_Happy" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Melody_of_Murder" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Monas_verden" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Minor_Mishaps" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ai_Weiwei:_The_Fake_Case" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Manslaughter_(2005_film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kun_en_Tigger" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Denmark", + "surface form": "Danish films" + }, + { + "URI": "http://dbpedia.org/resource/List_of_Danish_films", + "surface form": "Danish films" + } + ], + "relations": [ + { "URI": "http://dbpedia.org/ontology/country", "surface form": "" } + ] + }, + { + "id": "12", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Which movies starring Brad Pitt were directed by Guy Ritchie?", + "keywords": "movies, starring, Brad Pitt, directed, Guy Ritchie" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Film ; dbo:starring res:Brad_Pitt ; dbo:director res:Guy_Ritchie }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Snatch_(film)" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Brad_Pitt", + "surface form": "Brad Pitt" + }, + { + "URI": "http://dbpedia.org/resource/Guy_Ritchie", + "surface form": "Guy Ritchie" + } + ], + "relations": [ + { "URI": "http://dbpedia.org/ontology/film", "surface form": "movies" }, + { + "URI": "http://dbpedia.org/ontology/starring", + "surface form": "starring" + }, + { + "URI": "http://dbpedia.org/ontology/president", + "surface form": "directed" + } + ] + }, + { + "id": "13", + "answertype": "number", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Give me the grandchildren of Bruce Lee.", + "keywords": "Bruce Lee, grandchildren" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Bruce_Lee dbo:child ?child . ?child <http://dbpedia.org/property/children> ?uri }" + }, + "answers": [ + { + "head": { "vars": ["c"] }, + "results": { + "bindings": [{ "c": { "type": "literal", "value": "1" } }] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Bruce_Lee", + "surface form": "Bruce Lee" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/child", + "surface form": "grandchildren" + } + ] + }, + { + "id": "14", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Which other weapons did the designer of the Uzi develop?", + "keywords": "Uzi, designer, develop, weapon" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX dbp: <http://dbpedia.org/property/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Weapon ; dbp:designer ?x . res:Uzi dbp:designer ?x FILTER ( ?uri != res:Uzi ) }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Minebea_PM-9" + } + } + ] + } + } + ], + "entities": [ + { "URI": "http://dbpedia.org/resource/Uzi", "surface form": "Uzi" } + ], + "relations": [ + { + "URI": "http://dbpedia.org/property/weapons", + "surface form": "weapons" + }, + { + "URI": "http://dbpedia.org/ontology/designer", + "surface form": "designer" + }, + { + "URI": "http://dbpedia.org/ontology/result", + "surface form": "develop" + } + ] + }, + { + "id": "15", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Who is the owner of Universal Studios?", + "keywords": "Universal Studios, owner" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Universal_Studios dbo:owner ?uri }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Comcast" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Universal_Studios", + "surface form": "Universal Studios" + } + ], + "relations": [ + { "URI": "http://dbpedia.org/property/owner", "surface form": "owner" } + ] + }, + { + "id": "16", + "answertype": "resource", + "aggregation": false, + "onlydbo": false, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Which state of the USA has the highest population density?", + "keywords": "state, USA, population density, highest" + } + ], + "query": { + "sparql": "PREFIX yago: <http://dbpedia.org/class/yago/> PREFIX dbp: <http://dbpedia.org/property/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type yago:WikicatStatesOfTheUnitedStates ; dbp:densityrank ?rank } ORDER BY ASC(?rank) LIMIT 1" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/New_Jersey" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Usa_District,_\u014cita", + "surface form": "USA" + }, + { + "URI": "http://dbpedia.org/resource/Population_density", + "surface form": "highest population density" + } + ], + "relations": [] + }, + { + "id": "17", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Which monarchs were married to a German?", + "keywords": "monarch, married, German" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Monarch ; dbo:spouse ?spouse { ?spouse dbo:birthPlace res:Germany } UNION { ?spouse dbo:birthPlace ?p . ?p dbo:country res:Germany } }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mieszko_I_of_Poland" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Boles\u0142aw_III_Wrymouth" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Germany", + "surface form": "German" + }, + { + "URI": "http://dbpedia.org/resource/German", + "surface form": "German" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/leader", + "surface form": "monarchs" + }, + { + "URI": "http://dbpedia.org/ontology/spouse", + "surface form": "married" + }, + { "URI": "http://dbpedia.org/ontology/country", "surface form": "" }, + { "URI": "http://dbpedia.org/ontology/country", "surface form": "" } + ] + }, + { + "id": "18", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Which organizations were founded in 1950?", + "keywords": "organization, founded, 1950" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbp: <http://dbpedia.org/property/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Organisation { ?uri dbo:formationYear ?date } UNION { ?uri dbo:foundingYear ?date } UNION { ?uri dbp:foundation ?date } UNION { ?uri dbp:formation ?date } FILTER regex(?date, \"^1950\") }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/B.A._Schiff_&_Associates" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Alamo_Heights_High_School" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CBA_(Christian_trade_association)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Centex" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kra\u0161" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sasol" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Boxoffice_International_Pictures" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Thomas_A._Edison_High_School_(Queens)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Arctic_Circle_Restaurants" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Allied_Carpets" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kopp's_Frozen_Custard" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Keller_Group" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Coral_Gables_Senior_High_School" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Economic_Stabilization_Agency" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Liga_Na\u021bional\u0103_(women's_basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Otto-Hahn-Gymnasium" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Netherlands_Organisation_for_Scientific_Research" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hafei" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Texas_A&M_Transportation_Institute" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Florida_Bar" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mark_Hall_Academy" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CDI_Corporation" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Department_of_Fuel,_Shipping_and_Transport" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lord_Byron_School_(Gyumri)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ministry_of_National_Defense_(Portugal)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Abcdin" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Salpointe_Catholic_High_School" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Menorca_B\u00e0squet" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Herschend_Family_Entertainment" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Legal_Sea_Foods" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Royal_Canadian_Numismatic_Association" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/University_of_Texas_Press" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/O'Bannon_High_School" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Copa_del_Rey_de_Voleibol" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/United_Electrical_Industries_Limited" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kagoshima_commercial_course_junior_college" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Stasi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Shenendehowa_Central_School_District" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/St_Ivo_School" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Noerr" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Julius_Berger_(construction_company)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/International_Communication_Association" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Stahl_Brandenburg_Rugby" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Universal_Music_Group_Nashville" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lotte_Chilsung" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Harold's_Chicken_Shack" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Br\u00fctsch" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Heng_Siew_Chiang_Sendirian_Berhad" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Greenhill_School_(Addison,_Texas)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/King's_Schools" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Club_Med" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Southeastern_Freight_Lines" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/BlueCross_BlueShield_of_South_Carolina" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Franklin_County_High_School_(Rocky_Mount,_Virginia)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vanee_Foods" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Decatur_High_School_(Alabama)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/List_of_Australian_Ambassadors_to_Egypt" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Orient_Watch" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/St._Augustine_Girls'_High_School" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/London_Nationals" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Fabbri_Group" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/International_Association_of_Gerontology_and_Geriatrics" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mercy_Career_&_Technical_High_School" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kansenshi_Secondary_School" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/W._R._Myers_High_School" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/ANUIES" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Thurstan_College" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/International_Press_Institute" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Democratic_Agrarian_Party" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/LPGA" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bluebell_Records" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cabasse_(company)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Terry_Fox_Secondary_School" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Washington_School,_Buenos_Aires,_Argentina" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pondok_Pesantren_Walibarokah_Burengan_Banjaran_Kediri" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chemische_Werke_Kluthe" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/KK_Sloboda_U\u017eice" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Central_High_School_(Independence,_Oregon)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bishop_Brossart_High_School" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rogers_&_Cowan" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Planning_Commission_(India)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bersa" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Saddle_Rock_Elementary_School" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Miss_Israel" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_People's_Party_(Indonesia)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/American_College_of_Osteopathic_Family_Physicians" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ministry_of_Education_(Myanmar)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Indiana_University_Press" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bromley_College_of_Further_&_Higher_Education" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Southeast_Unitarian_Universalist_Summer_Institute" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Acorn_Records" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Archbishop_Bergan_High_School" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/UD_Trucks" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Viplavakari_Lanka_Sama_Samaja_Party" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tamasu_(corporation)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Fennada-Filmi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Idsall_School" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Arab_Socialist_Movement" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Elektra_Records" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vetter_Pharma" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pakistan_Bureau_of_Statistics" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/St_Joseph's_Secondary_School,_Tulla" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gorenje" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/DFCU_Financial" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Santa_Barbara_Catholic_School" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gonzaga_College" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Salesian_English_School" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/International_Art_Materials_Trade_Association" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/American_Medical_Student_Association" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/AZ_Electronic_Materials" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Canadian_Society_of_Hospital_Pharmacists" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/W._B._Ray_High_School" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bernard_Matthews_Ltd" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Institute_of_Neurological_Disorders_and_Stroke" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kimball_International" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bristol_Broadcasting_Company" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Church_Society" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nippon_Professional_Baseball" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/MANPA" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Orange_Field_Tea_Factory" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Santa_Catalina_School" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Socialist_Workers_Party_(UK)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/United_Bank_of_India" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Crown_American" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Austrian_Physical_Society" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/SOKO" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Montreal_School_for_the_Deaf" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tarini_Charan_Girls_School" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Taiyo_Yuden" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Fretter" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Macksville_High_School" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/China_Food_and_Drug_Administration" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Churchmead_School" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Window_Rock_High_School" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Halifax_Harbour_Bridges" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Haywards_Heath_RFC" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Idalia_School" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Reconstruction_Front_(Greece)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/China_Minmetals" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nagoya_Diamond_Dolphins" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Swain_County_High_School" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Simonds_High_School" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/University_of_Santo_Tomas_Education_High_School" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Association_of_British_Travel_Agents" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lord's_Taverners" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Murray_Goulburn_Co-operative" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mill_Hill_School,_Derbyshire" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Riverview_Rural_High_School" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Wage_Stabilization_Board" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Razi_High_School" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/One_Nevada_Credit_Union" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Soltam_Systems" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/International_Organization_for_Succulent_Plant_Study" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/EV_Aicall_Zeltweg" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/David's_Bridal" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Council_on_Aging" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/EMS_(pharmaceuticals)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Deutscher_Amateur-Radio-Club" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/FIBA_Basketball_World_Cup" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hamburger_RC" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Conference_of_Consulting_Actuaries" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Wing_Wah" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pa\u015fabah\u00e7e_S.K." + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Patchway_Community_College" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Fleetwood_Enterprises" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/SEAT" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Merck_Sharp_&_Dohme_Federal_Credit_Union" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mayr-Melnhof" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/South_Peninsula_High_School" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Toshiba_Kawasaki_Brave_Thunders" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/BLC_bank" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Codiscos" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/RTI_International_Metals" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Damascus_High_School" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Roscrea_RFC" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/High_School_Affiliated_to_Fudan_University" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bill_Miller_Bar-B-Q_Enterprises" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ganz_(toy_company)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bikanervala" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Orascom_Construction_Industries" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Toyo_Rikagaku_Kenkyusho" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chess_Records" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Budapesti_Honv\u00e9d_SE_(fencing)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cleveland_Pipers" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Franklin_County_High_School_(Tennessee)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Banco_Latino" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Willow_Glen_High_School" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Aurora_Plastics_Corporation" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mater_Dei_High_School_(Santa_Ana,_California)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/East_Leeds_Family_Learning_Centre" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Retired_Police_Association_of_NY" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bank_Persatuan" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Caverna_High_School" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pakistan_Oilfields" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Canaccord_Genuity" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Portuguese_Volleyball_Second_Division" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Schichau_Seebeckwerft" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/China_Railway_Engineering_Corporation" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Oriental_Institute_in_Sarajevo" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/De_La_Salle_Frere" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pondok_Pesantren_Al_Manshurin_Metro_Lampung" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/KK_Triglav_Kranj" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Carrs-Safeway" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pierre_Cardin__The_House_of_Cardin__1" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Loux_(company)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Humorama" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Avalon_Books" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Philadelphia_Parking_Authority" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/SMA_Negeri_2_Medan" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/British_School,_Caracas" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chandler_School" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Titanium_Metals_Corporation" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Turkeyfoot_Valley_Area_Junior/Senior_High_School" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/PulteGroup" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/East_Mecklenburg_High_School" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/BK_Dukla_Praha" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chandpara_Bani_Vidhay_Bithi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pilgrim_Mother_Campaign" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Diners_Club_International" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/S\u00e9minaire_Sainte-Marie" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Changfeng_Motor" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Celco" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bishop_DuBourg_High_School" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mechanical_and_Chemical_Industry_Corporation" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Daneshill_School" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Katanning_Senior_High_School" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Indian_School,_Bahrain" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/SunRice" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Avangard_Omsk" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Marion_Merrell_Dow" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Civil_Service_Police_Unit" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Belgian_Film_Critics_Association" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Croatian_Mountain_Rescue_Service" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Southside_High_School_(San_Antonio)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/North_Peace_Hockey_League" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ritenour_High_School" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Grupo_Lala" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Shropshire_County_Premier_Football_League" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Divizia_A1_(Volei_Feminin)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bombay_Sweets" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ross_Dress_for_Less" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Marcellin_College,_Bulleen" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Democratic_Party_(Japan)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Junior's" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mattachine_Society" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Zehrs_Markets" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Yellow_Front_Stores" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Alvirne_High_School" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dunkin'_Brands" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Grupo_Antolin" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bundesverband_Junger_Unternehmer" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Miss_Iceland" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Progressive_Records" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Japanese_La_Salle_Academy" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Barristers'_Association_of_Philadelphia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Triveni_Kala_Sangam" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Saugeen_Valley_Conservation_Authority" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/St._Mary's_Academy_of_Caloocan_City" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/General_Directorate_of_Highways_(Turkey)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Budapesti_Honv\u00e9d_SE_(men's_water_polo)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Budapesti_Honv\u00e9d_SE_(men's_basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nathan_Eckstein_Middle_School" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rutelaget_Ask\u00f8y\u2013Bergen" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bishop_McGuinness_Catholic_High_School_(Oklahoma)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bridgewater-Raritan_High_School" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Korea_Coal_Corporation" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Grupo_Elektra" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Georgios_Papandreou_Party" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/China_National_Salt_Industry_Corporation" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Inland_Empire_Utilities_Agency" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Royal_High_Corstorphine_RFC" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Irish_History_Students'_Association" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Election_Commission_of_India" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Como_West_Public_School" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/BTU_International" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hamilton_Tiger-Cats" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Douglas_MacArthur_High_School_(San_Antonio)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Taipei_Adventist_American_School" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sagar_Films" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/International_Union_of_Psychological_Science" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hegang_No.1_High_School" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pathfinders_(Seventh-day_Adventist)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sikh_Pioneers_&_Sikh_Light_Infantry_Association_UK" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hagley_Park_Academy" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/TRU-SPEC" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/R\u00f6hm_Gesellschaft" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bhaluka_Pilot_High_School" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/United_States_Maritime_Administration" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/All-German_Bloc/League_of_Expellees_and_Deprived_of_Rights" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/BC_Dinamo_Tirana" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_American_Assembly" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/IPIP_SA" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Southwestern_Regional_Football_Association" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Howard_School_(Atlanta)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Aspen_Institute" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dornbracht" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lewis_Roca_Rothgerber_Christie" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Grupo_Abril" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rugby_Club_Vannes" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/People's_United_Party" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Democratic_Alignment_(1950)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Third_Amateur_Football_League_(Bulgaria)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bensons_for_Beds" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/SINTEF" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Perth_High_School" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Crimpy" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ministry_of_Health_(Saudi_Arabia)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Northern_Elements_Progressive_Union" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Taekwang_Group" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Fa\u00e7onnable" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/China_National_Machinery_Import_and_Export_Corporation" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Booker_T._Washington_High_School_(Shreveport,_Louisiana)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bishop_Rosecrans_High_School" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Emery_Telcom" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/East_Northumberland_Secondary_School" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Alfa_Pastry" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bethpage_High_School" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Capuchino_High_School" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jerrold_Electronics" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sacred_Heart_High_School_(Pennsylvania)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Aviamilano" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Saraswati_Mandir_High_School" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ferring_Pharmaceuticals" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Department_of_Supply" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mainichi_Broadcasting_System" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dinamo-Energija_Yekaterinburg" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Heathfield_Community_College" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lancaster_and_Morecambe_College" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Christ_Our_King-Stella_Maris_School" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Changchun_Film_Group_Corporation" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mowag" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/King's_High_School" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hatboro-Horsham_Senior_High_School" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jenapharm" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gent_Hawks" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/International_Penal_and_Penitentiary_Foundation" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tohoku_Bank" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Economic_and_Social_Development_Board" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kono_Model_Academy" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Naprz\u00f3d_Jan\u00f3w" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Fabri-Kal" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/John_Mansfield_School" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bishop's_Stortford_High_School" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rayyithunge_Muthagaddim_Party" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Essex_Skating_Club" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ruhrpumpen" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pic_'N'_Save" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Christian_Academy_in_Japan" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/United_Community_Bank" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/James_Wood_High_School" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Scosa" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/North_Fork_Bank" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Leprino_Foods" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Wa_Senior_High_Technical_School" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Capitol_Institute" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Indian_Rare_Earths" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Maroussi_B.C." + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/San_Lorenzo_High_School" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nazareth_Catholic_College,_Adelaide" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Zumtobel_Group" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Evansville_Agogans" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Eastern_High_School_(Louisville,_Kentucky)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/St_Paul's_College,_Raheny" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lakeshore_Collegiate_Institute" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Civil_Defence_Ireland" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Farlingaye_High_School" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bellevue_Christian_School" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Helen_Lowry_Higher_Secondary_School" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/World_Vision_International" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gold_Medal_Books" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/RockResorts" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cincinnati_Financial" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jefferson_County_Public_Schools_(Colorado)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/BAPS_Charities" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Shenendehowa_High_School" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Public_Power_Corporation_S.A." + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/International_Association_of_Universities" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sibpur_S.S.P.S._Vidyalaya" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Taxation_Administration" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Simard-Beaudry_Construction" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Segunda_Divisi\u00f3n_de_M\u00e9xico" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cherry_(keyboards)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lake_Oswego_High_School" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Editora_Abril" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Guinness_Nigeria" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Budapesti_Honv\u00e9d_SE_(canoeing)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cooperation_and_Brotherhood" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Majlis-e-Tahaffuz-e-Khatme_Nabuwwat" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nippon_Steel_&_Sumitomo_Metal" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Huddinge_IK" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Royal_Scottish_Pipe_Band_Association_Northern_Ireland_Branch" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Thrybergh_Academy" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vadodara_Municipal_Corporation" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Southington_High_School" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Philips_Records" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lewis_Silkin_LLP" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/World_Veterans_Federation" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Studios_Herg\u00e9" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/High_School_Attached_to_Northeast_Normal_University" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/United_States_Civil_Administration_of_the_Ryukyu_Islands" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Green_Meadow_Waldorf_School" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Taiyuan_Heavy" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Leadership_Conference_on_Civil_and_Human_Rights" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Asko_Cylinda" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Charlotte_Christian_School" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Constantin_Film" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Miss_University_of_Florida" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Baipu_Middle_school" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/International_Association_for_Plant_Taxonomy" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Association_of_Teachers_of_Mathematics" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Orana_Incorporated" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Reavis_High_School" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Blue_Ridge_Communications" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Second_Professional_Football_League_(Bulgaria)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/West_Geauga_High_School" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nantou_County_Government" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mid-Somerset_Football_League" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chance_Records" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/2._Oberliga_S\u00fcd" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Miss_Norway" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gesell_Institute" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mira_Costa_High_School" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Belize_Electricity_Limited" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gladstone_Secondary_School" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Okinawa_Social_Mass_Party" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/County_Line_High_School" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/\u0160kolska_knjiga" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Wardley_(company)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Blonder_Tongue_Labs" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cook_Islands_Round_Cup" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Burma_Workers_Party" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Anti-Assassins" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sierra_Springs" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Southeast_High_School_(Ohio)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Wolford" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Alpha_Secondary_School" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Riverboat_Discovery" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Yunnan_People's_Publishing_House" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Maffra_Secondary_College" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Freetown_Elementary_School" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Luzhou_Laojiao" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pensby_High_School" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dot_Records" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Athletic_Trainers'_Association" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tamron" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Churchill_School_(Harare)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mackinac_Bridge_Authority" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Central_Motors" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Instituto_Tecnol\u00f3gico_de_Ciudad_Madero" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Auxiliary_Medical_Service" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Uganda_Clays_Limited" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hefame_Group" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ace_Communication_Group" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Troy_High_School_(Michigan)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Miss_Sweden" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/King's_College,_Guildford" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Capitol_Records_Nashville" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Whitney_M._Young_Gifted_&_Talented_Leadership_Academy" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lippo_Group" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Supermercado_De_Candido" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Clontarf_Beach_State_High_School" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/R\u00e9union_Premier_League" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dupont_Brewery" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Grey_Court_School" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Camden_Military_Academy" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Northwestern_Lehigh_School_District" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Springer_Publishing" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Stratton_Upper_School" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CSK_VVS_Samara_(ice_hockey)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/International_Economic_Association" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sponeta_(corporation)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bottega_Giotti" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kurgan_Wheel_Tractor_Plant" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/East_Africa_rugby_union_team" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Reserve_Officers_Association" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Office_of_Foreign_Assets_Control" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Liga_Premier_de_Ascenso" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Fairfax_County_Park_Authority" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Whitley_Academy" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Heritage_Academy_Longmeadow" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Equitable_PCI_Bank" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Delaware_County_Christian_School" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/International_Francophone_Press_Union" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Institute_of_Diabetes_and_Digestive_and_Kidney_Diseases" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/St._Stephen's_Episcopal_School_(Austin,_Texas)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lebanese_Fourth_Division" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Desilu_Productions" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/AmeriCU_Credit_Union" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Winters_Brothers" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chittaranjan_Locomotive_Works" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Villar_Records" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Department_of_National_Development_(1950\u201372)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Transworld_Publishers" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Schoenherr_(law_firm)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/American_Association_of_Physician_Specialists" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sinohydro" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/DMA_Distribuidora" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ladywood_High_School" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Elizabeth_Lowell_High_School" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/United_Issarak_Front" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lebanese_Third_Division" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/North_Harford_High_School" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/DDR-Liga" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Amer_Sports" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ramco-Gershenson_Properties_Trust" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Star_Micronics" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Denver_Falcons" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bridgewater_School" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/A._A._Turki_Group" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Liberal_Party_(Japan,_1950)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Palmyra-Macedon_High_School" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Old_Hall_Comprehensive_School" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Questar_Corporation" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Colegio_del_Verbo_Divino" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Your_Credit_Union_(Canada)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sinochem_Group" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Izumi_Chuo_High_School" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hidroconstruc\u021bia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Fairmont_Heights_High_School_(Maryland)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Head_(company)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/M._Firon_&_Co." + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Intermountain_Indian_School" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Zeeland_Farm_Services" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bharatiya_Vidya_Bhavan's_Mehta_Vidyalaya" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Suhrkamp_Verlag" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Univar_Canada" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Genstar_Development_Company" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vanguard_Records" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Villa_Angela-St._Joseph_High_School" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Schurman_Retail_Group" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vitra_(furniture)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Atomic_Energy_Commission" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/James_Lick_High_School" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Norwin_High_School" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/KK_Celje" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/People's_Progressive_Party_(Guyana)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Brockbank_Jr._High" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pearl_Izumi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sanyo" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/St_John_Fisher_Catholic_High_School,_Wigan" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/St._Benedict_High_School_(Chicago,_Illinois)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ministry_of_Labour_and_Social_Affairs_(Iran)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Venice_High_School_(Venice,_Florida)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sinotrans" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tr\u00f8nderEnergi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Professional_Basketball_League_(1950\u201351)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Institute_of_Electronics_Engineers_of_the_Philippines" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/St._Peter's_College_Tororo" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Grenada_United_Labour_Party" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Redbank_Valley_Junior/Senior_High_School" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Itaca_Records" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Junior_Engineering_Technical_Society" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cheung_Kong_Holdings" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/MKB_Bank" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bishop_Challoner_School" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Catholic_Central_High_School_(London,_Ontario)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nuclear_Measurements_Corporation" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/History_of_the_FIBA_Basketball_World_Cup" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Primera_D" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Zamboni_Company" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Radio_Society_of_Sri_Lanka" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kazanorgsintez" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Muscular_Dystrophy_Association" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/HAECO" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Racal" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Science_Board" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gillotts_School" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chapel_Hill_High_School_(Tyler,_Texas)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Butte_County_High_School" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Academia_San_Jos\u00e9" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jun\u00edpero_Serra_High_School_(Gardena,_California)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Galuapur_Inter_College" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Big_Walnut_High_School" + } + } + ] + } + } + ], + "entities": [ + { "URI": "http://dbpedia.org/resource/1950", "surface form": "1950" } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/company", + "surface form": "organizations" + }, + { + "URI": "http://dbpedia.org/ontology/author", + "surface form": "founded" + } + ] + }, + { + "id": "19", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Who created the comic Captain America?", + "keywords": "comic, Captain America, create" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Captain_America dbo:creator ?uri }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jack_Kirby" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Joe_Simon" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Captain_Comic", + "surface form": "comic Captain America" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/creator", + "surface form": "created" + } + ] + }, + { + "id": "20", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Give me the Apollo 14 astronauts.", + "keywords": "astronaut, Apollo 14" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { ?uri dbo:mission res:Apollo_14 }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Stuart_Roosa" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Alan_Shepard" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Edgar_Mitchell" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Apollo_14", + "surface form": "Apollo 14 astronauts" + } + ], + "relations": [] + }, + { + "id": "21", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Who wrote the book The pillars of the Earth?", + "keywords": "wrote, book, The pillars of the Earth" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> SELECT DISTINCT ?uri WHERE { res:The_Pillars_of_the_Earth dbo:author ?uri }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ken_Follett" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/The_Pillars_of_the_Earth", + "surface form": "The Pillars of the Earth" + } + ], + "relations": [ + { "URI": "http://dbpedia.org/ontology/author", "surface form": "wrote" } + ] + }, + { + "id": "22", + "answertype": "resource", + "aggregation": false, + "onlydbo": false, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Which state of the United States of America has the highest density?", + "keywords": "state, united, states, america, highest, density" + } + ], + "query": { + "sparql": "PREFIX yago: <http://dbpedia.org/class/yago/> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> PREFIX dbp: <http://dbpedia.org/property/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT ?uri WHERE { ?uri dbp:densityrank ?density } ORDER BY ASC(?density) LIMIT 1" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/New_Jersey" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/United_States", + "surface form": "United States of America" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/populationDensity", + "surface form": "highest density" + } + ] + }, + { + "id": "23", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Which spaceflights were launched from Baikonur?", + "keywords": "spaceflight, launched, Baikonur" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/launchPad> res:Baikonur_Cosmodrome }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Orbital_Piloted_Assembly_and_Experiment_Complex" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Salyut_7" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Salyut_6" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/DOS-2" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kosmos_557" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/International_Space_Station" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kosmos_1686" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Salyut_5" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Priroda" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Salyut_4" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Salyut_3" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Salyut_2" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Salyut_1" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Baikonur_Cosmodrome_Site_110", + "surface form": "Baikonur" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/countryWithFirstSpaceflight", + "surface form": "spaceflights" + }, + { + "URI": "http://dbpedia.org/ontology/totalLaunches", + "surface form": "launched" + } + ] + }, + { + "id": "24", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Give me a list of all trumpet players that were bandleaders.", + "keywords": "trumpet player, bandleader" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { ?uri dbo:occupation res:Bandleader ; dbo:instrument res:Trumpet }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Terumasa_Hino" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Adam_Taubitz" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jacobo_Rubalcaba" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jimmy_Dorsey" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pacho_Galan" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Abatte_Barihun" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jimmy_Vivino" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Billie_Rogers" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lloyd_Hunter" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hot_Lips_Page" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Wayne_Bergeron" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Clifford_Thornton" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Richard_Maltby,_Sr." + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Doc_Cheatham" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ovie_Alston" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pete_Brown_(jazz_musician)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Don_Albert" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bobby_Hackett" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Charlie_Spivak" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Guy_Barker" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Neil_Yates" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Louis_Prima" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gerald_Wilson" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Willie_Mitchell_(musician)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Orbert_Davis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sean_Jones_(trumpeter)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Henry_Jerome" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Brad_Turner_(musician)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ollie_Mitchell" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Artie_Fields" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ernest_%22Doc%22_Paulin" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mark_Masters_(musician)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Erskine_Hawkins" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jack_Jackson_(British_radio)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gerard_Presencer" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Joe_Wilder" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Doc_Severinsen" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Alan_Silva" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Red_Perkins" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Wingy_Manone" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cleveland_Eaton" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Papa_Celestin" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Danny_Davis_(country_musician)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Maynard_Ferguson" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Theodore_Carpenter" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Marlon_Jordan" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Trumpet", + "surface form": "trumpet players" + }, + { + "URI": "http://dbpedia.org/resource/List_of_American_big_band_bandleaders", + "surface form": "bandleaders" + } + ], + "relations": [] + }, + { + "id": "25", + "answertype": "resource", + "aggregation": false, + "onlydbo": false, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Which U.S. states are in the same timezone as Utah?", + "keywords": "U.S. state, same, timezone, Utah" + } + ], + "query": { + "sparql": "PREFIX yago: <http://dbpedia.org/class/yago/> PREFIX res: <http://dbpedia.org/resource/> PREFIX dbp: <http://dbpedia.org/property/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { res:Utah dbp:timezone ?x . ?uri rdf:type yago:WikicatStatesOfTheUnitedStates ; dbp:timezone ?x FILTER ( ?uri != res:Utah ) }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nebraska" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/New_Mexico" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Illinois" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Alabama" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vermont" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Virginia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Minnesota" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kansas" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Missouri" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Wyoming" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Texas" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Connecticut" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Georgia_(U.S._state)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Maryland" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hawaii" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/North_Dakota" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Massachusetts" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kentucky" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Oklahoma" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/South_Dakota" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mississippi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Idaho" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Indiana" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/North_Carolina" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Louisiana" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Delaware" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Arizona" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rhode_Island" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Colorado" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Maine" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Washington_(state)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Florida" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Iowa" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/West_Virginia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/South_Carolina" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pennsylvania" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Wisconsin" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Michigan" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/New_Hampshire" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Montana" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nevada" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tennessee" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Alaska" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Arkansas" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/New_Jersey" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Usk,_Washington", + "surface form": "US" + }, + { "URI": "http://dbpedia.org/resource/Utah", "surface form": "Utah" } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/timeZone", + "surface form": "timezone" + } + ] + }, + { + "id": "26", + "answertype": "resource", + "aggregation": false, + "onlydbo": false, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Which U.S. states possess gold minerals?", + "keywords": "U.S. state, mineral, gold" + } + ], + "query": { + "sparql": "PREFIX yago: <http://dbpedia.org/class/yago/> PREFIX dbp: <http://dbpedia.org/property/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type yago:WikicatStatesOfTheUnitedStates ; dbp:mineral ?mineral FILTER regex(?mineral, \"gold\", \"i\") }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mississippi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/California" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/North_Carolina" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/United_States", + "surface form": "US" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/owner", + "surface form": "possess" + }, + { + "URI": "http://dbpedia.org/ontology/champion", + "surface form": "gold minerals" + } + ] + }, + { + "id": "27", + "answertype": "string", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Who is the daughter of Ingrid Bergman married to?", + "keywords": "Ingrid Bergman, daughter, married" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Ingrid_Bergman dbo:child ?child . ?child <http://dbpedia.org/property/spouse> ?uri }" + }, + "answers": [ + { + "head": { "vars": ["string"] }, + "results": { + "bindings": [ + { "string": { "type": "literal", "value": "Joseph Daly" } }, + { "string": { "type": "literal", "value": "John Carley" } }, + { + "string": { + "type": "literal", + "value": "Fuller Earle Callaway, III" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Ingrid_Bergman", + "surface form": "Ingrid Bergman" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/child", + "surface form": "daughter" + }, + { + "URI": "http://dbpedia.org/property/spouse", + "surface form": "married" + } + ] + }, + { + "id": "28", + "answertype": "number", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "How deep is Lake Placid?", + "keywords": "Lake Placid, depth" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> SELECT DISTINCT ?n WHERE { <http://dbpedia.org/resource/Lake_Placid_(Texas)> dbo:maximumDepth ?n }" + }, + "answers": [ + { + "head": { "vars": ["c"] }, + "results": { + "bindings": [{ "c": { "type": "literal", "value": "12.192" } }] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Lake_Placid", + "surface form": "Lake Placid" + } + ], + "relations": [ + { "URI": "http://dbpedia.org/ontology/capital", "surface form": "deep" } + ] + }, + { + "id": "29", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Show me all museums in London.", + "keywords": "museums, London" + } + ], + "query": { + "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Museum> ; <http://dbpedia.org/ontology/location> <http://dbpedia.org/resource/London> }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Leighton_House_Museum" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ben_Uri_Gallery" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sir_John_Soane's_Museum" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Free_Art_and_Technology_Lab" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/InIVA" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Foundling_Museum" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Old_Operating_Theatre_Museum_and_Herb_Garret" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tate_Britain" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Portrait_Gallery,_London" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Wimbledon_Lawn_Tennis_Museum" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gasworks_Gallery" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chisenhale_Gallery" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tate_Modern" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Peckham_Platform" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Imperial_War_Museum" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/HMS_Belfast_(C35)__HMS_Belfast_Museum_ship__1" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Royal_Academy_of_Arts" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Maritime_Museum" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Unit_London" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Carlyle's_House" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Queen's_Gallery" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Islington_Museum" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Serpentine_Galleries" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/V&A_Museum_of_Childhood" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Museum_of_Croydon" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kirkaldy_Testing_Museum" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/London_Canal_Museum" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Winston_Churchill's_Britain_At_War_Experience" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/William_Morris_Gallery" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Academia_Rossica" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Museum_of_Wimbledon" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Gallery" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jack_the_Ripper_Museum" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Photographers'_Gallery" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Fan_Museum" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hayward_Gallery" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Victoria_and_Albert_Museum" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Wellcome_Collection" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Arsenal_Football_Club_Museum" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Science_Museum,_London" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Museum_of_the_Order_of_St_John" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dairy_Art_Centre" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Cartoon_Museum" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Museum_of_Brands,_Packaging_&_Advertising" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Courtauld_Gallery" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Churchill_War_Rooms" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Postal_Museum" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bishopsgate_Institute" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bridgeman_Art_Library" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Leverian_collection" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/British_School_at_Rome" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Saatchi_Gallery" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Royal_Air_Force_Museum_London" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Royal_Society_of_Chemistry__Burlington_House__1" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Museum_of_London_Docklands" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Whitechapel_Gallery" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Keats_House" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pushkin_House_(London)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Walthamstow_Pumphouse_Museum" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sartorial_Contemporary_Art" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/London_Dungeon" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vestry_House_Museum" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Museum_of_Domestic_Design_and_Architecture" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Army_Museum" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jewish_Museum_London" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Geffrye_Museum" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sherlock_Holmes_Museum" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/British_Museum" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dulwich_Picture_Gallery" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Museum_of_London" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Design_Museum" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Natural_History_Museum,_London" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/London_Transport_Museum" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Institute_of_Contemporary_Arts" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/October_Gallery" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Florence_Nightingale_Museum" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Horniman_Museum" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Grant_Museum_of_Zoology_and_Comparative_Anatomy" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Freud_Museum" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Carpenters_Workshop_Gallery" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Museums_in_Aalborg", + "surface form": "museums" + }, + { + "URI": "http://dbpedia.org/resource/London", + "surface form": "London" + } + ], + "relations": [ + { "URI": "http://dbpedia.org/ontology/show", "surface form": "show" } + ] + }, + { + "id": "30", + "answertype": "resource", + "aggregation": false, + "onlydbo": false, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Which caves have more than 3 entrances?", + "keywords": "cave, entrance, more than 3" + } + ], + "query": { + "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Cave> ; <http://dbpedia.org/property/entranceCount> ?entrance FILTER ( ?entrance > 3 ) }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ease_Gill_Caverns" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Minori_Cave" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Amat\u00e9rsk\u00e1_Cave" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lost_John's_Cave" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Yordas_Cave" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Great_Douk_Cave" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jenolan_Caves" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gouffre_Jean-Bernard" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Fingal's_Cave" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ingleborough_Cave" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Short_Drop_Cave_-_Gavel_Pot_System" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jackson's_Bay_Cave" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Traungold_Cave" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pollnagollum" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Badami_cave_temples" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Porth_yr_Ogof" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sistema_Sac_Actun" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kharosa" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gargantua_(cave)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gruta_das_Torres" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sistema_Dos_Ojos" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/B\u00fd\u010d\u00ed_sk\u00e1la_Cave" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Steinbr\u00fccken_Cave" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Redmond_Caves" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/New_Athos_Cave" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Phong_Nha_Cave" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Windsor_Great_Cave" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Trail_Creek_Caves" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Seneca_Caverns_(Ohio)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gaping_Gill" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Karla_Caves" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Candelaria_Caves" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Callao_Cave" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mahakali_Caves" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bhaja_Caves" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Yar\u0131mburgaz_Cave" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Wookey_Hole_Caves" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kanheri_Caves" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Three_Counties_System" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Shuang_River_Cave_Group" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sistema_Ox_Bel_Ha" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hang_S\u01a1n_\u0110o\u00f2ng" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Seneca_Caverns_(West_Virginia)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Buchan_Caves" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sistema_Nohoch_Nah_Chich" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Green_Grotto_Caves" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Boho_Caves" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mammoth_Cave_(Utah)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kazumura_Cave" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Caves_of_Aggtelek_Karst_and_Slovak_Karst", + "surface form": "caves" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/iso6393Code", + "surface form": "3 entrances" + } + ] + }, + { + "id": "31", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Who is the tallest player of the Atlanta Falcons?", + "keywords": "Atlanta Falcons, player, tallest" + } + ], + "query": { + "sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/team> <http://dbpedia.org/resource/Atlanta_Falcons> ; <http://dbpedia.org/ontology/height> ?h } ORDER BY DESC(?h) OFFSET 0 LIMIT 1" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Matt_Schaub" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Atlanta_Falcons", + "surface form": "Atlanta Falcons" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/coach", + "surface form": "tallest player" + } + ] + }, + { + "id": "32", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "What are the top-10 action role-playing video games according to IGN?", + "keywords": "top-10, action, role-playing games, IGN" + } + ], + "query": { + "sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://purl.org/dc/terms/subject> <http://dbpedia.org/resource/Category:Action_role-playing_video_games> ; <http://dbpedia.org/property/ign> ?score } ORDER BY DESC(?score) LIMIT 10" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mass_Effect_2:_Lair_of_the_Shadow_Broker" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vagrant_Story" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jade_Empire" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Diablo_III" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Fallout_4" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Fable_II" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mass_Effect_2" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mass_Effect_3" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dark_Souls_III" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Battleheart_Legacy" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Action_role-playing_games", + "surface form": "top-10 action role-playing video games" + }, + { "URI": "http://dbpedia.org/resource/IGN", "surface form": "IGN" } + ], + "relations": [] + }, + { + "id": "33", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Give me all writers that won the Nobel Prize in literature.", + "keywords": "writer, win, Nobel Prize in literature" + } + ], + "query": { + "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Writer> ; <http://dbpedia.org/ontology/award> <http://dbpedia.org/resource/Nobel_Prize_in_Literature> }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hermann_Hesse" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Aleksandr_Solzhenitsyn" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ernest_Hemingway" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Czes\u0142aw_Mi\u0142osz" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Joseph_Brodsky" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jos\u00e9_Saramago" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Wis\u0142awa_Szymborska" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/John_Steinbeck" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gerhart_Hauptmann" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Eugene_O'Neill" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Thomas_Mann" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Toni_Morrison" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/T._S._Eliot" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Svetlana_Alexievich" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/William_Golding" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pablo_Neruda" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Alice_Munro" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Patrick_Modiano" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Juan_Ram\u00f3n_Jim\u00e9nez" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Harold_Pinter" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Seamus_Heaney" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Nobel_Prize", + "surface form": "Nobel Prize" + }, + { + "URI": "http://dbpedia.org/resource/Literature", + "surface form": "literature" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/writer", + "surface form": "writers" + }, + { "URI": "http://dbpedia.org/ontology/award", "surface form": "won" } + ] + }, + { + "id": "34", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Show me all basketball players that are higher than 2 meters.", + "keywords": "basketball players, higher than 2 meters" + } + ], + "query": { + "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/BasketballPlayer> ; <http://dbpedia.org/ontology/height> ?n FILTER ( ?n > 2.0 ) }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/J\u0101nis_Porzi\u0146\u0123is" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sylvania_Watkins" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Emanuel_Neto" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Michael_Gbinije" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Eloy_Vargas" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Michalis_Kamperidis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cam_Rigby" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Todd_Cauthorn" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nemanja_Krsti\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dejan_Bodiroga" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Art_Spoelstra" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cliff_Robinson_(basketball,_born_1966)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bamba_Fall" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Aleksandar_\u0160terjov" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Randolph_Morris" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kasib_Powell" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Royce_White" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Windi_Graterol" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bla\u017e_\u010cre\u0161nar" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Elias_Harris" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Furkan_Aldemir" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Anthony_Mason_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jim_Chones" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dragan_Api\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Juan_Pablo_Vaulet" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Murilo_Becker" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ralph_Sampson" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Andreas_Kanonidis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ryan_Stack" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rudy_Tomjanovich" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sergio_De_Randamie" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Wayne_Simien" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Larry_Turner_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Augusto_Lima" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jason_Collier" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Paul_Ruffner" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Charlie_Villanueva" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Popeye_Jones" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jo\u00e3o_Gomes_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tony_Zeno" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ga\u0161per_Vidmar" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mike_Bantom" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jason_Thompson_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cameron_Echols" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Barry_Sumpter" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Marc_Iavaroni" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lee_Davis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/David_Wear" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Omer_Abdelqader" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jody_Lumpkin" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Eric_Montross" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Aleks_Mari\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Han_Dejun" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Emeka_Okafor" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Josh_Powell" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Micah_Downs" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tim_Behrendorff" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rodney_Rogers" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ante_Krapi\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/David_Thirdkill" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ben_McCauley" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chris_Daniels_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/\u0130nan\u00e7_Ko\u00e7" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Moses_Malone" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Efkan_Eren" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Justin_Rutty" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Brian_Randle" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/DeQuan_Jones" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jai_Lewis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bryan_Bracey" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tyrone_Washington" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/George_Stone_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Billy_White_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ron_Ellis_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ken_Spain" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Uro\u0161_Lu\u010di\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Joe_Barry_Carroll" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vin_Baker" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Massimo_Masini" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Charles_Shackleford" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Remon_van_de_Hare" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pete_Chilcutt" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Diamon_Simpson" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Miko_Golubovi\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nikola_Kalini\u0107_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jack_Marin" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Daniel_Ochefu" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chris_Burgess" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rondae_Hollis-Jefferson" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Detlef_Schrempf" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kelly_Olynyk" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gjorgji_\u010cekovski" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Marcus_Morris_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ivan_Johnson_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/James_Lang_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Valerio_Amoroso" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Marcos_Del\u00eda" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Truck_Robinson" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ben_Altit" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tony_Mitchell_(basketball,_born_1992)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/JJ_Hickson" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/R._T._Guinn" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gary_Freeman_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Joey_Graham" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Eulis_B\u00e1ez" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kiril_Nikolovski" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Doug_Kistler" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Adarrial_Smylie" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/David_Attewell" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/\u0130lkan_Karaman" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cartier_Martin" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Uro\u0161_Slokar" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Steve_Novak" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Juaquin_Hawkins" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kirk_Archibeque" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cleveland_Buckner" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Clyde_Lovellette" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Donatas_Tarolis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dimitrios_Katiakos" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/John_Irving_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Brian_Butch" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Christos_Tapoutos" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Warren_Isaac" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jordan_Aboudou" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Trey_Gilder" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rick_Darnell" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ed_Siudut" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Brandan_Wright" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/John_Williamson_(basketball,_born_1986)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ahmet_D\u00fcverio\u011flu" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rodney_Carney" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Andre_Brown_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tim_McCormick" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tayshaun_Prince" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rub\u00e9n_Garc\u00e9s" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Denis_Krestinin" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/John_Hummer" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Zendon_Hamilton" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Johannes_Voigtmann" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Theodoros_Papaloukas" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mamadou_N'Diaye_(basketball,_born_1975)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Strahinja_Stoja\u010di\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chris_Douglas-Roberts" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chris_Crawford_(basketball,_born_1975)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Alonzo_Mourning" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Johan_Grebongo" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rik_Smits" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Larry_Krystkowiak" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jordan_Richard" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Terquin_Mott" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dan_O'Sullivan" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rick_Jackson" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ron_Slay" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dontae'_Jones" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Terry_Davis_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Josh_Grant" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Adri\u00e1n_Zamora" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Wiley_Peck" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jason_Collins" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Darrall_Imhoff" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ronnie_Valentine" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Wayne_Hightower" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Giannis_Sachpatzidis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Franko_Naki\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Andrew_Bogut" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Michalis_Tsairelis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dejan_Musli" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jay-R_Reyes" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dra\u0161ko_Albijani\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Talib_Zanna" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Andriy_Malysh" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pace_Mannion" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Joby_Wright" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Boo_Jackson" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Aaron_Williams_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vitaly_Potapenko" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Alessandro_Tonolli" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/\u017darko_Kne\u017eevi\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/\u0110oko_\u0160ali\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jack_Nichols_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Leo_Lyons_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jim_Kissane" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Darryl_Dawkins" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Marko_Dujkovi\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tyler_Cain" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Radoje_Vujo\u0161evi\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nikola_Jevtovi\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Coty_Clarke" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Scot_Pollard" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ivan_Opa\u010dak" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Aleksandar_Radulovi\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Craig_Callahan" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Corsley_Edwards" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mike_Williams_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Justin_Jackson_(basketball,_born_1995)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Brent_Barry" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tomislav_Gabri\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Duane_Ferrell" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Josh_Boone_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Timofey_Mozgov" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Killian_Tillie" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Greg_Stiemsma" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Michael_Smith_(basketball,_born_1965)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Keith_Clanton" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Milan_Dozet" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Milan_Vu\u010di\u0107evi\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mike_Lewis_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Al_Beard" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Goran_Suton" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Joseph_Blair" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Robert_Loe" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Georgeann_Wells" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Perry_Jones" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Harry_Davis_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gary_Gregor" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rasual_Butler" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ed_Stokes" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Donyell_Marshall" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rodney_White" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ron_Riley_(basketball,_born_1950)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Clifford_Rozier" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rico_Hill" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Randy_Breuer" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Robertas_Javtokas" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/LaMarcus_Aldridge" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/John_Mills_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jim_Petersen" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Brice_Johnson" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Johnny_Horan" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Charles_Judson_Wallace" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jared_Homan" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/C._J._Leslie" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lamine_Kant\u00e9" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chris_King_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ram\u00f3n_Rivas" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Johnny_O'Bryant_III" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Josh_Carter" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dragan_Smiljani\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dragan_Labovi\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Julius_Randle" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Danilo_Mijatovi\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tim_James_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dickey_Simpkins" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Steve_Goodrich" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Primo\u017e_Brezec" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dominic_McGuire" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vangelis_Karampoulas" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Guille_Rubio" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Asghar_Kardoust" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pervis_Ellison" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mathieu_Wojciechowski" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rich_Johnson_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Michael_Wright_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kenny_Dennard" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nikos_Kamarianos" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kevin_Restani" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bakari_Hendrix" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Paris_Maragkos" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Drew_Gordon" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kyle_O'Quinn" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Perry_Stevenson" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dexter_Westbrook" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nikola_Milatovi\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Steve_Scheffler" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Al_Salvadori" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gabriel_Fern\u00e1ndez_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Anthony_Randolph" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Al_Miksis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Steffond_Johnson" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Yi_Jianlian" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gary_Alcorn" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Joe_Strawder" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Smiljan_Pavi\u010d" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nikola_Miroti\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Michael_Olowokandi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vadim_Panin" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Eric_Riley" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Darko_Planini\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mike_Allison_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mark_Madsen" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Milan_Jeremi\u0107_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Robert_Krabbendam" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Robert_Archibald" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Zoran_Vrki\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bayard_Forrest" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Wayne_Embry" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kevin_Kunnert" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bill_Schrader" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Siim-Sander_Vene" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vassil_Evtimov" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ken_Smith_(basketball,_born_1953)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tobias_Harris" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Matt_Freije" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ronald_Roberts_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nikos_Barlos" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jamie_Dawson" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rade_Lon\u010dar" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Wayman_Tisdale" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ilia_Londaridze" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Eric_Williams_(basketball,_born_1972)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vineeth_Revi_Mathew" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jonas_Wohlfarth-Bottermann" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Keith_Closs" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Johan_Petro" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Greg_Newton" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sam_Williams_(basketball,_born_1959)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ryan_Evans" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Anthony_Cook_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gorgui_Dieng" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tyrus_Thomas" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kenny_Williams_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chandler_Parsons" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/John_Windsor" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nemanja_Be\u0161ovi\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/V\u00edctor_\u00c1vila" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sa\u0161a_Don\u010di\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Darnell_Jackson" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Antoine_Joseph" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dra\u017een_Zlovari\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Daniel_Orton" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jeremy_McNeil" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Slaven_\u010cupkovi\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Shagari_Alleyne" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Roger_Brown_(basketball,_born_1950)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nerlens_Noel" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Erik_Copes" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Harrison_Barnes" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pat_Calathes" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dimitris_Kaklamanakis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bojan_Radeti\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Stanko_Bara\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dan_Ruland" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sebastien_Bellin" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Charles_Hardnett" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Stan_Love_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Oleksiy_Pecherov" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mo_Charlo" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Terence_Morris" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Robert_Upshaw" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Willie_Williams_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ray_Tolbert" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dallas_Lauderdale" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kevin_Love" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dale_Davis_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tadas_Klimavi\u010dius" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ken_Johnson_(basketball,_born_1962)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Scottie_Pippen" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sylvester_Norris_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Wayne_Sappleton" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Harold_Pressley" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mamadou_Diop_(basketball,_born_1993)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jon_Leuer" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pierre_Valmera" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/\u00d6mer_Yurtseven" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gregory_Kotrotsios" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sotiris_Sakellariou" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jo\u00e3o_Santos_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Devin_Oliver" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Alen_Omi\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bob_Netolicky" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Clyde_Lee" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Danuel_House" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Arijan_Komazec" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Curtis_Borchardt" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Fabricio_Oberto" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ken_Green_(basketball,_born_1959)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Alex_Hannum" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Yvon_Joseph" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lamar_Odom" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/BeeJay_Anya" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/A._C._Green" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Logan_Stutz" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Povilas_Butkevi\u010dius" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ken_Holmqvist" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dwayne_Collins" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Yancy_de_Ocampo" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Fran_Guerra" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Yi_Li_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Paul_George" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rudy_LaRusso" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/\u00c9ric_Struelens" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kyle_Wiltjer" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jarrid_Famous" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ryan_Richards" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bob_Houbregs" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Do\u011fukan_S\u00f6nmez" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Quincy_Ford" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/As\u0131m_Pars" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Eddie_Robinson_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Micka\u00ebl_Gelabale" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jim_Brewer_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/J\u00e9r\u00f4me_Mo\u00efso" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Evaldas_Kairys" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jon_Koncak" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/John_Bryant_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Konrad_Wysocki" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Austin_Steed" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gheorghe_Mure\u0219an" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Emilio_Kova\u010di\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Linton_Townes" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Marko_\u0160\u0107eki\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hamdi_Braa" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Marques_Bragg" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hakim_Warrick" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nusret_Y\u0131ld\u0131r\u0131m" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tony_Gugino" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jorge_Coelho" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Angelo_Caloiaro" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nouha_Diakit\u00e9" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Andrejs_Gra\u017eulis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bassel_Bawji" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Terry_Cummings" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sonny_Thoss" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Uri_Kokia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tolga_Ge\u00e7im" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dave_Popson" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ron_Livingstone" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Robert_Thomson_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ousmane_Camara" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mark_Sanford_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/\u0160ime_\u0160pralja" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Eric_Griffin_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Georgios_Karagkoutis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/George_McGinnis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jeff_Wilkins_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Radoslav_Nesterovi\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Israel_Guti\u00e9rrez" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Roberto_Due\u00f1as" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jabari_Smith" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bori\u0161a_Simani\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Travis_Knight_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Melsahn_Basabe" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Curtis_Rowe" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mickey_Johnson" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Uro\u0161_Lukovi\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rafael_Rull\u00e1n" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Joe_Wylie" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/\u00dcmit_Sonkol" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Andre_Patterson" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bangaly_Fofana" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Marcus_Vinicius_Toledo" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nikola_Jestratijevi\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cheikh_Samb" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Georgios_Bogris" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Britton_Johnsen" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Aaron_Gordon" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Malcolm_Thomas_(basketball,_born_1988)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jeff_Sanders" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hugues_Occansey" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Boban_Marjanovi\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Clarence_Grier" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tom_Kondla" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Grant_Hill" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ron_Mercer" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tom_Domako" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Japeth_Aguilar" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Berkay_Candan" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jason_Sasser" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rodney_Hood" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Brock_Motum" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bill_Stricker" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nikos_Oikonomou" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Michael_Andersen" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Predrag_Samard\u017eiski" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Luka_Don\u010di\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/J._J._Anderson" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Darington_Hobson" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kiril_Pavlovski" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Goo_Kennedy" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/John_Turek" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jason_Dixon" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/David_Simon_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tom_McMillen__Tom_McMillen__1" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hutch_Jones" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/John_Pritchard_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Charles_Tabet" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Wil_Carter" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/M._J._Rhett" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Richard_Hamilton_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lou_Roe" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Alex_Oriakhi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/\u00dcmit_T\u00fcrko\u011flu" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Karl-Anthony_Towns" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mac_Koshwal" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jasmin_Huki\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Michael_Sweetney" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Derrick_McKey" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ivo_Alfredo" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Deng_Gai" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chris_Owens_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dan_Godfread" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Phil_Hicks" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vyacheslav_Motorchuk" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jozo_Brki\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Darrin_Hancock" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bob_Greacen" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Milovan_Rakovi\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Danny_Granger" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Fabien_Paschal" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/JayVaughn_Pinkston" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Laurence_Ekperigin" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Trey_Thompkins" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Yunss_Akinocho" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Filip_Bako\u010d" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ken_Sears" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Trevor_Booker" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Drew_Gooden" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Alex_Liatsos" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kyle_Anderson_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Georgios_Printezis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Milo_Komenich" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Henry_James_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/LaVell_Blanchard" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Anthony_Bonner" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Efthymios_Tsakaleris" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sergei_Yuryevich_Panov" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Don_Ford" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Paul_Pierce" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bob_Pettit" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Isaac_Bonga" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ben_Clyde" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nemanja_Radovi\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gur_Shelef" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Orhan_Ayd\u0131n" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nik_Caner-Medley" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Burak_Yacan_Y\u00fcksel" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Maria_Stepanova" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gary_Wilkinson_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Metin_T\u00fcren" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/James_Reaves" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Phillip_Tabet" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gary_Bergen" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/\u017deljko_Zagorac" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Alexander_Volkov_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Montrezl_Harrell" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Miguel_Ruiz_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vladimir_Radmanovi\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Justin_Stommes" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Christian_Drejer" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Alex_Kirk" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Stanley_Johnson_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jesse_Arnelle" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dragan_Tarla\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ron_Johnson_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Swede_Halbrook" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Qyntel_Woods" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jonathan_Dubas" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nicolas_de_Jong" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vitalis_Chikoko" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ivan_Buva" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jeff_Turner" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nikola_lukic" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Alexander_Lokhmanchuk" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Marko_Simonovi\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jamal_Mashburn" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kedrick_Brown" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nikola_Dragovi\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lee_Jong-hyun_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ronalds_Za\u0137is" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Brad_Sellers" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jim_Palmer_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Raven_Barber" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Matti_Nuutinen" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Keith_Askins" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Okaro_White" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Arvid_Kramer" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/M\u0101rti\u0146\u0161_Meiers" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mihajlo_Arsoski" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bonel_Balingit" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gavin_Schilling" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Darnell_Lazare" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nick_Collison" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Slavko_Kotnik" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Maurice_Lucas" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Marty_Byrnes" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/James_Southerland" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Du\u0161ko_Buni\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Martell_Webster" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Michael_McDonald_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dainius_Adomaitis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Zaid_Abbas" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dave_Sorenson" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lawrence_Funderburke" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Len_Bias" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Shareef_Abdur-Rahim" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Raymar_Morgan" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Luol_Deng" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ivan_Batur" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Laurence_Bowers" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gracin_Bakumanya" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lior_Eliyahu" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Reggie_Hanson" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Charles_Smith_(basketball,_born_1965)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Randolph_Mahaffey" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jason_Love_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Joe_Ingles" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/O\u011fuz_Sava\u015f" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tom_Riker" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Clifford_Ray" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mouhamed_Sene" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Miroslav_Todi\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Alvin_Jones" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Aleksandar_Petrovi\u0107_(basketball,_born_1987)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Antti_Nikkil\u00e4" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vlad_Moldoveanu" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kostas_Ezomo" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Fragiskos_Alvertis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Valeri_Tikhonenko" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jan_Jagla" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Slavko_Vrane\u0161" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Richard_Washington" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mate_Skelin" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Marcin_Gortat" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rade_Zagorac" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Thomas_Robinson_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Marshall_Brown_(basketball,_born_1985)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kiki_Vandeweghe" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Trajko_Rajkovi\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Maurice_Stokes" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/LeRon_Ellis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Henk_Norel" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Du\u0161an_Vuk\u010devi\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Anatoly_Kashirov" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jordan_Mickey" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Antanas_Kavaliauskas" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/St\u00e9phane_Ostrowski" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Darrell_Harris" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/John_Tofi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vukota_Pavi\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/A._J._Bramlett" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Braeden_Anderson" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Michael_Kidd-Gilchrist" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Horacio_Llamas" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Wes_Unseld" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Armen_Gilliam" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Valdas_Vasylius" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Herb_Scherer" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jim_Nolan_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chad_McKnight" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Martin_M\u00fc\u00fcrsepp" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Luka_Bogdanovi\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Petar_Popovi\u0107_(basketball,_born_1979)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Orlando_Phillips" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jack_Cooley" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Marcelinho_Machado" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jos\u00e9_\u00c1ngel_Antelo" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kaspars_B\u0113rzi\u0146\u0161" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Brendan_Haywood" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jason_Cain" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sean_Labanowski" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Abdul_Jeelani" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/DeAndre_Daniels" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Daniel_Mayr" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/John_Trapp_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/\u00c1ngel_Garc\u00eda_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Marquise_Simmons" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bill_Newton_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jerry_Harper" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nenad_\u010canak_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mychal_Thompson" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Greg_Kite" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kevin_Garnett" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Terrance_Roberson" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ivan_Ramljak" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kwame_Brown" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Zach_Randolph" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Brandon_Hunter" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Karl_Malone" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Justino_Victoriano" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sviatoslav_Mykhailiuk" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Roscoe_Smith" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Joakim_Kjellbom" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chris_Christoffersen" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Patrick_McCaw" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Larry_Demic" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Eren_Beyaz" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Andreas_Schreiber" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Eric_Buckner" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kelly_McCarty" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bob_Elliott_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pekka_Markkanen" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jawann_Oldham" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jamie_Vanderbeken" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Blake_Griffin" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Craig_Dykema" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Julius_Nwosu" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Simo_Atanackovi\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Reggie_Bullock" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rod_Knowles" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jordan_Williams_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Aleksandar_Andrejevi\u0107_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Neil_Johnston" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Brice_Vounang" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Festus_Ezeli" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sabahudin_Bilalovi\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Andreas_Pelekoudas" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lindsay_Taylor" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mihailo_Radunovi\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Yinka_Dare" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Germ\u00e1n_Gabriel" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Marko_Jari\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Toma\u017e_Bol\u010dina" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Michael_Smith_(basketball,_born_1972)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Assem_Marei" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kleggie_Hermsen" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Alex_Poythress" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nikola_Radulovi\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nigel_Hayes" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Justin_Williams_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jerry_Newsom" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Erwin_Mueller" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Caldwell_Jones" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Walt_Bellamy" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/George_E._Johnson_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cedric_Ball" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dan_Werner" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Stephen_Hoare" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Stevan_Milo\u0161evi\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mark_Hendrickson__Mark_Hendrickson__1" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Travis_Wear" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Art_Long" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Paul_Silas" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Leonidas_Kaselakis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Arsalan_Kazemi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Levon_Kendall" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dave_Hoppen" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ege_Arar" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Greg_Ballard_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Razija_Mujanovi\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cozell_McQueen" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Djibril_Kante" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mickell_Gladness" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tom\u010do_Sokolov" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bruce_Bowen" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gerald_Wallace" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mikki_Moore" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vernon_Goodridge" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rony_Seikaly" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Boris_Bara\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mokhtar_Ghyaza" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Antonis_Fotsis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Richard_Rellford" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Olumide_Oyedeji" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kyle_Korver" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nate_Thurmond" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Zeb_Cope" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ben_Wallace" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jereme_Richmond" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jeff_Withey" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kendal_Pinder" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bill_Wennington" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Neal_Walk" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/J._J._O'Brien" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Guy_Pnini" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Albert_Miralles" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Terrell_Bell_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dylan_Page" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Brian_Beshara" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mehmet_Okur" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jim_McIlvaine" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ond\u0159ej_Balv\u00edn" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Wu_Tai-hao" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Reggie_Slater" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tai_Wesley" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Justas_Sinica" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ethan_Wragge" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lamont_Barnes" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Marcus_Relphorde" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dusty_Rychart" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Babacar_Camara" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Moritz_Wagner_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sonny_Dove" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Patrick_Eddie" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jason_Cipolla" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dejan_Koturovi\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Strahinja_Milo\u0161evi\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jad_Bitar" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Julian_Boyd_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Michael_Ruffin" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bob_Kauffman" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bernard_Toone" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Semyon_Antonov" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ruben_Boumtje-Boumtje" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Damjan_Rude\u017e" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Deron_Washington" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kami_Kabangu" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/David_Benoit_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/C._J._Kupec" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gatis_Jahovi\u010ds" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jim_Rowinski" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jaak_Lipso" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bennie_Swain" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Marcos_Mata" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Roy_Rogers_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Don_Reid_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Theron_Smith" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Shawn_James" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/John_Henson_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tracy_Murray" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Shane_Edwards_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Branislav_\u0110eki\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Venson_Hamilton" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Samaki_Walker" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ben_Coleman_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Richard_Petru\u0161ka" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Andrea_Crosariol" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Elmore_Morgenthaler" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/John_Paul_Erram" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Darius_Dimavi\u010dius" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ned\u017ead_Sinanovi\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Taylor_Coppenrath" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Matt_Steigenga" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cliff_Alexander" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jon_Jaques" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jimmy_Carruth" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Diamond_Stone" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jonathan_Kale" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Craig_Shelton" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Antonio_Granger" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nobel_Boungou_Colo" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Alison_Bales" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Christian_Standhardinger" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Joe_Trapani" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Maurice_Sutton" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Yannick_Driesen" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kevin_Jones_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Justin_Knox" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Seth_Doliboa" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bryan_Davis_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Paul_Rees_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Milenko_Tepi\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Austin_Nichols_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/David_Robinson_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Thomas_Kottas" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jos\u00e9_Fabio" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Arman_Zangeneh" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Obinna_Ekezie" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sotirios_Manolopoulos" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cedric_Lewis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dean_Tolson" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Spencer_Dunkley" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dennis_Hamilton" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Micheal_Eric" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dikembe_Mutombo" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/T._J._Cummings" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Robert_Traylor" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dave_Robisch" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Filip_Kraljevi\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lawrence_Roberts_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Th\u00e9rence_Mayimba" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Angelo_Gigli" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dave_Scholz" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Shawn_Daniels" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Stavros_Toutziarakis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ray_Felix" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Keith_Tower" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dwayne_Jones_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Andrew_Nicholson_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Argiris_Papapetrou" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dick_Ricketts" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Livio_Jean-Charles" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Derrick_Brown_(basketball,_born_1987)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Patrick_Patterson_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lawrence_Boston" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Abdul_Shamsid-Deen" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sampson_Carter" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Andre_Drummond" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Deyonta_Davis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Luc_Longley" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Stojan_Gjuroski" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/K\u0161y\u0161tof_Lavrinovi\u010d" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jim_Neal" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sean_May" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Billy_Thompson_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Marlou_Aquino" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Marcus_Eriksson_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ali_Demi\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Derek_Cooke" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ben_Simmons" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Strahinja_Mi\u0107ovi\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rahshon_Turner" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nick_Young_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ivica_Jurkovi\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Luc_Mbah_a_Moute" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chris_Bosh" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sean_Rooks" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/B._B._Davis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kaleb_Tarczewski" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Brett_Vroman" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kerem_\u00d6zkan" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mitch_McGary" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Orlando_S\u00e1nchez_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Shaun_Livingston" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bruno_Boin" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Oct\u00e1vio_Magoli\u00e7o" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Byron_Mullens" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Randy_Duck" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Fred_Gentry" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/J._R._Reid" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Laimonas_Kisielius" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Wojciech_Myrda" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dave_Gunther" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Julian_Vaughn" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rick_Fox" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bob_Ferry" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jimmie_Baker_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Aron_Baynes" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jack_Coleman_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/John_Fairchild" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Buck_Johnson" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tom\u00e1\u0161_Satoransk\u00fd" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lucas_Steijn" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Edgar_Jones_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ira_Terrell" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sam_Dekker" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Robin_Smeulders" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vladan_Vukosavljevi\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kawhi_Leonard" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bob_Spessard" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Shaun_Pruitt" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Michael_Stewart_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Art\u016bras_Masiulis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Claude_Gregory" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kris_Joseph" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Yasseen_Musa" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/John_Smith_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/\u017darko_\u010cabarkapa" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Zhou_Peng_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jeremiah_Massey" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Joel_Przybilla" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/John_%22Hot_Rod%22_Williams" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Matja\u017e_Smodi\u0161" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Joe_Burton_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Aleksandar_Raduki\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sam_Smith_(basketball,_born_1944)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tyler_Zeller" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Joel_Bolomboy" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bismack_Biyombo" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nathan_Peavy" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mario_Austin" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Viacheslav_Kravtsov" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jaleel_Cousins" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bob_Boozer" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Stromile_Swift" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Zoran_Jovanovi\u0107_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Paul_Zipser" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Damir_Latovi\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jim_Fritsche" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Juan_Mendez_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Garrick_Sherman" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jason_Kapono" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/John_Williams_(basketball,_born_1966)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Randal_Falker" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Alpha_Kaba" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Carlos_Mat\u00edas_Sandes" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dwayne_Bacon" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hank_Finkel" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ken_Johnson_(basketball,_born_1978)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/George_Lynch_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hakeem_Olajuwon" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tauras_Jog\u0117la" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Happy_Hairston" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Alex_Jensen" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/John_Shurna" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Anton_Kazarnovski" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Saulius_Kulvietis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Owen_Klassen" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Stefan_Wessels_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Brian_Davis_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sofoklis_Schortsanitis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kim_Hughes_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Phil_Hubbard" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lionel_Simmons" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Efthimios_Rentzias" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Marko_Teji\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Anthony_Vroblicky" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Delonte_Holland" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Joshua_Smith_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mark_Workman" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jurica_Golemac" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Damone_Brown" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Brad_Branson" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Darren_Phillip" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/LaRue_Martin" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Michael_Dunigan" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Brandon_Penn" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Anas_Osama_Mahmoud" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bojan_Tadi\u0107_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bas_Veenstra" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Andrew_DeClercq" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Diamantis_Slaftsakis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Winston_Shepard" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bob_Nash_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Slobodan_Mihajlovski" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tarvis_Williams" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Casey_Sanders" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Larry_Bergh" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Stefano_Rusconi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lonnie_Lynn" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Steve_Hawes" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/C._J._Giles" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Courtney_Sims" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Will_Perdue" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cliff_Robinson_(basketball,_born_1960)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kerry_Boagni" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/H\u00e9ctor_Romero" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Astan_Dabo" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Walter_Sharpe" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Isaiah_Philmore" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Scott_Morrison_(basketball_player)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lavoy_Allen" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ricky_Ledo" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ryan_Kelly_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jay_Murphy" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ron_Crevier" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ray_Scott_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tom_Owens" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jannik_Freese" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Darren_Morningstar" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Calvin_Booth" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Greg_Kelser" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kaloyan_Ivanov" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Stefan_Djordjevi\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mike_Lynn_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ruphin_Kayembe-Tshiabu" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ayman_Adais" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Liz_Cambage" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tim_Breaux" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sharif_Fajardo" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Zvonko_Buljan" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Coby_Dietrick" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Daichi_Taniguchi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jim_Eakins" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mark_Landsberger" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Khris_Middleton" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Georgi_Glouchkov" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Brett_Wheeler" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tom_Workman" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jerome_Beasley" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kenyon_Jones_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Greg_Howard_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Richard_Solomon_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Georgios_Papagiannis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Henry_Ellenson" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Larry_Staverman" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lucas_Nogueira" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dmitry_Korshakov" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pavel_Hou\u0161ka" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ryan_Bowen" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mamadou_Diarra" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tim_Burroughs" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Anthony_Tucker" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Edrice_Adebayo" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Matthew_Bryan-Amaning" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tornike_Shengelia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Luther_Rackley" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chris_Moss" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chris_Commons_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mike_Peplowski" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Daniel_Miller_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Keith_Lee" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Walt_Davis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Brandon_Bowman" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Anthony_Fernandez" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Guido_Gr\u00fcnheid" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Neil_Fingleton" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Al_Henry" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Travele_Jones" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Viktor_Sanikidze" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Simas_Jasaitis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ralph_Drollinger" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Felizardo_Ambr\u00f3sio" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Thijs_Vermeulen" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Richard_Freudenberg" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Talat_Alp_Altunbey" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Marc_Gasol" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/John_Dickson_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Junior_Etou" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kent_Benson" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Yassin_Idbihi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/An\u017eejs_Pase\u010d\u0146iks" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bill_Campion" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kurt_Nimphius" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kenton_Edelin" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Blerim_Mazreku" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jermaine_Bucknor" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ivan_\u017digeranovi\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Andr\u00e9_Roberson" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tony_Gaffney" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Brian_Skinner" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Adam_Chubb" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Caner_Erdeniz" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Brad_Miller_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Egehan_Arna" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/John_Brown_(basketball,_born_1992)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/TaShawn_Thomas" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ed_Manning" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Michael_Bauer_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ratko_Varda" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jim_Ligon" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Darius_Miles" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Antoine_Wright_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Walter_McCarty" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ioannis_Karathanasis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Steve_Mix" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ben_Poquette" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Brandon_Sebirumbi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Charlie_Paulk" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dwight_Powell" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Brandon_Ingram" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jeff_Green_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ruslan_Pateev" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sun_Yue_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chris_Wilcox" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Torgeir_Bryn" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Zlatko_Gocevski" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Maurice_Ndour" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Zhou_Qi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nikola_Joki\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pat_Durham" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Du\u0161an_Stankovi\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ante_Ma\u0161i\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Damen_Bell-Holter" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kermit_Washington" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tracey_Beatty" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bill_Garnett" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dave_Feitl" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Richard_Dumas" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jim_McDaniels" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ed_O'Bannon" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nikola_Markovi\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Linos_Chrysikopoulos" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Alexandros_Varitimiadis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mike_Davis_(basketball,_born_1956)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Wang_Zhizhi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Reggie_Lewis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Aaron_Jones_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Luther_Wright" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nikola_Vu\u010durovi\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dwight_Jones_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/LaQuinton_Ross" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mike_Maloy" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Stipe_Modri\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Eugene_Spates" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Petar_Radoji\u010di\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kenny_Gattison" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Prodromos_Dreliozis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Travis_Taylor_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dontonio_Wingfield" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ron_Behagen" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Richard_Fr\u00f6hlich" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mike_Champion_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Alvin_Scott" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rafi_Reavis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Serta\u00e7_\u015eanl\u0131" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Brian_Alexander_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Berni_Tamames" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kevin_S\u00e9raphin" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tyren_Johnson" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bob_Harris_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chucky_Brown" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Clive_Weeden" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Darko_Balaban" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kenny_Adeleke" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Johnny_Rogers" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/DeSagana_Diop" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Antonio_Lang" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nika_Metreveli" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Deron_Feldhaus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Karolis_Gu\u0161\u010dikas" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pierre_Jallow" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Audie_Norris" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Eric_Schraeder" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mark_Davis_(basketball,_born_1973)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dave_Lee_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Radisav_\u0106ur\u010di\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nathaniel_Clifton" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bob_Dykstra" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Heiko_Niidas" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Valdel\u00edcio_Joaquim" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Frank_Drmic" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bill_Cartwright" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jim_Springer" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/George_Ackles" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Scott_Burrell" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ioannis_Papapetrou" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jim_Lampley_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Aidin_Nikkhah_Bahrami" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Guy_Williams_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Walter_Palmer_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Alex_Galindo" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Brad_Lohaus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Joosep_Toome" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Amida_Brimah" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Shawne_Williams" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/John_Amaechi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Reggie_Johnson_(basketball,_born_1989)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Robin_Benzing" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Davonn_Harp" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cornelius_Cash" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hameed_Kashif" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Wenyen_Gabriel" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Joe_Alexander" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Richie_Edwards_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/George_Trapp" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/James_Augustine" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Derrick_Caracter" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Daniel_Faris" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vernon_Macklin" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Marvin_Williams" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ben_Bentil" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Yancy_Gates" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mindaugas_\u017dukauskas" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Michael_Lee_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Devin_Green" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pau_Gasol" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nkem_Ojougboh" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dyron_Nix" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Shawn_Long" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tony_Koski" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cedric_Henderson_(basketball,_born_1965)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Warren_Carter_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Matt_Howard" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ron_Dunlap" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kostas_Vasileiadis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Justin_Hamilton_(basketball,_born_1990)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rudy_Hackett" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Austin_Dufault" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hank_Whitney" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Taylor_Griffin" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jim_Gregory_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Anthony_Pelle" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/\u00c1lex_Mumbr\u00fa" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Robert_Carter_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jasim_Mohamed" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chinanu_Onuaku" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ram\u00f3n_Clemente" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Aaron_Cel" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bevo_Francis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dennis_Mims" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sotiris_Katoufas" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Greg_Monroe" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Alekos_Petroulas" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Andrija_\u017di\u017ei\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jeff_Dowdell" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/\u010cedomir_Vitkovac" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Art_Hillhouse" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Slim_Wintermute" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Amir_Johnson" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kleon_Penn" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dejan_Toma\u0161evi\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vince_Hunter" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nicolas_Batum" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Beau_Beech" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gino_Lanisse" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bryon_Russell" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Amjyot_Singh" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Alex_Stivrins" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mel_Daniels" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vladimir_\u0160timac" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Guerschon_Yabusele" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Carl_Herrera" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nicol\u00f2_Melli" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Corey_Brewer" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Aerick_Sanders" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Diego_Osella" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Roshown_McLeod" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Scott_Roth" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Petros_Noeas" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mike_Morrison_(basketball,_born_1989)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Elton_Brown_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kevin_Willis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nikola_Pekovi\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/G\u00ebzim_Morina" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Derrick_Alston" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Garrett_Jackson" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Major_Wingate" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dan_Issel" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/James_Gist" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Randy_White_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Barry_Nelson_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Slobodan_Ago\u010d" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Clint_Capela" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pete_Williams_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Udonis_Haslem" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Maurice_Shaw" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vladimir_Boisa" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Stefan_Glogovac" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Juan_Palacios_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Marko_Radovanovi\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Max_van_Schaik" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nikola_Vu\u010devi\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Georges_Niang" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Petri_Heinonen" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nasos_Galakteros" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Alexander_Belov" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jonathan_Kerner" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ersan_\u0130lyasova" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ricardo_Ratliffe" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Joe_Vogel" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cezary_Tryba\u0144ski" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mason_Plumlee" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Carmelo_Anthony" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bison_Dele" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Christian_Watford" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Derek_Strong" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Michael_Cobbins" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Willie_Anderson_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Greg_Oden" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ricky_Blanton" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Isaiah_Austin" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dragan_Zekovi\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sitapha_Savan\u00e9" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Alexander_Zakharov_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Marcus_Goree" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Aleksa_Popovi\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Petr_Cornelie" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jordi_Trias" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jonah_Bolden" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Julian_Wright" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jim_Davis_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bora_Pa\u00e7un" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Fr\u00e9jus_Zerbo" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nikola_\u010cvorovi\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bryant_Reeves" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ian_Hummer" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Willie_Reed" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kenny_Payne" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bill_Willoughby" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Geoff_Crompton" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vaidas_\u010cepukaitis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Steve_Green_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kenny_Green_(basketball,_born_1967)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Samuel_Ouedraogo" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Steven_Hunter" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rolands_Freimanis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bojan_Trajkovski" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Fr\u00e9d\u00e9ric_Adjiwanou" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bus_Whitehead" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Loren_Meyer" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cameron_Moore_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Doug_Edwards" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rub\u00e9n_Wolkowyski" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Isaiah_Armwood" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kenyon_Martin" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cheikh_Mbodj" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hans_Brase" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jaka_Brodnik" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Aleksandar_Kalanj" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Michail_Misunov" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lari_Ketner" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Donald_Hodge_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Uwe_Blab" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kristijan_Milakovi\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Josh_Ritchart" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ronald_Dupree" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gary_McGhee" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sharone_Wright" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gary_Forbes" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Wayne_Molis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Wally_Borrevik" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Shawn_Marion" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jermaine_Blackburn" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nenad_Ziv\u010devi\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hilton_Armstrong" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lawrence_Bonus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rich_King_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Al_Carlson_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Yanick_Moreira" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jeff_Ruland" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Johnny_Taylor_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Garth_Joseph" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ronny_Turiaf" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sigurdur_Thorsteinsson" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Taj_Gibson" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gordon_Hayward" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dragan_Doj\u010din" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/DeVon_Hardin" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kaniel_Dickens" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ivan_McFarlin" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cameron_Bairstow" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Stefan_Popovski-Turanjanin" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jarell_Martin" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Aleksandar_Yanev" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Thierry_Rupert" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Marc_Jackson" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nikola_Ili\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ike_Nwankwo" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Stefan_Jankovi\u0107_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Shawn_Jones_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Art\u016bras_Valeika" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bob_Burrow" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Arnie_Risen" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Al_Jefferson" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nuno_Mar\u00e7al" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/James_Mays" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vlantimir_Giankovits" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Steve_Panos" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Brandon_Costner" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tom_Boerwinkle" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sidney_Wicks" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gyno_Pomare" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Caron_Butler" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Damian_Kulig" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Darrius_Garrett" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Eric_Mobley" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Andrejs_\u0160e\u013cakovs" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Antoine_Rigaudeau" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Desmond_Penigar" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Alessandro_Frosini" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ike_Diogu" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cadillac_Anderson" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chris_Singleton_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sean_Denison" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Andrew_Vlahov" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/David_Blu" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pavel_Korobkov" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sean_Banks" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Brian_Martin_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Justin_Sears" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bryant_Dunston" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/George_Zidek" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Don_Rehfeldt" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/De'Mon_Brooks" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gil_Mossinson" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Scott_Meents" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Marko_Brki\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Derrick_Nix" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ira_Harge" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dennis_Horner" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Peter_Cornell" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tony_Parker_(basketball,_born_1993)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ronnie_Grandison" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Samardo_Samuels" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Carl_Landry" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Leo_Rautins" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/D._J._White" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jeronne_Maymon" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Samuel_Dalembert" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Eddie_Miller_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Andrew_Smith_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chris_Richard_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nikita_Shabalkin" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/David_Butler_(basketball,_born_1966)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Branko_Jorovi\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Moala_Tautuaa" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Channing_Frye" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Felton_Spencer" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rosco_Allen" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Magnum_Rolle" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/James_Ray_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gregor_Fu\u010dka" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pete_Darcey" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mirza_Begi\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tai_Wynyard" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bob_McAdoo" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Panagiotis_Vasilopoulos" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Garrett_Stutz" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ricardo_Guill\u00e9n" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Stevan_Na\u0111feji" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Luka_Babi\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Andrae_Patterson" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pops_Mensah-Bonsu" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Josh_Davis_(basketball,_born_1980)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Saulius_Kuzminskas" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Marko_\u0160pica" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rabeh_Al-Hussaini" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vangelis_Margaritis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gordan_Giri\u010dek" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Milan_Milo\u0161evi\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Larry_Sanders_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Paul_Miller_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Shawnelle_Scott" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ido_Kozikaro" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pavel_Antipov" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jacob_Blankenship_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jamie_Watson_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Matt_Bonner" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Randolph_Keys" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Haluk_Y\u0131ld\u0131r\u0131m" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Frank_Hassell" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tom_Black_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Devin_Booker_(basketball,_born_1991)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gary_Trent" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Maurice_Taylor" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Fr\u00e9d\u00e9ric_Weis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ashton_Pankey" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chad_Gallagher" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mike_Jackson_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Miralem_Halilovi\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kenrick_Zondervan" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jawad_Williams" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Steve_Hamer" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Art\u016bras_Karni\u0161ovas" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Alfa_Diallo" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rich_Yonakor" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mark_Randall_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ioannis_Bourousis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Velimir_Radinovi\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Attarius_Norwood" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Aaron_Anderson_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mark_McNamara" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Aleksandar_Na\u0111feji" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Solomon_Hill_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Malcolm_Mackey" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Edo_Muri\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bernard_King" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kosuke_Takeuchi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Paul_Cooper_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Christian_Laettner" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Michale_Kyser" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tony_Woods_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Robert_Riki\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Steve_Wachalski" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Albert_Burditt" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jimmy_Baxter_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tom_Hammonds" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tony_Meier" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jerry_Beck_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Otto_Porter" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Marvin_Webster" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Marko_Tu\u0161ek" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ron_Anderson_(basketball,_born_1958)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Todd_Fuller" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Marijonas_Petravi\u010dius" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Joseph_Jones_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Stacey_Augmon" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dave_Magley__Dave_Magley__1" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hamady_N'Diaye" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jerai_Grant" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/I\u00f1aki_de_Miguel" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jaylen_Brown" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Andrey_Desyatnikov" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/L\u00e9onardo_Meindl" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Carlos_Rogers_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Fran_V\u00e1zquez" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Berend_Weijs" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Zydrunas_Ilgauskas" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Serge_Ibaka" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rodions_Kurucs" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Doug_Roth" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/William_Coleman_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Curtis_Perry" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/John_Lambert_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Michael_Ansley" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jay_Vincent" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ed_Macauley" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Don_Meineke" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Deji_Akindele" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mario_Dela\u0161" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Paul\u00e3o_Prestes" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Will_McDonald" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vanja_Plisni\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mehdi_Cheriet" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Skal_Labissi\u00e8re" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chick_Halbert" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Paul_Griffin_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vangelis_Sklavos" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Michael_Fraser_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Miha_Zupan" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Yakhouba_Diawara" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Marcus_Lee" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Clemon_Johnson" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/James_Hardy_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bill_Henry_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kenny_Carr" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nedim_Y\u00fccel" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Josh_Howard" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jim_Ware_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mark_West_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Keaton_Nankivil" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Leon_Smith_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chris_Jent" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Darvin_Ham" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kenneth_Faried" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kim_Anderson_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Virginijus_Pra\u0161kevi\u010dius" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ivan_Rabb" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lamayn_Wilson" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bob_Hopkins" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lew_Hitch" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Adam_Keefe_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jesse_Branson" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Orlando_Lightfoot" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Swen_Nater" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ante_Grgurevi\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Matt_Stainbrook" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Michalis_Kakiouzis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Adam_Kemp" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Toni_Bizaca" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mindaugas_Timinskas" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rico_Harris" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Miguel_Miranda_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jalen_Rose" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pat_Cummings" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Goran_Grbovi\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ha_Seung-jin" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sam_Thompson_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Terrance_Ferguson" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Akil_Mitchell" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Craig_Smith_(basketball,_born_1983)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lamar_Green" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Matt_Aitch" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Glenn_Robinson_III" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jan_Mart\u00edn" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vladimir_Zujovi\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/\u00c9dgar_Vicedo" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Samuel_Haanp\u00e4\u00e4" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kendall_Gray" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Granville_Waiters" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Steve_Downing" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Robert_Gilchrist_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dime_Tasovski" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bill_Russell" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sam_Timmins" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kris_Lang" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Miljan_Pupovi\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cedric_Simmons" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sim_Bhullar" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Carmelo_Antrone_Lee" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dimitrios_Marmarinos" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lazaros_Papadopoulos" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mart\u00edn_Buesa" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Henry_Wilson_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lionel_Billingy" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ryan_Broekhoff" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cameron_Clark_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Eric_McWilliams" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Efe_Aydan" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Joonas_J\u00e4rvel\u00e4inen" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Melvin_Turpin" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kenny_Frease" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Melvin_Ejim" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jackie_Moreland" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jusuf_Nurki\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Will_Felder" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ville_Kaunisto" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Len_Elmore" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Byron_Jones_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Romeo_Travis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/\u00d6mer_\u00dcnver" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Charles_Rhodes" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nils_Mittmann" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Andy_Ogide" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mindaugas_Kup\u0161as" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jovica_Kecman" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Peter_van_Paassen" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Darnell_Hillman" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Milutin_Aleksi\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tim_Blue" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Carl_Kilpatrick" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Trevor_Ariza" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vern_Mikkelsen" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mike_New" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rich_Peek" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Fred_Hetzel" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ali_Haidar_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dante_Cunningham" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dimitrios_Mavroeidis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Davor_Lamesic" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kosta_Koufos" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nemanja_Dangubi\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Micah_Blunt" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Boban_Jankovi\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Serhiy_Lishchuk" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/James_Michael_McAdoo" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/John_Brownlee_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Russell_Cross" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Denis_Agre" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Maurice_Harkless" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Michalis_Perrakis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Marcus_Mann_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Younes_Idrissi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jamal_Olasewere" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Josh_Huestis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pete_Cross" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Manute_Bol" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Patrick_Femerling" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Spencer_Haywood" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Marc_Fern\u00e1ndez" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/O._D._Anosike" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jazwyn_Cowan" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Andrianos_Perdikaris" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Larry_Kenon" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Donnell_Harvey" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Anthony_P\u00e9rez_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ekpe_Udoh" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Fernando_Raposo" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sam_Bowie" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nate_Bowman" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nnanna_Egwu" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jakob_P\u00f6ltl" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Doug_Sims" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Luka_Kraljevi\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rickey_Brown" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Fab_Melo" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ryan_Pettinella" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Justise_Winslow" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dave_Bustion" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Emre_Bayav" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Javon_McCrea" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ioannis_Athanasoulas" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vladimir_Tica" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ermal_Kuqo" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Marreese_Speights" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Christian_Mar\u00e5ker" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Milo\u0161_\u0160akota" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jon_Horford" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gene_Williams_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bojan_Dubljevi\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/James_Johnson_(basketball,_born_1987)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Marcus_Lewis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Blake_Schilb" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Paul_Lindemann" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gus_Gerard" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Andre_Moore" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Grigorij_Khizhnyak" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Calvin_Garrett" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Quincy_Pondexter" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Eddy_Curry" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kenneth_Lyons" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mark_Alarie" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jordan_Hill_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ryan_Rossiter" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pierre-Antoine_Gillet" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Walter_Dukes" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bob_Bedell" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/George_Wilson_(basketball,_born_1942)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mark_Bradtke" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Darko_Mili\u010di\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vojkan_Krgovi\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/K\u0119stutis_\u0160e\u0161tokas" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kevinn_Pinkney" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kevin_Roberson_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Andr\u00e9s_Nocioni" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mason_Rocca" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lamont_Mack" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/DeAndre_Thomas" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ralph_Biggs" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bill_Spivey" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nemanja_Todorovi\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jim_Zoet" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/James_Jones_(basketball_player)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Robert_Parish" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Amara_Sy" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Fred_Roberts" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Eric_Moreland" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Slavko_Stefanovi\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tyler_Griffey" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dmitry_Flis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Luther_Green" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Reggie_Evans" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sam_Hoskin" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Arvydas_Sabonis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lifetu_Selengue" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dont\u00e9_Greene" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Giorgos_Kolokithas" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Connie_Dierking" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vuka\u0161in_Mandi\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Len_Kosmalski" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bob_Love" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pathman_Matialakan" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Travis_Outlaw" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Alexander_Johnson" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mirza_Teletovi\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Yuta_Watanabe" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jerald_Honeycutt" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gjorgji_Talevski" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mo_Ke" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dick_Cunningham" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Micha\u0142_Gabi\u0144ski" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ronnie_Brewer" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jerry_Baskerville" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mike_Wilkinson" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ragnar_Nathanaelsson" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rick_Mahorn" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sun_Mingming" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kevin_Tumba" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kevin_Duckworth" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bobby_Simmons" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Alex_Groza" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/\u00d3scar_Yebra" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Josip_Lovri\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Conner_Henry" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/David_Doblas" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jack_Sikma" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Junior_Burrough" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kimmo_Muurinen" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Brent_Wright" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kristaps_Porzi\u0146\u0123is" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ousmane_Barro" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Garfield_Smith" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Maksym_Korniyenko" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ond\u0159ej_Starosta" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jason_Jennings_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tomas_Masiulis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Skip_Thoren" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Alexander_K\u00fchl" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Caleb_Swanigan" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Anthony_Tolliver" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jordan_Vandenberg" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Uro\u0161_Nikoli\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Amit_Tamir" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lucio_Angulo" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Milenko_Veljkovi\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Devin_Gray" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Makhtar_N'Diaye_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Milt_Schoon" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bill_Robinzine" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nick_Weatherspoon" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ejike_Ugboaja" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jerome_Meyinsse" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dorian_Finney-Smith" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Denzel_Bowles" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Xavier_McDaniel" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kervin_Bristol" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gene_Wiley" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Antawn_Jamison" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Will_Sheridan" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lewis_Brown_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kevon_Looney" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Oriol_Paul\u00ed" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Charlie_Sitton" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dirk_Nowitzki" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Malik_Rose" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jaber_Rouzbahani" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Demetrius_Alexander" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Latavious_Williams" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lee_Shaffer" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Al_Horford" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Charles_Garc\u00eda" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Stephen_Lumpkins" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jon_Kreft" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Trey_Lyles" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Michael_Doleac" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Deng_Adel" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rod_Benson" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Daniel_Hamilton_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Julius_Erving" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tom_Scheffler" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Loy_Vaught" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bill_Allen_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Matt_Kingsley_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Amir_Sedighi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Georgios_Diamantakos" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Marcus_Vinicius_de_Souza" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Youssoupha_Fall" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Wendell_Alexis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Wayne_Chism" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Asko_Paade" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sam_Lacey" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nacho_Y\u00e1\u00f1ez" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dwight_Howard" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vlatko_\u010can\u010dar" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Patric_Young" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Artem_Klimenko" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chris_Porter_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dave_Meyers_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Scooter_McCray" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Viktor_Pankrashkin" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Joonas_Vaino" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Boubacar_Coly" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Petar_Raki\u0107evi\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Matt_Costello" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Juan_Antonio_Orenga" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Herbert_Hill_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chris_Wright_(basketball,_born_1988)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Raymond_Almazan" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/DeMar_DeRozan" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lee_Johnson_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Eric_Anderson_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kevin_Knox_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Louis_Labeyrie" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Alton_Ford" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Arinze_Onuaku" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lovro_Mazalin" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tyler_Smith_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Zelmo_Beaty" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Todor_Ge\u010devski" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Joel_Freeland" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mohamed_Kon\u00e9_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Leon_Powe" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Thomas_Welsh_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Joe_Arlauckas" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dejan_Kravi\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Andrea_Bargnani" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tom_Heinsohn" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Justin_Jackson_(basketball,_born_1990)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Francisco_Elson" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tim_Duncan" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lamont_Hamilton" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tim_Abromaitis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Guy_Morgan_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Walter_Berry_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Buila_Katiavala" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Maceo_Baston" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Srdjan_Stankovi\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Leo_Mainoldi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bill_Walton" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Andronikos_Gizogiannis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Noah_Vonleh" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/LaRon_Dendy" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/\u017dygimantas_Jonu\u0161as" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jaleel_Roberts" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/J._J._Avila" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Yekaterina_Lisina" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Christos_Tsekos_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lee_Knorek" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Luc-Arthur_Vebobe" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jason_Washburn" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jamar_Abrams" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Anthony_Frederick" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mike_Farmer" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Fernando_Romay" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rafael_Addison" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Antonio_Meeking" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Du\u0161ko_Savanovi\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Fri\u00f0rik_Erlendur_Stef\u00e1nsson" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ransford_Brempong" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Manolis_Koukoulas" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sava_Le\u0161i\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Paulius_Jank\u016bnas" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Brandon_Brown_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Georgios_Dedas" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Marvin_Williams_(basketball,_born_1993)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Noble_Jorgensen" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Meyers_Leonard" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Brian_Quinnett" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Joey_Dorsey" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chris_Taft" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/DeWitt_Menyard" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Reginald_Becton" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/\u0110uro_Ostoji\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ashante_Johnson" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rafael_Hettsheimeir" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Butch_Booker" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mike_Hrabak" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kevin_Freeman_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jonathan_Bender" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Steve_Ross_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Edin_Bav\u010di\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Wilbur_Kirkland" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/John_Beasley_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Xu_Yong_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dean_Garrett" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Victor_Khryapa" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bob_Armstrong_(basketball,_born_1933)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jeremy_Evans" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tomas_Urbonas" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cole_Aldrich" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Johnathan_Williams" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Eduardo_Hern\u00e1ndez-Sonseca" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Damian_Hollis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Du\u0161an_Risti\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dennis_Rodman" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Adam_Koch" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Christos_Saloustros" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Uvis_Helmanis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Steven_Hill_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Joe_Ruklick" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chase_Budinger" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Greg_Foster_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ron_Sanford" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tasos_Antonakis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Robin_Lopez" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Andrey_Zubkov" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Beka_Burjanadze" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jordan_Railey" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Isaac_Austin" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Casey_Shaw" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Malick_Badiane" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Li_Muhao" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gilvydas_Biruta" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Olden_Polynice" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Simas_Buterlevi\u010dius" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tyrone_Hill" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Valdas_Dabkus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Fahro_Alihodzic" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gary_Keller" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Paul_Millsap" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Omari_Gudul" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jeff_Nordgaard" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rich_Yunkus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/\u017darko_Paspalj" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jeff_Brown_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Zane_Tamane" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Alton_Lister" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Brian_Cusworth" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bill_Martin_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/David_West_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Reggie_Keely" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cole_Dickerson" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Richaun_Holmes" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ted_Kitchel" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Frank_Kaminsky" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Connie_Simmons" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Terry_Dischinger" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Eric_Leckner" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Taylor_Braun" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Joe_Fortenberry" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sean_Higgins_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Joe_Graboski" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Terence_Dials" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dorie_Murrey" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sa\u0161a_Vukas" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cevher_\u00d6zer" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chris_Booker_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dave_Thomas_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mindaugas_Katelynas" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Georgios_Tsiaras" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Marko_Mladjan" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Will_Hanley" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Malik_Sealy" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Elton_Brand" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kirk_Williams,_Jr." + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jeff_Ferguson_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Igor_Bijeli\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Esteban_Batista" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nikola_Pavlovi\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Abdel_Kader_Sylla" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/David_Laury" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ajou_Deng" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/James_Ennis_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nikola_Male\u0161evi\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Marcus_Williams_(basketball,_born_1986)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mike_Smith_(basketball,_born_1976)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Wilbert_Frazier" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Stew_Johnson" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hamed_Sohrabnejad" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Anthony_Avent" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bradley_Buckman" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Quincy_Treffers" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Greg_Ostertag" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Woody_Sauldsberry" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/James_Crawford_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/George_Evans_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Buck_Williams" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Asi_Taulava" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Margus_Metstak" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ed_Rains" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Deniz_K\u0131l\u0131\u00e7l\u0131" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Luis_Scola" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gilbert_Lao" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kevin_Martin_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mousa_Nabipour" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Randell_Jackson" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Toby_Knight" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Caio_Torres" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Landry_Fields" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Niels_Giffey" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kevin_Bleeker" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ioannis_Kouzeloglou" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Norm_Cook" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ed_Peterson" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Art\u016bras_Jomantas" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tommy_Burleson" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jim_Barnes_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Billy_Paultz" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lonnie_Kluttz" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jay_Bilas" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tiago_Splitter" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lloyd_Sharrar" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jonathan_Holmes_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dario_\u0160ari\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tim_Kamczyc" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Zaid_Al-Khas" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sam_Perkins" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Forrest_McKenzie" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Seth_Tuttle" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bob_Riley_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ike_Azotam" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Thomas_Koenis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Justin_Howard" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Zisis_Sarikopoulos" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Derek_Wilson_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Antonio_Harvey" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Edmond_Azemi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Martynas_Sajus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nick_Welch" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Stanislav_Tymofeyenko" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tadija_Dragi\u0107evi\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Colton_Iverson" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Noah_Dahlman" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Barry_Yates" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Teoman_Alibegovi\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ousmane_Cisse" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Damian_Jones_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Al_Harrington" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ike_Borsavage" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ron_Haigler" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Semih_Erden" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dani_D\u00edez" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bailey_Howell" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cavell_Johnson" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Reinar_Hallik" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jared_Dudley" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Earl_Cureton" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Abdel_Bouckar" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rodney_Blake_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kyle_Singler" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ivano_Newbill" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Alaa_Abdelnaby" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hamed_Haddadi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Matt_Haryasz" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Charles_Pittman_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tom_Barker_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bob_Pelkington" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ding_Yanyuhang" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Milija_Mikovi\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Logan_Vander_Velden" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Reggie_Moore" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/John_Coker_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Novica_Veli\u010dkovi\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Laurynas_Birutis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mike_Tobey" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mark_Acres" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bill_Dinwiddie" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/John_Olive" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vladimir_Ger\u00f3nimo" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bobby_Portis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dimitri_Kongbo" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Devin_Davis_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/\u017deljko_Rebra\u010da" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dave_Gambee" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Eric_Crookshank" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ken_Bannister" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/George_L._Johnson" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mark_Strickland" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Otis_Howard" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bla\u017e_Mahkovic" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Elden_Campbell" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nick_Vanos" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jure_Ritlop" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mihovil_Naki\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hern\u00e1n_Montenegro" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Predrag_Danilovi\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Adam_Hess" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Carlton_Aaron" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Marcel_Aarts" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Joji_Takeuchi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Brandon_Davies" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Killian_Larson" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Trevor_Wilson_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Erik_Meek" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bob_Woollard" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Serge_Zwikker" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kristo_Mangelsoo" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nikola_Jankovi\u0107_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Josh_A._Moore" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Soumaila_Samake" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mike_Ratliff" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pavel_Podkolzin" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Joe_Binion" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Milo\u0161_Borisov" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Erdin\u00e7_Balto" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kennedy_Meeks" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tom_Copa" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/T._L._Latson" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dan_Gadzuric" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cl\u00e1udio_Fonseca" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rashard_Griffith" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nemanja_Jelesijevi\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/J\u0101nis_Timma" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Benjie_Paras" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dan_Anderson_(basketball,_born_1943)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nemanja_Bjelica" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Johnny_Jones_(basketball,_born_1943)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Darius_Miller" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vince_Kelley" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Andrei_Fetisov" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ken_Norman" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ferran_Mart\u00ednez" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bekir_Yarang\u00fcme" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Clyde_Mayes" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tom_LaGarde" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dejan_Ivanov" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jim_Moran_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nick_Fazekas" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Adam_Parada" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Reggie_Smith_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/J._R._Koch" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Niels_Vorenhout" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Clark_Kellogg" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Paul_Shirley" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Erik_Murphy" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Carleton_Scott" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Danny_Ferry" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Josh_Harrellson" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Joakim_Noah" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nemanja_Djuri\u0161i\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Steve_Malovic" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jay_Carty" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chase_Fieler" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pavel_Ermolinskij" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Erazem_Lorbek" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Morris_Peterson" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ricky_S\u00e1nchez" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vassilis_Symtsak" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/M\u0101ris_Gulbis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Michael_Finley" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Alex_Len" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tomislav_Ru\u017ei\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dexter_Pittman" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/William_Bedford_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bo\u0161ko_Jovovi\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/DeMarre_Carroll" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ioannis_Georgallis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Marlon_Maxey" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ian_Mahinmi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Thomas_Jordan_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dimitrios_Charitopoulos" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nate_Fox" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ahmad_Nivins" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tim_Ohlbrecht" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Raitis_Grafs" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Damon_Williams" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jamil_Wilson" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/\u0130zzet_T\u00fcrky\u0131lmaz" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Scott_Padgett" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tyler_Wilkerson" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Oriol_Junyent" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chris_McCullough" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Steve_Smith_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Curtis_Sumpter" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Paul_Afeaki_Khoury" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Aurimas_Kie\u017ea" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jason_Lawson" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dan_McClintock" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ashraf_Rabie" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dino_Muri\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Randy_Denton" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Te\u00f3filo_Cruz" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Walt_Wesley" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Joe_Meriweather" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Robert_Sampson_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Paul_Sturgess_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Marcus_Kennedy" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Brandon_Wallace" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jermaine_O'Neal" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Geert_Hammink" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/James_Donaldson_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jahlil_Okafor" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Solomon_Alabi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Carlos_Boozer" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Wilson_Chandler" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rudy_Macklin" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Zach_Andrews" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Herv\u00e9_Lamizana" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sam_Mack" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Elton_McGriff" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sa\u0161a_Brati\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Evan_Eschmeyer" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Emir_Preld\u017ei\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bobby_Jones_(basketball,_born_1951)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tanoka_Beard" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dick_O'Neal" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ljubomir_Mladenovski" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Victor_Keyru" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Josh_Duinker" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Philipp_Schwethelm" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Anthony_Brown_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Marty_Conlon" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ayberk_Olmaz" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dimos_Dikoudis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Reggie_Hannah" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Christos_Petrodimopoulos" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Joe_Smith_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Charles_Oakley" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Robert_Curtis_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Miguel_Marriaga" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vladimir_Vuksanovi\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Maik_Zirbes" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Justin_Moss" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Glenn_Robinson" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Christophe_Beghin" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bob_Myers" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dwight_Davis_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vashil_Fernandez" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Michal_\u010cekovsk\u00fd" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Darren_Tillis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Anthony_Davis_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Harper_Williams" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bal\u0161a_Radunovi\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Renardo_Sidney" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Damian_Johnson_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mike_Novak" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vassilis_Kavvadas" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Scott_Hastings_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ater_Majok" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Raphiael_Putney" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Shawn_Glover" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Marvin_Barnes" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Steve_Lingenfelter" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Marcel_Jones_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Thon_Maker" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Endrit_Hysenagolli" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Derrick_Gervin" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Stuart_Gray_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jorge_Bryan_D\u00edaz" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Luis_Montero" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ken_Durrett" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Anderson_Varej\u00e3o" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Joe_Courtney_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gary_Turner_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tyler_Stone_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Marko_Maravi\u010d" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Boniface_N'Dong" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ken_Barlow_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Granger_Hall_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Aaron_McGhee" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mike_Phillips_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Darryl_Middleton" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mike_Vreeswyk" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lars_Hansen_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Marv_Roberts" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/John_Thomas_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kevin_Owens_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jonathan_Aka" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/\u017dygimantas_Sku\u010das" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Patrick_Ewing_Jr." + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bo\u017eo_\u0110umi\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Magi_Sison" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cedric_Maxwell" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Julius_Jucikas" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jerome_Kersey" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Eric_Campbell_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tim_Young_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Terry_Catledge" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Derrick_Byars" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Robert_Whaley" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ekene_Ibekwe" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Steve_Hayes_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dino_Meneghin" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Joel_Kramer" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Josh_McRoberts" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Aaron_James_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Aaric_Murray" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Greg_Stokes" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Doug_Thomas" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Toni_Dijan" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vic_Bartolome" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tito_Horford" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/JaJuan_Johnson" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nikos_Angelopoulos" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Milan_Gurovi\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chris_Washburn" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Marquese_Chriss" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kelvin_Cato" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Al-Farouq_Aminu" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lucas_Dias" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kevin_Durant" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jack_Parr_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Brett_Roberts" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Marko_Vranjkovi\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jamal_Robinson" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/George_Mikan" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Juvonte_Reddic" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Adrian_Branch" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Joonas_Cav\u00e9n" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kristjan_Kangur" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Akin_Akingbala" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jean-Jacques_Concei\u00e7\u00e3o" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Florent_Pi\u00e9trus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kaspars_Kambala" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ron_Charles_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Raef_LaFrentz" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mario_Abboud" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Derrick_Williams_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Justin_Reed" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nick_Oudendag" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bo\u0161tjan_Nachbar" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Henning_Harnisch" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Duncan_Reid" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ben_Davis_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Giannis_Giannoulis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tom_Abernethy" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Walter_Herrmann" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Karim_Shabazz" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/\u017darko_Rako\u010devi\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pat_Burke" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Al_Sanders_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lorenzo_Charles" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Steve_Kuberski" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sidney_Green_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Simonas_Kymantas" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jim_Boatwright" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Matej_Mami\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Milenko_Topi\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kostas_Kaimakoglou" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/James_Worthy" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tom_Bowens" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sly_Williams" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Toni_Kuko\u010d" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cliff_Pondexter" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jeremy_Tyler" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Red_Morrison" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jim_Creighton_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Greg_Dreiling" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nikolin_Arra" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Noel_Felix" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Demetrius_Treadwell" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sam_Muldrow" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/A._J._Hammons" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rein_van_der_Kamp" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jerome_Whitehead" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/DeShawn_Sims" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Patrick_O'Bryant" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Eddie_Mast" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Andro_Knego" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kevin_Salvadori" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nikolay_Varbanov" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Daniel_Fitzgerald_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nenad_Krsti\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Viktor_Zubkov_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Donald_Cole_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rakeem_Christmas" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Du\u0161an_Hauptman" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Charles_Jones_(basketball,_born_1962)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dijon_Thompson" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Deon_Thomas" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bruce_Flowers" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/LeRoy_Hurd" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mike_Gibson_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jan_van_Breda_Kolff" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Todd_MacCulloch" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Clayton_Shields" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mike_Moser" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Evric_Gray" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Steve_Patterson_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Greg_Whittington" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Moussa_Diagne" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Quinton_Hosley" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Anton_Odabasi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Olivinha" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Roger_Fornas" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/John_Salley" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Herlander_Coimbra" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Aramis_Nagli\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Larry_Bird" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jahidi_White" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Fernando_Mart\u00edn_Espina" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jay_Washington" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ante_Tomi\u0107_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Satnam_Singh_Bhamara" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Miguel_Kiala" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/James_Posey" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Paul_Davis_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cedric_Ceballos" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ronnie_Burrell" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tim_Kempton" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Moustapha_Fall" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Olek_Czy\u017c" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dimitrios_Agravanis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Giorgi_Sharabidze" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jimmy_Butler_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Terrence_Woodyard" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sam_Pellom" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sergiy_Gorbenko" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Robert_Sacre" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tristan_Thompson" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sean_Williams_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mohamed_Hdidane" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jermareo_Davidson" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ian_Vougioukas" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ivan_Smiljani\u0107_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Brian_Qvale" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Charis_Giannopoulos" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Daniel_Theis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Zaza_Pachulia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mark_Bryant_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jake_Cohen" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Omari_Johnson" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Su_Wei_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Don_Otten" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Khalid_Boukichou" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Wang_Zhelin" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rodney_Bartholomew" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Zeke_Zawoluk" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Wil_Jones" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Andris_Biedri\u0146\u0161" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ali_Jamal_Zaghab" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gerald_Beverly" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Troy_Rosario" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nenad_\u0160ulovi\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mike_Smrek" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Les_Hunter" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Elijah_Obade" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Wesley_Witherspoon" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/McCoy_McLemore" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Darius_Defoe" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dan_Sparks_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Adem_\u00d6ren" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jamal_Maaytah" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Patrick_Hilliman" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ali_Traor\u00e9" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Howard_Porter_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ario_Costa" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sasha_Vuja\u010di\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vince_Hanson" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bruno_Caboclo" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Alade_Aminu" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gene_Conley__1" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nik_Slavica" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Milko_Bjelica" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Skeeter_Henry" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jake_Tsakalidis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Du\u0161an_Bocevski" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Howard_Wood" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Glen_Davis_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Youssou_Ndoye" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tony_Kaseta" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Djery_Baptiste" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Alex_Chubrevich" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hank_Gathers" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Donny_Marshall" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ricky_Volcy" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Walker_Banks" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/John_Stroeder" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tony_Campbell" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Voise_Winters" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rodrigo_de_la_Fuente" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Matt_Geiger" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tautvydas_\u0160le\u017eas" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ademola_Okulaja" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lucious_Jackson" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Andrius_Jurk\u016bnas" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dennis_Grey" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Koko_Archibong" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ansley_Truitt" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Matt_Harpring" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rich_Adams" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Curtis_Berry" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jim_Marsh_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Peter_Verhoeven" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Derek_Hood_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Stefano_Mancinelli" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Leonardo_Guti\u00e9rrez" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Earl_Barron" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Matej_Kru\u0161i\u010d" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Josh_Owens" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Corky_Calhoun" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Carey_Scurry" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Henrik_R\u00f6dl" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dallas_Comegys" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Derrick_Favors" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mengke_Bateer" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/David_Chiotti" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Matthew_White_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/JaVale_McGee" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ivica_Blagojevi\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Luka_\u017dori\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Leon_Williams_(basketball,_born_1986)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Orlando_Mel\u00e9ndez" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ben_Pepper" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Toon_van_Helfteren" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kenny_Walker" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Craig_Dill" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Shawn_Kemp" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bor\u010de_Domlevski" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jure_Lali\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Julian_Washburn" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mel_McCants" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Toarlyn_Fitzpatrick" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Samigue_Eman" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Walter_Pitchford" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hedo_T\u00fcrko\u011flu" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ronnie_Aguilar" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jaime_Lloreda" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kara_Wolters" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Duje_Dukan" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Eddie_Phillips_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Robert_Rothbart" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ronnie_Shavlik" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Quincy_Acy" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Doug_McDermott" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tyler_Newton" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Duane_Johnson_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Andy_Panko" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Keon_Clark" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Othello_Hunter" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cheick_Diallo" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Robert_Joseph_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rafael_Vecina" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vladimir_Golubovi\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nacho_D\u00edez" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tien_Lei" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rui_Hachimura" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Steve_Johnson_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Luigi_Datome" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tom_Sherlock" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Michael_Holper" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mitchell_Young" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chris_Street" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mladen_Panti\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Torin_Francis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Luke_Bonner" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Reggie_Johnson_(basketball,_born_1957)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/John_Shasky" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/James_Webb_III" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kenneth_van_Kempen" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tommy_Smith_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/DeMarcus_Cousins" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jeff_Cohen_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jay_Guidinger" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nenad_Mi\u0161anovi\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jim_Krebs" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jarron_Collins" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jan_Vesel\u00fd" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Emircan_Ko\u015fut" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jamel_McLean" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dimitrios_Papanikolaou" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jos\u00e9_Vargas_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nemanja_Aleksandrov" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Elvis_\u00c9vora" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dave_Johnson_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/John_Turner_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Othella_Harrington" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tiny_Gallon" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jason_Maxiell" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Matt_Barnes" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ben_Eaves_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Winston_Crite" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ollie_Johnson_(basketball,_born_1942)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jamie_Arnold_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mickey_Davis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/V\u00edtor_Faverani" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jordan_Bachynski" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mychel_Thompson" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jim_Caldwell_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Wilt_Chamberlain" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Brian_Oliver_(basketball,_born_1990)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dragan_Tubak" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Duane_Causwell" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Spencer_Hawes" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jarvis_Varnado" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Garry_Witts" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Andrea_Conti_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Artis_Gilmore" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bob_Allen_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Felipe_Reyes" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Karim_Ouattara" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Huck_Hartman" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Art\u016bras_Javtokas" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lorenzo_Coleman" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sa\u0161a_Zagorac" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Anthony_Miller_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Du\u0161an_Kne\u017eevi\u0107_(basketball_player,_born_1980)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Phil_Jackson" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kurt_Looby" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sini\u0161a_Avramovski" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Justin_Doellman" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Davor_Pej\u010dinovi\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Zoran_Erceg" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Roy_Hibbert" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gustavo_Ay\u00f3n" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Roy_Ebron" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ra\u0161ko_Kati\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kre\u0161imir_\u0106osi\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Drago_Pa\u0161ali\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Brandon_Bass" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Christopher_McNaughton" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Joffrey_Lauvergne" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dejan_Kova\u010devi\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Joe_Kleine" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dorell_Wright" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nikola_Jovanovi\u0107_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Renaldo_Woolridge" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kevin_Young_(basketball,_born_1990)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ray_Turner_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Samender_Juginisov" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ricky_Davis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Isaac_Holstein" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Louis_Rowe" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Will_Daniels" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/John_Thompson_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Theo_Ratliff" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Melvin_Ely" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Oscar_Schmidt" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Greg_Slaughter" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Anthony_Stover" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Zorana_Todorovi\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mile_Ili\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Richie_Adams" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Reid_Gettys" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/D\u0101vis_Bert\u0101ns" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Paul_Grant_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bob_Lavoy" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Keith_Wright_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sharrod_Ford" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Shaun_Stonerook" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dana_Jones" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Thomas_Bryant_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Russ_Hunt" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vlad_Negoitescu" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Luke_Jackson_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Manuel_Narvaez" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Scott_McGregor_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jeff_Cook_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mansour_Kasse" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Leonard_Gray" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bruce_Seals" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gerald_Robinson_(basketball,_born_1984)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hayk_Gyokchyan" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/D._J._Covington" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gary_Ware" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Isaac_Butts" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lance_Williams_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bojan_Radulovi\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Enes_Kanter" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Billy_Owens" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rom\u00e1n_Mart\u00ednez_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ivan_Harris" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Petar_Skansi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jakim_Donaldson" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Michael_Bradley_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Warren_Kidd" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Henry_Turner_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cedric_Henderson_(basketball,_born_1975)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/\u00c1d\u00e1m_Hanga" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rod_Odom" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Adrian_Caldwell" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jennifer_Hamson" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bernard_James" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Carlos_Jim\u00e9nez" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Suleiman_Braimoh" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Boris_Diaw" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/John_Garris" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ivan_Todorovi\u0107_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Wayne_Tinkle" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nemanja_Jaramaz" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Taylor_King" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mladen_\u0160ekularac" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sergei_Karaulov" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gerti_Shima" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Octavius_Ellis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dale_Schlueter" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tony_Battie" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jeroen_van_der_List" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Todd_Jadlow" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tony_Dawson" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Larry_Spriggs" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tanhum_Cohen-Mintz" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Brittney_Griner" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tim_Parham" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/George_Banks_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Greg_Mangano" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Marko_Paji\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Georgios_Tsalmpouris" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jarnell_Stokes" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Milan_Milkov" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Howard_Wright" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jerrod_Mustaf" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bennett_Davison" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jim_Fox_(basketball,_born_1943)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Clifford_Luyk" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Alex_English" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bill_Curley" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Richard_Moguena" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Saulius_\u0160tombergas" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Terry_Thomas_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mark_Payne_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tibor_Plei\u00df" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dolph_Schayes" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Birgir_Bj\u00f6rn_P\u00e9tursson" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Reggie_Williams_(basketball,_born_1964)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/\u00c7elis_Taflaj" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ivars_Timermanis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Orbie_Bowling" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Michailas_Anisimovas" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Michael_Batiste" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Scott_May" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Stevan_Jelovac" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gary_Leonard" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Marko_Todorovi\u0107_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Daniel_Clark_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Isaac_Fotu" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sean_Elliott" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tellis_Frank" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kostas_Tsartsaris" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Arnold_Van_Opstal" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bari\u0161a_Krasi\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Donatas_Motiej\u016bnas" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ervin_Sotto" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jared_Reiner" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Randy_Holcomb" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tseng_Wen-ting" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Justin_Greene" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rafael_de_Souza_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Marcus_Cousin" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ryan_Anderson_(basketball,_born_1992)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/\u017danis_Peiners" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Charlie_Tyra" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Harding_Nana" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chevon_Troutman" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Victor_Alexander" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Radhouane_Slimane" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dragan_Bender" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Connie_Hawkins" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Antwain_Smith" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Petey_Cipriano" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mark_Blount" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Marin_Rozi\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Marco_Cusin" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tom_Tolbert" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Artsiom_Parakhouski" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kit_Mueller" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Scott_Lloyd" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bojan_Suboti\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Brandon_Ashley" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Roberto_Acu\u00f1a_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Petar_Arsi\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mindaugas_Kuzminskas" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Phil_Hankinson" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ronaldas_Rutkauskas" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Michael_Scott_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jarrod_Uthoff" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/DeMarco_Johnson" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jordan_Morgan" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dwayne_Morton" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Przemek_Karnowski" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rajko_\u017di\u017ei\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Taurean_Prince" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Charles_Jones_(basketball,_born_1957)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bill_Thieben" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/\u00d6mer_A\u015f\u0131k" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lamond_Murray" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jamario_Moon" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chuck_Darling" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jamie_Feick" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Stephen_Jackson" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ron_Horn" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Joel_Anthony" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ji\u0159\u00ed_Z\u00eddek_Sr." + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Spyros_Magkounis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gene_Banks" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tadas_Sedekerskis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ralph_Sampson_III" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Seamus_Boxley" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ashraf_Amaya" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ilian_Evtimov" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bud_Olsen" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/St\u00e9phane_Lasme" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Larry_Micheaux" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chris_Silva" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jared_Jeffries" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/J._R._Sakuragi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Giorgos_Sigalas" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jim_Smith_(basketball,_born_1958)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Danny_Schayes" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Troy_Williams" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rastko_Cvetkovi\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sotirios_Gioulekas" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jason_Caffey" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bojan_Krstevski" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bob_Bigelow" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Adam_W\u00f3jcik" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Donatas_Zavackas" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Erik_Daniels" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Terry_Rand" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/J._P._Batista" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Johndre_Jefferson" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Fred_Saunders" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Harvey_Grant" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rick_Roberson" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Josh_Smith" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Elmer_Behnke" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Paul_Mokeski" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Richard_Anderson_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Darryl_Watkins" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Petey_Sessoms" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bob_Brown_(NBL)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jackie_Carmichael" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Da'Sean_Butler" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kahiem_Seawright" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pero_Anti\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Egidijus_Dim\u0161a" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Josh_Childress" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kevin_Noreen" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Moustafa_Elmekawi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tarmo_Kikerpill" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kevin_Pittsnogle" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Andray_Blatche" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Luke_Babbitt" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Luke_Walton" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tomislav_Zub\u010di\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Markos_Kolokas" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ali_Doraghi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mouhammad_Faye" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jim_Zeravich" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mohammad_Hadrab" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Darren_Fells__Darren_Fells__1" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Travis_Watson" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Shelton_Jones" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dejan_Davidovac" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jason_Ellis_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/\u017dan_Tabak" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gabriel_Deck" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sam_Sibert" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Stanley_Roberts" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Orlando_Woolridge" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Wayne_Englestad" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bruce_Bolden" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Joe_Johnson_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ozell_Jones" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Luk\u0161a_Andri\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/John_Stroud" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/George_Gervin" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dennis_Awtrey" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nemanja_Bezbradica" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vassilis_Charalampopoulos_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/DeAndre_Ayton" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Antoine_Carr" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kyle_Barone" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Garret_Siler" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Darrell_Williams_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bill_Uhl" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Aleksandar_Mitrovi\u0107_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dwayne_Schintzius" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tony_Dunkin" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/William_Njoku" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Matt_Fish" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/David_Padgett" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Juan_Antonio_San_Epifanio" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Markieff_Morris" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Goran_\u0106aki\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bumper_Tormohlen" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Alfonso_Reyes_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ndudi_Ebi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mat\u00edas_Bortol\u00edn" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jimmy_Djimrabaye" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Yannick_Schoepen" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bob_Morse" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dra\u017een_Bubni\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Goran_Nikoli\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Adam_\u0141apeta" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jerome_Jordan" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kevin_van_Wijk" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chris_Anstey" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Demetris_Nichols" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Terrence_Jones" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ken_Austin_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Yaroslav_Korolev" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kevin_McHale_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/David_Pope_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Romero_Osby" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jerome_Williams_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Casey_Calvary" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Brice_Assie" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/LeRoy_Ellis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tom_Kozelko" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mario_Hezonja" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Johnny_Kerr" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Justin_Harper_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Campy_Russell" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Zou_Yuchen" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Trayvon_Lathan" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jim_Tucker_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tuukka_Kotti" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ricardo_Marsh" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Paul_Rogers_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Martin_Seiferth" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Craig_Raymond" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Roy_Samaha" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Richard_Howell_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Argiris_Kambouris" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dave_Corzine" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Andrea_Meneghin" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Elmore_Spencer" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Viljar_Veski" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jayson_Tatum" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/John_Johnson_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hasan_Rizvi\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Shayne_Whittington" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ervin_Johnson" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Idan_Zalmanson" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dave_Stallworth" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lonny_Baxter" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nikos_Papanikolaou" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rick_Rickert" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ante_\u0110ugum" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Clarence_Glover" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Valentin_Pastal" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chris_Walker_(basketball,_born_1994)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ihor_Zaytsev_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Matt_Bullard" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ryan_Gomes" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Don_Dee" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Zhai_Xiaochuan" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Shelden_Williams" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Fedor_Dmitriev" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Charles_Davis_(basketball,_born_1958)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Harold_Jamison" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/LaPhonso_Ellis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Miroslav_Raduljica" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bill_Hanzlik" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Brian_Scalabrine" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Marko_Ke\u0161elj" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Georgios_Tsiakos" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Zaid_Abdul-Aziz" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Luca_Ivankovi\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Brian_Grant" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Miroslav_Pecarski" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mike_Jones_(basketball,_born_1967)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Reeves_Nelson" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gian_Chiu" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/James_Thomas_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Brian_Cook" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Marjan_Gjurov" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lee_Seung-jun_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Derrick_Obasohan" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Blair_Rasmussen" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Stephen_Zimmerman" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Reggie_Miller" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Du\u0161an_Jeli\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mitchell_Watt_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lance_Allred" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nicol\u00e1s_Brussino" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Evan_Fournier" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Harvey_Catchings" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jerry_Lucas" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bobby_Wilson_(basketball,_born_1944)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Klaudio_Ndoja" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Andr\u00e9s_Guibert" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Angelos_Siamandouras" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mekeli_Wesley" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jarvis_Hayes" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Priest_Lauderdale" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rick_Robey" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Victor_Muzadi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Conrad_McRae" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jesse_Young" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gary_Bradds" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Darrell_Arthur" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Xue_Yuyang" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sherman_White_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mike_Miller_(basketball_player)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Curtis_Kelly" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Willie_Cauley-Stein" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Larry_Owens" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kyle_Landry" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Petar_Joki\u0107_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/\u00c1lvaro_Teher\u00e1n" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Will_Clyburn" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chuck_Share" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Marjan_\u010cakarun" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jim_Ard" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kre\u0161imir_Lon\u010dar" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rouzbeh_Arghavan" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Eddie_Owens" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vladimir_Lu\u010di\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mike_Scott_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Trey_Britton" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Thabo_Sefolosha" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gani_Lawal" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Milan_Majstorovi\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Andrija_Stipanovi\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Karlo_\u017dganec" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rait_Keerles" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chris_Andersen" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Richard_Hendrix" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Moon_Tae-jong" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cristiano_Fel\u00edcio" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Joe_Buckhalter" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ivica_Zubac" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Guy-Marc_Michel" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cemal_Nalga" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Larry_Nance_Jr." + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/G\u00f6khan_\u015eirin" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Harry_Kelly_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rod_Grizzard" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Zhang_Zhaoxu" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rod_Higgins" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Eric_Fernsten" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mike_Harper_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Anna_Prins" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kris_Humphries" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Roosevelt_Bouie" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kim_Joo-sung_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Danilo_\u0160ibali\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Andreas_Glyniadakis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jean_Salumu" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Milo\u0161_Koprivica" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Antywane_Robinson" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ed_Horton" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Elishay_Kadir" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sherron_Mills" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Reggie_Royals" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nelson_Sardinha" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Prodromos_Nikolaidis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/David_Stiff_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Paul_Crosby" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Makrem_Ben_Romdhane" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Darrell_Allums" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Terrence_Ross" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tarik_Black" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Loukas_Mavrokefalidis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Peja_Stojakovi\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Radoslav_Ran\u010d\u00edk" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Reyshawn_Terry" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Shang_Ping" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Korleone_Young" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Michael_Graham_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lauri_Markkanen" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chuck_Nevitt" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chris_Jefferies" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jason_Keep" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Perry_Ellis_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dimitar_Angelov" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Marques_Johnson" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kim_Jong-kyu" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dave_Cowens" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jon_Brockman" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Adonal_Foyle" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kodi_Augustus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Benjamin_Eze" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bobby_Cattage" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Milan_Milovanovi\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hermenegildo_Mbunga" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nikos_Kalles" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Srdjan_Pejicic" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tod_Murphy" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jos\u00e9_Ortiz" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Caleb_Green_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Eddie_Johnson_(basketball,_born_1959)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/John_Edwards_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Derrek_Dickey" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Otto_Moore" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vladimir_Ivelja" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pape_Sow" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/C._J._Aiken" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Abdou_Badji" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dior_Lowhorn" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kenan_Bajramovi\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lance_Thomas" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Brent_Scott" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Eduardo_N\u00e1jera" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tunji_Awojobi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Fatih_Solak" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Art_Becker" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kristian_Liem" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Maxime_De_Zeeuw" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lemone_Lampley" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bob_Ford_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Guy_Rucker" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Andrew_Wiggins" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kadeem_Jack" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Billy_Cunningham" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ovidijus_Galdikas" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/David_Greenwood" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jeff_Allen_(basketball,_born_1987)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/J\u0101nis_Kr\u016bmi\u0146\u0161" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Michael_Wiley_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Romel_Beck" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/David_Vaughn_III" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nick_Eppehimer" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ricardo_Glenn" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dalibor_Bagari\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Martin_Viiask" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ercan_Bayrak" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Walt_Williams" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Malcolm_Miller_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tacko_Fall" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Abdul-Malik_Abu" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/John_Gianelli" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lucho_Fern\u00e1ndez" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Milo\u0161_Komatina" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Alex_Tyus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Danilo_Nikoli\u0107_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Andrew_Lang_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Milo\u0161_Pavlovi\u0107_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Giedrius_Staniulis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Henry_Sims" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Stacey_King" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/George_Peeples" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ryan_Anderson_(basketball,_born_1988)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tom_Piotrowski_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dino_Ra\u0111a" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Barney_Cable" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jonas_Valan\u010di\u016bnas" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Devin_Ebanks" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kyle_Visser" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Keith_Benson" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bill_Buntin" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Clyde_Drexler" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bryant_Smith" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Joe_Krabbenhoft" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Augustine_Rubit" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Isman_Thoyib" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ed_Daniel" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Simmie_Hill" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chuck_Vincent" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/John_Tresvant" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Marcus_Douthit" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Adam_Morrison" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/F\u00e9lix_Javier_P\u00e9rez" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Guilherme_Giovannoni" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Trevor_Mbakwe" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Daiji_Yamada" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Marcus_Landry" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Larry_McNeill" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/H\u00fcseyin_Alp" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Aleksandr_Kozlov_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rich_Niemann" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Milton_Jennings" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Erwin_Dudley" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Branko_Cvetkovi\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Stefan_Nasti\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vassilis_Niforas" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chuck_Aleksinas" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Robbie_Hummel" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Will_Hudson" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Marko_Lukovi\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cal_Bowdler" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Saleh_Foroutan" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Wayne_Cooper_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nate_Huffman" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ivan_Radenovi\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Marcus_Haislip" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mark_Eaton_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Phil_Jones_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Carl_Bailey" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Phil_Zevenbergen" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Metecan_Birsen" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Marino_\u0160arlija" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Damir_Krupalija" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Frederick_Pea" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Polat_Kocao\u011flu" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/John_Block_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rodney_Dent" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Michael_Brooks_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hubert_Radke" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tim_Thomas_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chris_Gatling" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Frank_Radovich" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Luca_Campani" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sa\u0161a_Stankovi\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Aleksandar_Marelja" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Stanley_Ocitti" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Willis_Reed" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/David_Lee_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kenny_Thomas_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Danilo_Ostoji\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Luke_Zeller" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tyler_Hansbrough" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Marko_Mili\u010d" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ansu_Sesay" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Natalia_Vieru" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sergi_Vidal" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chris_Hines" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Michael_Meeks_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/James_Edwards_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ahmad_Ibrahim_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Li_Xiaoxu" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mohd_Mohamed" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Eddie_Griffin_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Carl_Miller_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Velibor_Radovi\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Red_Rocha" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Loren_Woods" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Justin_Reynolds" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Shavon_Shields" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jackson_Vroman" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Norris_Coleman" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Matt_Wenstrom" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Devin_Williams" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Devean_George" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Henry_Akin" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dimitris_Papadopoulos_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Luke_Witte" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jonas_Jerebko" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lloyd_Neal" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Giannis_Antetokounmpo" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vallo_Allingu" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Miroslav_Rai\u010devi\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Radoslav_Pekovi\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Corey_Belser" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Scott_Drapeau" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mamoutou_Diarra" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ivan_Mi\u0161kovi\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Klay_Thompson" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Josh_Heytvelt" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nick_Paulos" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Zach_Auguste" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mindaugas_Ka\u010dinas" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kaya_Peker" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Djordje_Jovanovi\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Alexis_Ajin\u00e7a" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Petr_Benda" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jerry_Reynolds_(basketball,_born_1962)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jeff_Ayres" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Filip_Kralevski" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Renaldo_Balkman" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vincent_Yarbrough" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bill_Edwards_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jarvis_Lang" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Panagiotis_Fasoulas__1" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rodney_McCray_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Simas_Galdikas" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/H\u00fcseyin_Be\u015fok" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/David_Andersen" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Joseph_Owona" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Thomas_van_der_Mars" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jonathan_Jeanne" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Marcus_Camby" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Willie_Burton" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nikita_Wilson" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dejan_Milojevi\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Terrance_Woodbury" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Egidijus_Mockevi\u010dius" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Shavlik_Randolph" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bojan_Bogdanovi\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Davon_Jefferson" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gregory_Echenique" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Juan_Pedro_Guti\u00e9rrez" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mitch_Kupchak" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vic_Rouse_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dillon_Brooks" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Craig_Brackins" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Eddie_Lee_Wilkins" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Omri_Casspi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Georgios_Georgakis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rory_White" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Igor_Tratnik" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Djibril_Thiam" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/David_Nash_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lorenzo_Williams_(basketball,_born_1969)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nate_Linhart" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Earl_Clark" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Myles_Turner_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/John_Wallace_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Willie_Norwood_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chris_Morris_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Imani_Boyette" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Georgios_Bartzokas" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/John_Brown_(basketball,_born_1951)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Julius_van_Sauers" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Archie_Dees" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Elvin_Hayes" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Corliss_Williamson" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Harry_Giles_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Austin_Daye" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Shane_Battier" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Greg_Smith_(basketball,_born_1991)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nestoras_Kommatos" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Milivoje_Bo\u017eovi\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dimitris_Despos" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Willard_Schmidt_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Giorgi_Shermadini" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Oliver_Miller" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bill_Laimbeer" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nikola_Bulatovi\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Darion_Atkins" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rashaun_Freeman" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Veljko_Mr\u0161i\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jes\u00fas_Fern\u00e1ndez_Hern\u00e1ndez" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Aleksandar_Vezenkov" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/K'zell_Wesson" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jabari_Parker" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Xavi_Rey" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cory_Hightower" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ryan_Hollins" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hansi_Gnad" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Andre_Riddick" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cherokee_Parks" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ed_Johnson_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Duncan_Robinson_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/N\u00e9stor_Colmenares" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/DeAndre_Jordan" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Danny_Vranes" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tamar_Slay" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Christien_Charles" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Artem_Pustovyi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kevin_Fletcher" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Donald_Washington_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dale_Ellis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jamelle_Hagins" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gene_Moore_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rob_Lock" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Marko_Djurkovi\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Achille_Polonara" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Todd_Mitchell" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Erek_Hansen" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Trevor_Harvey" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Giulio_Gazzotti" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mike_Mitchell_(basketball,_born_1967)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Juan_Hernang\u00f3mez" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/T._J._Warren" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Stelios_Ioannou" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Wallace_Bryant" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Brad_Robinson_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jayson_Williams" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rudy_Gobert" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Faisal_Aden" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jake_Layman" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/V\u00edctor_Claver" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Marquin_Chandler" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jim_Slaughter" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Anwar_Ferguson" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Brandon_Taylor_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Travis_Peterson" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Terry_Stotts" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Quincy_Davis_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/James_Garvin_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mac_Otten" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vladimir_Dragi\u010devi\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bambale_Osby" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jamaal_Magloire" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tayavek_Gallizzi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Domantas_Sabonis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Draymond_Green" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vasilije_Vu\u010deti\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sacha_Massot" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Edin_Ati\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mike_O'Koren" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nen\u00ea" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/David_Harrison_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Russell_Hinder" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tony_Bishop" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Slobodan_Bo\u017eovi\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Don_Anielak" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mel_Counts" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nick_Minnerath" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Derrick_Griffin" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jerami_Grant" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ian_O'Leary" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Luke_Sikma" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sam_Robinson_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Adrian_Moss_(basketball,_born_1981)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Martynas_Andriukaitis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Marcus_Slaughter" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tyson_Chandler" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Don_Bielke" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tyler_Tiedeman" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bobby_Speight" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Luke_Nevill" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ovie_Soko" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Marko_Tomas" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Brian_Cardinal" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Alex_Murphy_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Javier_Justiz" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Adrien_Moerman" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Carlos_Cerutti" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dejan_Borovnjak" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jamar_Samuels" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Don_Martin_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Federico_Kammerichs" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ed_Nealy" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Walt_Piatkowski" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Anthony_Bennett_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jamal_Sampson" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Alex_Stepheson" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Troy_Murphy" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nacho_Mart\u00edn" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Michael_Young_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Luka_Vuksanovi\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mamadou_N'Diaye_(basketball,_born_1993)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/C._J._Fair" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dexter_Cambridge" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Larry_Mikan" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vlade_Divac" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gaios_Skordilis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/George_Montgomery_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Randy_Allen_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ed_Elisma" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lee_Seung-hyun_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Philip_Zwiener" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Larry_Nance" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Scott_Fisher_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Radosav_Spasojevi\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/\u00c1kos_Keller" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jameel_Watkins" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Julius_Hodge" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kendrick_Perkins" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Wally_Szczerbiak" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hassan_Whiteside" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lorenzo_Mata" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tomas_Ress" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nick_Bradford" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vytautas_\u0160ulskis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Joe_Bryant" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jarell_Eddie" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/John_Pinone" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Joe_Devance" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ognjen_Kuzmi\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Andrius_\u0160le\u017eas" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Taj_Gray" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mike_Gminski" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Brent_Petway" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Earl_Williams_(basketball_player)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cady_Lalanne" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Abdoulaye_Loum" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sherell_Ford" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kevin_Thompson_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Steven_Adams" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Derrick_Coleman" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Fisnik_Rugova" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Antonio_Davis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Terry_Mills_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Scott_Williams_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/M\u00e1rton_B\u00e1der" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jason_Smith_(basketball,_born_1986)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mark_Dean_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rom\u00e1n_Gonz\u00e1lez" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jonas_Ma\u010diulis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Greg_Butler" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Alex_King_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Stamatis_Mpenas" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ji\u0159\u00ed_Welsch" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Brant_Weidner" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jim_McIntyre_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jeff_Foster_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Steve_Stipanovich" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jordan_Hamilton" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Marc-Eddy_Norelia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ethan_Happ" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Augustus_Gilchrist" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vilmantas_Dilys" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Martynas_Andriu\u0161kevi\u010dius" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kim_Tillie" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Zolt\u00e1n_Horv\u00e1th_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chad_Posthumus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Erick_Dampier" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bill_Gossett" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Shawn_Bradley" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Paul_Haynes_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Brian_Evans_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Greg_Brunner" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mike_Brown_(basketball,_born_1963)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Robert_Reid_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Alex_Crisano" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Len_Chappell" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jack_Michael_Mart\u00ednez" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Joel_Embiid" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bar\u0131\u015f_Hersek" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Benjamin_Ortner" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cory_Jefferson" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Josh_Duncan" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Josip_Sobin" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Marko_Jagodi\u0107-Kurid\u017ea" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Brian_Zoubek" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Adreian_Payne" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Purvis_Short" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chief_Kickingstallionsims" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tom_Hoover" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Stanley_Robinson" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pape_Sy" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Al_Tucker" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Damien_Inglis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Katie_Feenstra-Mattera" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jared_Sullinger" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jorge_Garbajosa" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Aaron_Harper_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Antoine_Walker" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vasilije_Ba\u0107ovi\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Odell_Hodge" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Steve_Hood" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Andrei_Kirilenko" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ljubomir_Ristic" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Filip_Dylewicz" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Erkan_Veyselo\u011flu" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Frank_Brickowski" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Aaron_White_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mike_Hall_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Travis_Grant" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Monti_Davis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/E.J._Feihl" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dewayne_Dedmon" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Robert_Horry" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Benoit_Benjamin" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Miro_Bilan" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Wayne_Robinson_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Andrew_Sullivan_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/George_T._Johnson" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Monty_Williams" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Marko_Arapovi\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Joe_Wolf" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Fedor_Likholitov" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Wade_Helliwell" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jelani_McCoy" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Eric_Dawson" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Glen_Rice" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chris_Johnson_(basketball,_born_1985)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Len_Matela" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tim_Perry" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mohamed_Abukar" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Trent_Plaisted" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ra\u0161id_Mahalba\u0161i\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Predrag_Drobnjak" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Drew_Naymick" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mihai_Silv\u0103\u0219an" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kendall_Rhine" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Arnett_Moultrie" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Roeland_Schaftenaar" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Angelo_Reyes_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Danny_Doyle_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/P._J._Brown" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chris_Webber" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Howie_Jolliff" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sasha_Kaun" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kristjan_Makke" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Luke_Harangody" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Stefan_Bir\u010devi\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Stephen_Arigbabu" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/JaKarr_Sampson" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jeff_Brooks_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tree_Rollins" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gerald_Paddio" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Larry_Abney" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jim_Bradley_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pere_Tom\u00e0s" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rasim_Ba\u015fak" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vladimir_Tkachenko" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Joe_Kopicki" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rodney_Williams_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/D._J._Mbenga" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dan_Roundfield" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Fotios_Lampropoulos" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Manthos_Katsoulis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/DerMarr_Johnson" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Otis_Thorpe" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Milan_Ma\u010dvan" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Corie_Blount" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tommy_Woods_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nikola_Vuj\u010di\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jeff_Webster" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/William_Phillips_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chris_Kaman" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pablo_Aguilar_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mla\u0111an_\u0160ilobad" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Joe_Cooper_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pat_Garrity" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jonas_Pierre" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mouphtaou_Yarou" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mario_Kasun" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Manny_Leaks" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tremaine_Fowlkes" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Marijan_Kraljevi\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tomas_Van_Den_Spiegel" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Marshall_Plumlee" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/P\u00e9tur_Gu\u00f0mundsson_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dakari_Johnson" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Michael_Cage" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Charles_Davis_(basketball,_born_1984)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Szymon_Szewczyk" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kaspars_Cipruss" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Antonio_Latimer" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Walter_Jordan" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Grant_Long" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ian_McGinnis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Samer_Ozeir" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Penny_Hardaway" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lorenzo_Orr" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Will_Sheehey" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bob_Lanier_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Zoran_Savi\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Evgeni_Kisurin" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Zoran_Majki\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Alan_Williams_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Alfons_Alzamora" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Danilo_Barthel" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Leon_Rado\u0161evi\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bill_Mayfield" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Wally_Anderzunas" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tom_Boswell" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cody_Zeller" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tony_Massenburg" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Brian_Rowsom" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kenny_Gabriel" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Marcelo_Nicola" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rich_Manning" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jeff_Adrien" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/C._J._Webster" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Keith_Swagerty" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Yousef_Taha" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Herv\u00e9_Tour\u00e9" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/A._W._Davis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Martin_Jurtom" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nathan_Healy_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Antonio_Campbell" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gimel_Lewis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Larry_Smith_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Derrick_Chievous" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Etdrick_Bohannon" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vladimir_Micov" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Leron_Black" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jure_Bala\u017ei\u010d" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Terrence_Roberts_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kevin_Langford" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Andre_Hutson" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jeff_Foote" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cyril_Akpomedah" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ira_Newble" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ross_Bekkering" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/\u017deljko_\u0160aki\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Elvin_Ivory" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/C\u0103t\u0103lin_Burlacu" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/P\u00e9ter_L\u00f3r\u00e1nt" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Janar_Talts" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gediminas_\u017dalalis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Herbert_Crook" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ed_Mikan" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chris_Cooper_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Marjan_Janevski" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kennedy_McIntosh" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Amar'e_Stoudemire" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Franko_\u0160ango" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sergey_Karasev" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Marko_Ivanovi\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/\u00c1lex_Su\u00e1rez" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chuck_Jura" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Darius_Rice" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tyler_Honeycutt" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Antonios_Asimakopoulos" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Marvin_Phillips" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mareks_Mejeris" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Grant_Jerrett" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Brandon_Cole" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cedrick_Hordges" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mark_Sanchez_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/D\u017eanan_Musa" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Carl_Engstr\u00f6m" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Isaiah_Hartenstein" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Alec_Brown" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kameron_Chatman" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kimani_Ffriend" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Carlos_Su\u00e1rez" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mustafa_El-Sayad" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kaido_Saks" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Martin_Ran\u010d\u00edk" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Margo_Dydek" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cyrus_Mann" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Darko_Zdravkovski" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Quincy_Miller" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Korn\u00e9l_D\u00e1vid" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/John_Shumate" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Terry_Tyler" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Alan_Ogg" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Goran_Jagodnik" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ri\u010dmonds_Vilde" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Le'Bryan_Nash" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Adin_Vrabac" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ibrahima_Thomas" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Marcus_Webb" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/William_Mosley" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jumaine_Jones" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chris_Obekpa" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chris_McNealy" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bill_Jones_(basketball,_born_1966)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lukas_Brazdauskis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bobby_Jones_(basketball,_born_1984)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Miljan_Goljovi\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kevin_Coble" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/P\u0101vels_Veselovs" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Petras_Balocka" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Deshaun_Thomas" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ralph_Polson_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Anthony_Gill_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Joe_Ira_Clark" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Andrija_Simovi\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tom_Gugliotta" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/George_Sutor" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ben_Wilson_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Taymon_Domzalski" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Yao_Ming" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mohammed_Al-Marwani" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Devin_Thomas_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Robin_Lodders" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Steven_Hutchinson" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/T._J._Leaf" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jacob_Jaacks" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/JaMychal_Green" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Leroy_Wright" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mark_Crow" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Blagota_Sekuli\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Robin_Jones_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Daniel_Santiago" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ding_Jinhui" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Frazier_Johnson" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Salah_Mejri" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bob_McKeen" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Johnny_Newman" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Alain_Koffi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bo_Ellis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Toomas_Raadik" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Maximilian_Kleber" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Holden_Greiner" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rob_Preston" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/B._H._Born" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Stuart_Robbins" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ralph_Crosthwaite" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Maksym_Pustozvonov" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chinemelu_Elonu" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Evaldas_Jocys" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/\u0110or\u0111e_Kaplanovi\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hlynur_B\u00e6ringsson" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kostas_Kakaroudis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/James_White_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kelly_Oubre_Jr." + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mike_Sojourner" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Du\u0161an_\u0160akota" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gary_Alexander_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chris_Engler" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Petr_Novick\u00fd" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Olu_Ashaolu" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Stratos_Perperoglou" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mohamed_Tangara" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Thanasis_Antetokounmpo" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Casey_Frank" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ilimane_Diop" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/DeWayne_Scales" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Donta_Smith" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Alberto_Corbacho" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Alessandro_Gentile" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cincy_Powell" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vladyslav_Kondratyev" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Terry_Driscoll" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Willy_Hernang\u00f3mez" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Harry_Boykoff" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Acie_Earl" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Greg_Wittman" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vincent_Kesteloot" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bruno_\u0160undov" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jason_Bennett_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dinos_Angelidis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/DaJuan_Coleman" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kristof_Ongenaet" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nikola_Cvetinovi\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nikita_Morgunov" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Marc_Salyers" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Brook_Lopez" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bill_Turner_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jeffery_Taylor" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Deividas_Gailius" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jerrelle_Benimon" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jerod_Ward" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mike_Davis_(basketball,_born_1988)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jason_Conrad" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Donald_Royal" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jack_Haley_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ed_Davis_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kurt_Thomas_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Goran_Jurak" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bill_Hosket_Jr." + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Calbert_Cheaney" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ernests_Kalve" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Devin_Searcy" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mauro_Liburdi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Igor_Penov" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Neil_Johnson_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tim_Bassett" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jameel_Warney" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jalen_Jones" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nikoloz_Tskitishvili" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Keanau_Post" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Anton_Shoutvin" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Benny_van_der_Reijden" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Marcus_Thornton_(basketball,_born_1992)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jerome_James" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Marcus_Liberty" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dirk_M\u00e4drich" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Uro\u0161_Petrovi\u0107_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Justin_Brownlee" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kyrylo_Natyazhko" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kyrylo_Fesenko" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lazaros_Agadakos" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mikal_Bridges" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Milo\u0161_Jankovi\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lazaro_Borrell" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Alan_Henderson" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Yaniv_Green" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rudy_Gay" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Marek_Doronin" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Allan_Bristow" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Romain_Duport" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sandro_Nicevi\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chris_Welp" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Martin_Nessley" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tom_Hovasse" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tang_Hamilton" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mike_Mitchell_(basketball,_born_1956)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Juwan_Howard" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Shane_Lawal" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chris_Eversley" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Andrija_Boji\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cory_Remekun" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Leon_Douglas" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Thaddeus_Young" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Martin_Kohlmaier" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mouhammadou_Jaiteh" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jim_Grandholm" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Adam_Hrycaniuk" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/\u0110or\u0111e_Drenovac" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rob_Kurz" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/V\u00edctor_Arteaga" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Robert_Covington" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mohammad_Hassanzadeh" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tom_Liden" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Marko_Ramljak" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jovo_Stanojevi\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Liam_McMorrow" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tautvydas_Lydeka" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Devin_Durrant" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Austin_Croshere" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Denis_Marconato" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Robert_Werdann" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Andrea_Renzi_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Buster_Matheney" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Craig_Ehlo" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Owen_Wells_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Magic_Johnson" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Grady_Lewis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tom_Chambers_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sven_Schultze" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Derrick_Hamilton_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sam_Clancy_Jr." + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Reggie_Harding" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ray_Ellefson" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Deon_Thompson" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Andre_Smith_(basketball,_born_1985)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rashard_Lewis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rami_Ibrahim" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kebu_Stewart" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Eric_Boateng" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Guy_Muya" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Thurl_Bailey" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/\u0110or\u0111e_Majstorovi\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jeremy_Richardson" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Eric_White_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Avis_Wyatt" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gaston_Essengu\u00e9" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Deshawn_Stephens" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Damion_James" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Will_Thomas_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gerard_King" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Christian_Wood" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Doug_Smith_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pape_Mbaye" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Yoong_Jing_Kwaan" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ashley_Hamilton_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Eurelijus_\u017dukauskas" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Evgeny_Valiev" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mel_Bennett" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mirsad_T\u00fcrkcan" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Roy_Tarpley" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Marko_Bani\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Keith_Van_Horn" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Savvas_Manousos" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nathan_Ball_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bob_Thornton" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Philip_Butel" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Richard_Jefferson" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bill_McGill" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/\u017diga_Dimec" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Christian_Eyenga" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Marc_Egerson" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/John_Richter" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lee_Cummard" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Alec_Kessler" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Matt_Gorman" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lou_Amundson" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cornell_Warner" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Amal_McCaskill" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Scott_Haskin" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kurt_Rambis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Victor_Rudd" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Majok_Deng" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Aaron_Gray" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Korel_Engin" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Delvon_Roe" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Andrew_Fields" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Charles_Ramsdell_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jake_Voskuhl" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jim_Bostic" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Antonis_Michaloglou" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Aleksandar_Radojevi\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jackie_Butler" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nazr_Mohammed" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Shaquille_O'Neal" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Zach_Collins" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rashad_Jones-Jennings" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/George_Patterson_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cleanthony_Early" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dan_Coleman_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sean_Lampley" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kostas_Charissis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cliff_Levingston" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chukwudiebere_Maduabum" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Phillip_Nolan_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bevo_Nordmann" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Roy_Hinson" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Steven_Smith_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vladislav_Dragojlovi\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Herb_Williams" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Oliver_Stevi\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ryan_Humphrey" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rasheed_Wallace" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Maciej_Lampe" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Luka_Mitrovi\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rick_Barry" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mateusz_Kostrzewski" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Eric_Piatkowski" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nikola_Prka\u010din" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sam_Dower" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kenny_Hall_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/J\u0101nis_B\u0113rzi\u0146\u0161_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hollis_Thompson" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bill_Hewitt_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Slava_Medvedenko" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ben_McDonald_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/John_Sinis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kerem_G\u00f6nl\u00fcm" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ivan_Marinkovi\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Glenn_Mosley_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Steve_Puidokas" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Faisal_Buressli" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Marcus_Fizer" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Danny_Fortson" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Du\u015fan_Cantekin" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Furkan_Korkmaz" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ricky_Berry" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/DaJuan_Summers" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ike_Ofoegbu" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Michael_Beasley" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Greg_Somogyi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bob_Miller_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Brad_Wright_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Darius_Paul" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chris_Hunter_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Andrew_Betts" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Les_Jepsen" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bruno_Coqueran" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Georgios_Apostolidis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Leonard_Taylor" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Itay_Segev" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Josh_Jackson_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Arnis_Vecvagars" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Will_Yeguete" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Haytham_Kamal_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Zoran_Krstanovi\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mike_Dunleavy_Jr." + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/LaSalle_Thompson" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/LeBron_James" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Michael_Paragyios" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/James_Singleton_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ram\u00f3n_Ramos" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Seif_Samir" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Carlos_Powell" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Elmedin_Kikanovi\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mike_Stewart_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Andrew_Kennedy_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Alexandros_Sigkounas" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tim_Kempton_Jr." + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Wesley_Johnson_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Al_Thornton" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Valery_Likhodey" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kareem_Abdul-Jabbar" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Larry_Moffett" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bill_Amis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bob_Kurland" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mike_Muscala" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Toni_Simi\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mick_Pennisi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Alec_Peters_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Oh_Se-keun" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rickie_Winslow" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Paul_Nolen" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Peter_John_Ramos" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ismael_Romero" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Joe_Pace" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Corny_Thompson" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/George_Bon_Salle" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Slobodan_Suboti\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ian_Hanavan" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/\u00d3scar_Garc\u00eda_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ali_Fakhreddine" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mark_Pope" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Russ_Schoene" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kieron_Achara" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Charles_Jackson_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mike_Brittain" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gerald_Green" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hasheem_Thabeet" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/DeJuan_Blair" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Eimantas_Bend\u017eius" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Fanis_Christodoulou" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Brandon_Ubel" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Milojko_Vasili\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Abdulwahab_Al-Hamwi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Damir_Markota" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chris_Marcus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lee_Nailon" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vladimir_Da\u0161i\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Evan_Bradds" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Miles_Plumlee" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rich_Kelley" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jacob_Larsen_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jeff_Cross_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Petr_Boha\u010d\u00edk" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Reggie_Theus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hank_McDowell" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Isaiah_Morris" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ron_Anderson_(basketball,_born_1989)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Charles_Jordan_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ugonna_Onyekwe" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bruce_Kuczenski" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Idong_Ibok" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Etan_Thomas" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hub_Reed" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Maarty_Leunen" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mohammad_Shaher" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Keith_Owens" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Emir_Sulejmanovi\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ratko_Radovanovi\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mark_Telan" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Aleksandar_Pavlovi\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sergei_Monia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mart\u00edn_Leiva" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jim_O'Brien_(basketball,_born_1951)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dennis_Scott_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Edward_Santana" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Quincy_Lewis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dan_Langhi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Alexander_Nelcha" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ousman_Krubally" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Antonio_McDyess" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dominique_Wilkins" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bo_Outlaw" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/James_Wilkes_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Larry_Foust" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chris_Copeland" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Andrew_Bynum" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Halil_Kanacevi\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rawle_Marshall" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ivan_Mara\u0161" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/David_Wood_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kevin_Laue" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Evan_Turner" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Elmore_Smith" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Anthony_Myles_(basketball,_born_1982)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Wally_Walker" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Scott_Thompson_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Giacomo_Galanda" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Richard_Melzer" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Landon_Milbourne" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sean_Marks" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Richard_Lugo" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jordan_Henriquez" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Axel_Hervelle" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Malik_Ausean_Evans" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sozhasingarayer_Robinson" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bob_Mattick" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bob_Christian_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Art\u016brs_B\u0113rzi\u0146\u0161" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Frank_Kornet" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Adnan_Hod\u017ei\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mark_Andaya" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rafael_Ara\u00fajo_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Boris_Savovi\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bob_Rule" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/June_Mar_Fajardo" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Alvan_Adams" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Darren_Daye" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ronald_Kozlicki" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Matthew_Rogers_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chuck_Eidson" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bill_Bunting" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Samet_Geyik" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gary_Plummer_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Charles_Mammie" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Shawn_King_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hanno_M\u00f6tt\u00f6l\u00e4" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/H\u00e9ctor_Hern\u00e1ndez_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Martin_Cattalini" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kristjan_Kitsing" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gerald_Lee_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Major_Jones" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Wilson_Washington" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Yannick_Anzuluni" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Darius_Songaila" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nikola_Milutinov" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ryan_Perryman" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pape_Badiane" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Andy_Seigle" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Micha\u0142_Ignerski" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Al_Fleming_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ian_Sangalang" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Amile_Jefferson" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Burdette_Haldorson" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vladimir_Stepania" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Phil_Jordon" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/E._C._Coleman" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Scotty_Hopson" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Fabricio_Vay" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dave_Batton" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Levy_Middlebrooks" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dave_Newmark" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kyle_Casey" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ben_Handlogten" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Danny_Manning" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cedi_Osman" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Milo\u0161_Babi\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mike_Green_(basketball,_born_1951)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Coleman_Collins" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Byron_Beck" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Robert_Dozier" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ryan_Spangler" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Alfred_Aboya" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ed_Pinckney" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tony_Snell_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/J._P._Prince" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lorenzen_Wright" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rain_Raadik" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Egemen_G\u00fcven" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Uro\u0161_Vasiljevi\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Paul_Hogue" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Shawn_Taggart" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lonnie_Shelton" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lubo\u0161_Barto\u0148" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Patrik_Auda" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nedim_Buza" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Josh_Scott_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dionysis_Skoulidas" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/James_Bailey_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Horace_Grant" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Danilo_Gallinari" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kosta_Perovi\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Larry_Stewart_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pascal_Siakam" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Glenn_Feidanga" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Slavi\u0161a_Koprivica" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Omar_Samhan" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chuck_Person" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Michael_Schachtner" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Brad_Daugherty_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Linton_Johnson" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Scott_Wedman" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/James_Ratiff" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Aleksandar_\u010cubrilo" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Earl_Jones_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/George_Reese_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Robert_Swift" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gil_McGregor" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Malik_Allen" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Evers_Burns" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Khem_Birch" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Solomon_Jones_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Walter_Tavares" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Derrick_Jones_Jr." + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Guy_Parselany" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Maleye_N'Doye" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Don_MacLean_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chris_Mihm" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Travis_Reed" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Keith_McCord" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Patrick_Ewing" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dave_Butler_(basketball,_born_1964/1965)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ognjen_A\u0161krabi\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/D'or_Fischer" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ante_\u017di\u017ei\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Art\u016bras_Gudaitis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Craig_Osaikhwuwuomwan" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Travon_Bryant" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Alexis_Wangmene" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Artem_Zabelin" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tracy_McGrady" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/PKP_class_SM04" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Metta_World_Peace" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Stojko_Vrankovi\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ryan_Reid" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/National_Basketball_Players_Association", + "surface form": "basketball players" + } + ], + "relations": [ + { "URI": "http://dbpedia.org/ontology/show", "surface form": "show" }, + { + "URI": "http://dbpedia.org/ontology/seniority", + "surface form": "higher" + }, + { + "URI": "http://dbpedia.org/ontology/iso6392Code", + "surface form": "2 meters" + } + ] + }, + { + "id": "35", + "answertype": "date", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "When was the Statue of Liberty built?", + "keywords": "Statue of Liberty, built" + } + ], + "query": { + "sparql": "SELECT DISTINCT ?date WHERE { <http://dbpedia.org/resource/Statue_of_Liberty> <http://dbpedia.org/property/beginningDate> ?date }" + }, + "answers": [ + { + "head": { "vars": ["date"] }, + "results": { + "bindings": [ + { "date": { "type": "literal", "value": "1886-10-28" } } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Statue_of_Liberty", + "surface form": "Statue of Liberty" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/numberBuilt", + "surface form": "built" + } + ] + }, + { + "id": "36", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Which states border Illinois?", + "keywords": "state, border, Illinois" + } + ], + "query": { + "sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Illinois> <http://dbpedia.org/property/borderingstates> ?uri }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kentucky" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Missouri" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Wisconsin" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Indiana" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Iowa" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Illinois", + "surface form": "Illinois" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/border", + "surface form": "border" + } + ] + }, + { + "id": "37", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Who developed Minecraft?", + "keywords": "Minecraft, develop" + } + ], + "query": { + "sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Minecraft> <http://dbpedia.org/ontology/developer> ?uri }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mojang" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Minecraft", + "surface form": "Minecraft" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/developer", + "surface form": "developed" + } + ] + }, + { + "id": "38", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Where did Hillel Slovak die?", + "keywords": "Hillel Slovak, death place" + } + ], + "query": { + "sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Hillel_Slovak> <http://dbpedia.org/ontology/deathPlace> ?uri }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hollywood" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/California" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Los_Angeles" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Hillel_Slovak", + "surface form": "Hillel Slovak" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/deathDate", + "surface form": "die" + } + ] + }, + { + "id": "39", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "What movies does Jesse Eisenberg play in?", + "keywords": "movies, Jesse Eisenberg" + } + ], + "query": { + "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Film> ; <http://dbpedia.org/ontology/starring> <http://dbpedia.org/resource/Jesse_Eisenberg> }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Batman_v_Superman:_Dawn_of_Justice" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Double_(2013_film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Adventureland_(film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Squid_and_the_Whale" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/American_Ultra" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cursed_(2005_film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Caf\u00e9_Society_(film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Now_You_See_Me_(film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Free_Samples" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Now_You_See_Me_2" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Living_Wake" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Social_Network" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_End_of_the_Tour" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Camp_Hell" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/He's_Way_More_Famous_Than_You" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Hunting_Party_(2007_film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rio_(2011_film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Why_Stop_Now_(film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/To_Rome_with_Love_(film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/30_Minutes_or_Less" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Louder_Than_Bombs_(film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rio_2" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Education_of_Charlie_Banks" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Night_Moves_(2013_film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Solitary_Man_(film)" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Jesse_Eisenberg", + "surface form": "Jesse Eisenberg" + } + ], + "relations": [ + { "URI": "http://dbpedia.org/ontology/film", "surface form": "movies" }, + { + "URI": "http://dbpedia.org/ontology/starring", + "surface form": "play" + } + ] + }, + { + "id": "40", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Give all swimmers that were born in Moscow.", + "keywords": "swimmer, born, Moscow" + } + ], + "query": { + "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Swimmer> ; <http://dbpedia.org/ontology/birthPlace> <http://dbpedia.org/resource/Moscow> }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Irena_Olevsky" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Yevgeny_Novikov" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nikolai_Pankin" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sergey_Lavrenov" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Igor_Grivennikov" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Artem_Lobuzov" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Svetlana_Chimrova" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vladimir_Shuvalov" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Valentina_Tutayeva" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Viktor_Mazanov" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Valentin_Kuzmin" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Semyon_Belits-Geiman" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Stanislava_Komarova" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Marina_Kosheveya" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Anastasia_Chaun" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vladimir_Minashkin" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gelena_Topilina" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Irina_Grazhdanova" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Anisya_Olkhova" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pyotr_Skripchenkov" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Viktor_Drobinsky" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Olesya_Vladykina" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Yevgeny_Korotyshkin" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Irina_Pozdnyakova" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Elena_Prokofyeva" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Aleksandr_Pletnev" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Irina_Abysova" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Alexey_Zinovyev" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Danil_Haustov" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Svetlana_Romashina" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mikhail_Polischuk" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Maria_Shurochkina" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Aleksandr_Samsonov" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Anastasia_Davydova" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nina_Petrova" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Alla_Shishkina" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Elena_Sokolova_(swimmer)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Andrey_Dunayev" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Alla_Grebennikova" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Aleksandr_Paramonov" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Marina_Chepurkova" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Alexandra_Patskevich" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Oleg_Fotin" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Yekaterina_Vinogradova" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rozaliya_Nasretdinova" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Anastasia_Diodorova" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Viktor_Sharygin" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Aleksandr_Fedorovsky" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Marina_Shamal" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Valentina_Poznyak" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vladimir_Kravchenko" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Viktor_Konoplyov_(swimmer)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mariya_Gromova" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Aleksey_Kudryavtsev" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vladislav_Kulikov" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Anton_Chupkov" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Andrey_Krylov_(swimmer_born_1984)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Elvira_Khasyanova" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Darina_Valitova" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nikolay_Suhorukov" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tamara_Sosnova" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Anastasia_Gloushkov" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Daniela_In\u00e1cio" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Maria_Gromova_(swimmer)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Olga_Sedakova_(synchronised_swimmer)" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Swimmers_(film)", + "surface form": "swimmers" + }, + { + "URI": "http://dbpedia.org/resource/Moscow", + "surface form": "Moscow" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/birthPlace", + "surface form": "born" + } + ] + }, + { + "id": "41", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Give me all cosmonauts.", + "keywords": "cosmonauts" + } + ], + "query": { + "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Astronaut> { ?uri <http://dbpedia.org/ontology/nationality> <http://dbpedia.org/resource/Russia> } UNION { ?uri <http://dbpedia.org/ontology/nationality> <http://dbpedia.org/resource/Soviet_Union> } }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Yury_Usachov" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lev_Dyomin" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Anatoly_Solovyev" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dmitri_Kondratyev" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Boris_Volynov" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ivan_Anikeyev" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Viktor_Patsayev" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sergei_Avdeyev" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Boris_Yegorov" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Roman_Romanenko" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sergei_Zalyotin" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Yury_Lonchakov" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gennady_Padalka" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vitaly_Zholobov" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Yuri_Baturin" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Anatoly_Artsebarsky" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Boris_Andreyev_(cosmonaut)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Grigori_Nelyubov" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Aleksei_Yeliseyev" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mikhail_Kornienko" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Yury_Onufriyenko" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sergey_Volkov_(cosmonaut)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pavel_Belyayev" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mikhail_Tyurin" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vasily_Lazarev" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Leonid_Kizim" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Valeri_Tokarev" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sergey_Nikolayevich_Ryzhikov" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nikolai_Budarin" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vyacheslav_Zudov" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Oleg_Atkov" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Anatoly_Filipchenko" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Yelena_Serova" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nikolai_Tikhonov_(cosmonaut)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vladimir_Dezhurov" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vladimir_Kovalyonok" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Yelena_Kondakova" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Evgeny_Tarelkin" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gherman_Titov" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Yury_Romanenko" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Aleksandr_Poleshchuk" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Aleksandr_Nikolayevich_Balandin" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Andrei_Borisenko" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Yury_Artyukhin" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Valery_Rozhdestvensky" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Valery_Korzun" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Yuri_Shargin" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Leonid_Popov" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vladimir_Komarov" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Andriyan_Nikolayev" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vladimir_Vasyutin" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Oleg_Artemyev" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Yuri_Gidzenko" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Aleksey_Ovchinin" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Aleksei_Gubarev" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Igor_Volk" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Valentin_Filatyev" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sergei_Treshchov" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nikolay_Rukavishnikov" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sergei_Revin" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pyotr_Klimuk" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Yevgeny_Khrunov" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Anatoly_Berezovoy" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sergey_Ryazansky" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Aleksandr_Skvortsov_(cosmonaut)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Aleksandr_Kaleri" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Anatoli_Ivanishin" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Aleksandr_Lazutkin" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Yury_Malyshev_(cosmonaut)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Viktor_Gorbatko" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Aleksandr_Samokutyayev" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Viktor_Afanasyev_(cosmonaut)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vladimir_Aksyonov" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Georgy_Dobrovolsky" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Aleksandr_Viktorenko" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Oleg_Kononenko" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Valery_Ryumin" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vladimir_Solovyov_(cosmonaut)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Anatoli_Levchenko" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mars_Rafikov" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Valeri_Kubasov" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Maksim_Surayev" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Anna_Kikina" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Boris_Morukov" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pavel_Vinogradov" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vasily_Tsibliyev" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vladimir_Shatalov" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Anton_Shkaplerov" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Viktor_Savinykh" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Valery_Bykovsky" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Alexander_Misurkin" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Oleg_Kotov" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Yuri_Malenchenko" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Aleksandr_Ivanchenkov" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Aleksandr_Aleksandrovich_Volkov" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Konstantin_Valkov" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vladimir_Georgiyevich_Titov" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Fyodor_Yurchikhin" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vladimir_Dzhanibekov" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gennadi_Sarafanov" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Valentina_Tereshkova" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Yury_Glazkov" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vladislav_Volkov" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gennadi_Manakov" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Valentin_Lebedev" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vitaly_Sevastyanov" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Georgy_Shonin" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Oleg_Grigoryevich_Makarov" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Oleg_Novitskiy" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sergei_Krikalev" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Aleksandr_Pavlovich_Aleksandrov" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Oleg_Skripochka" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Aleksandr_Laveykin" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Aleksandr_Serebrov" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Svetlana_Savitskaya" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Georgy_Grechko" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gennadi_Strekalov" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pavel_Popovich" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Cosmonauts_Alley", + "surface form": "Cosmonauts" + } + ], + "relations": [] + }, + { + "id": "42", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Give me all Swiss non-profit organizations.", + "keywords": "Swiss, non-profit organization" + } + ], + "query": { + "sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/type> <http://dbpedia.org/resource/Nonprofit_organization> { ?uri <http://dbpedia.org/ontology/location> <http://dbpedia.org/resource/Switzerland> } UNION { ?uri <http://dbpedia.org/ontology/location> ?x . ?x <http://dbpedia.org/ontology/country> <http://dbpedia.org/resource/Switzerland> } }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Swiss_Medical_Students\u2019_Association" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Non\u2013profit_organizations_based_in_California", + "surface form": "Swiss non-profit organizations" + } + ], + "relations": [] + }, + { + "id": "43", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Which presidents were born in 1945?", + "keywords": "president, born, 1945" + } + ], + "query": { + "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/President> ; <http://dbpedia.org/ontology/birthDate> ?date FILTER regex(?date, \"^1945\") }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Abdirahman_Farole" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Azeem_Amrohvi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sheku_Badara_Bashiru_Dumbuya" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Joe_Robert_Pemagbi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Yuriy_Meshkov" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Moshe_Katsav" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Seyed_Ali_Asghar_Dastgheib" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ali_Fallahian" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Joe_Ghiz" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jorge_Serrano_El\u00edas" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Muhammad_Muhammad_Taib" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Akbar_Tandjung" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mom\u010dilo_Kraji\u0161nik" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/John_Fahey_(politician)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mohammad_Reza_Nematzadeh" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Radovan_Karad\u017ei\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/John_Olsen" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Morteza_Mohammadkhan" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vladislav_Ardzinba" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Faruk_S\u00fcren" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Charles_Margai" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bu-Buakei_Jabbi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lee_Jong-wook" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Zlatko_Tom\u010di\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Igor_Ivanov" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gholam-Ali_Haddad-Adel" + } + } + ] + } + } + ], + "entities": [ + { "URI": "http://dbpedia.org/resource/1945", "surface form": "1945" } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/country", + "surface form": "presidents" + }, + { + "URI": "http://dbpedia.org/ontology/birthPlace", + "surface form": "born" + } + ] + }, + { + "id": "44", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "What kind of music did Lou Reed play?", + "keywords": "kind of music, Lou Reed, play" + } + ], + "query": { + "sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Lou_Reed> <http://dbpedia.org/ontology/genre> ?uri }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Proto-punk" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Art_rock" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rock_music" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Glam_rock" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Experimental_music" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Lou_Reed", + "surface form": "Lou Reed" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/musicalBand", + "surface form": "music" + }, + { + "URI": "http://dbpedia.org/ontology/starring", + "surface form": "play" + } + ] + }, + { + "id": "45", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Where do the Red Sox play?", + "keywords": "where, Red Sox, play" + } + ], + "query": { + "sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Boston_Red_Sox> <http://dbpedia.org/property/ballpark> ?uri }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Fenway_Park" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Boston_Red_Sox", + "surface form": "Red Sox" + } + ], + "relations": [ + { "URI": "http://dbpedia.org/ontology/team", "surface form": "play" } + ] + }, + { + "id": "46", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Show a list of soccer clubs that play in the Bundesliga.", + "keywords": "soccer clubs, play, Bundesliga" + } + ], + "query": { + "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/SoccerClub> ; <http://dbpedia.org/ontology/league> <http://dbpedia.org/resource/Bundesliga> }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Borussia_M\u00f6nchengladbach" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/SV_Darmstadt_98" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/FC_Augsburg" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bayer_04_Leverkusen" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/VfL_Wolfsburg" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/FC_Ingolstadt_04" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Eintracht_Frankfurt" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/SC_Freiburg" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hertha_BSC" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/1._FC_K\u00f6ln" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/SV_Werder_Bremen" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/1._FSV_Mainz_05" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/FC_Schalke_04" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/RB_Leipzig" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/TSG_1899_Hoffenheim" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/FC_Bayern_Munich" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Borussia_Dortmund" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hamburger_SV" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Bundesliga", + "surface form": "Bundesliga" + } + ], + "relations": [ + { "URI": "http://dbpedia.org/ontology/show", "surface form": "show" }, + { + "URI": "http://dbpedia.org/ontology/clubsRecordGoalscorer", + "surface form": "soccer clubs" + }, + { "URI": "http://dbpedia.org/ontology/team", "surface form": "play" } + ] + }, + { + "id": "47", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Which volcanos in Japan erupted since 2000?", + "keywords": "volcanos, Japan, erupted, since 2000" + } + ], + "query": { + "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Volcano> ; <http://dbpedia.org/ontology/locatedInArea> <http://dbpedia.org/resource/Japan> ; <http://dbpedia.org/ontology/eruptionYear> ?date FILTER ( year(?date) >= 2000 ) }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mount_Meakan" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mount_I\u014d_(I\u014djima)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mount_Tokachi_(Daisetsuzan)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Shinmoedake" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mount_Ontake" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hokkaido_Koma-ga-take" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mount_Usu" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Billings_Volcanos_(basketball)", + "surface form": "volcanos" + }, + { "URI": "http://dbpedia.org/resource/Japan", "surface form": "Japan" }, + { "URI": "http://dbpedia.org/resource/2000", "surface form": "2000" } + ], + "relations": [ + { + "URI": "http://dbpedia.org/property/erected", + "surface form": "erupted" + } + ] + }, + { + "id": "48", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Which bridges cross the Seine?", + "keywords": "bridges, cross, Seine" + } + ], + "query": { + "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Bridge> ; <http://dbpedia.org/ontology/crosses> <http://dbpedia.org/resource/Seine> }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pont_de_Normandie" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pont_Louis-Philippe" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pont_amont" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pont_de_Bir-Hakeim" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Passerelle_Debilly" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pont_Rouelle" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pont_de_Brotonne" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pont_de_l'Alma" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pont_Alexandre_III" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pont_Notre-Dame" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pont_National" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pont_de_la_Tournelle" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pont_Royal" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pont_aval" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pont_Neuf" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pont_des_Invalides" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pont_de_Tolbiac" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pont_d'I\u00e9na" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Viaduc_d'Austerlitz" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pont_de_Bercy" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pont_de_Neuilly" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pont_de_Grenelle" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pont_Charles-de-Gaulle" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Port_\u00e0_l'Anglais_Bridge" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pont_du_Carrousel" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pont_du_Garigliano" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Passerelle_Simone-de-Beauvoir" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pont_de_l'Archev\u00each\u00e9" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pont_de_Sully" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pont_Marie" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pont_au_Double" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pont_au_Change" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pont_d'Austerlitz" + } + } + ] + } + } + ], + "entities": [ + { "URI": "http://dbpedia.org/resource/Seine", "surface form": "Seine" } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/abstract", + "surface form": "bridges" + }, + { + "URI": "http://dbpedia.org/ontology/network", + "surface form": "cross" + } + ] + }, + { + "id": "49", + "answertype": "string", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "What is the official color of the University of Oxford?", + "keywords": "University of Oxford, official color" + } + ], + "query": { + "sparql": "SELECT DISTINCT ?string WHERE { <http://dbpedia.org/resource/University_of_Oxford> <http://dbpedia.org/ontology/officialSchoolColour> ?string }" + }, + "answers": [ + { + "head": { "vars": ["string"] }, + "results": { + "bindings": [ + { "string": { "type": "literal", "value": "Oxford blue" } } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/University_of_Oxford", + "surface form": "University of Oxford" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/incumbent", + "surface form": "official color" + } + ] + }, + { + "id": "50", + "answertype": "number", + "aggregation": true, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "How many films did Hal Roach produce?", + "keywords": "Hal Roach, produce, film" + } + ], + "query": { + "sparql": "SELECT (COUNT(DISTINCT ?uri) AS ?c) WHERE { ?uri <http://dbpedia.org/ontology/producer> <http://dbpedia.org/resource/Hal_Roach> }" + }, + "answers": [ + { + "head": { "vars": ["c"] }, + "results": { + "bindings": [{ "c": { "type": "literal", "value": "530" } }] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Hal_Roach", + "surface form": "Hal Roach" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/numberOfFilms", + "surface form": "films" + }, + { + "URI": "http://dbpedia.org/ontology/producer", + "surface form": "produce" + } + ] + }, + { + "id": "51", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Give me all Danish movies.", + "keywords": "movie, Denmark" + } + ], + "query": { + "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Film> ; <http://dbpedia.org/ontology/country> <http://dbpedia.org/resource/Denmark> }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Stolen_Spring_(film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Frode_og_alle_de_andre_r\u00f8dder__Frode_og_alle_de_andre_r\u00f8dder__1" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tr\u00e6llene_/_The_Thralls" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Breaking_the_Waves" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ronal_the_Barbarian" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Valhalla_(film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Little_Brother,_Big_Trouble:_A_Christmas_Adventure" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Forbidden_Team" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Fidibus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Skal_vi_v\u00e6dde_en_million%3F" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Asterix_and_the_Vikings" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Monastery:_Mr._Vig_and_the_Nun" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Open_Hearts" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Red_Meadows" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Inheritance_(2003_film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dancer_in_the_Dark" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Den_farlige_alder" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Str\u00f8mer" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Danmarks_N\u00e6ste_Topmodel_(cycle_4)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Next_Stop_Paradise" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/After_the_Wedding" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Flickering_Lights" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Princess_(2006_film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nation_Estate" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/You_Are_Not_Alone_(film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/H\u00f8jt_paa_en_kvist" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sons_of_the_Soil" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jeg_har_elsket_og_levet" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Constance_(1998_film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bornholms_stemme" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Family_Matters_(film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Burma_VJ" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Khomeini's_Boys" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/De_blaa_drenge" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/ID_A" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Venner_for_altid" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/K\u00f8benhavnere" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/En_slem_Dreng" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ghost_Train_International" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/N\u00f8ddebo_Pr\u00e6steg\u00e5rd" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Familien_Pille_som_Spejdere" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pelle_the_Conqueror" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Babette's_Feast" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/K\u00f8rsel_med_Gr\u00f8nlandske_Hunde" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/A_Summer_Tale" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bang_Bang_Orangutang" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Don_Olsen_kommer_til_byen" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Arn_\u2013_The_Knight_Templar" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Vicar_of_Vejlby_(1931_film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Viking_Watch_of_the_Danish_Seaman" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Songs_from_the_Second_Floor" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Klown_Forever" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bionicle:_Mask_of_Light" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/De_5_i_fedtefadet" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sunes_familie" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ditte,_Child_of_Man" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gasolin'_(film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Credo_(1997_film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Farlig_Ungdom" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Herberg_for_Hjeml\u00f8se" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Susanne_(1950_film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Benny's_Bathtub" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Der_kom_en_dag" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/We_Meet_at_Tove's" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Murk_(film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Den_kul\u00f8rte_Slavehandler" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/What_No_One_Knows" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hotel_Paradis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kira's_Reason:_A_Love_Story" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Busters_verden" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Eye_of_the_Eagle_(film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/De_Udstillede" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nynne" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kong_Buksel\u00f8s" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Eksperimentet" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Perfect_Human" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nordhavets_m\u00e6nd" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Echo_(2007_film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/De_besejrede_Pebersvende" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vildledt_Elskov" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Fr\u00e6kke_Frida_og_de_frygtl\u00f8se_spioner" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Af_banen" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bag_K\u00f8benhavns_kulisser" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Giv_Gud_en_chance_om_s\u00f8ndagen" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Stjerneskud" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/K\u00e6rlighed_og_Mobilisering" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Karlas_kabale" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Samson_&_Sally" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Journey_to_Saturn" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/A_War" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Antichrist_(film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Crying_for_Love" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Supervoksen" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Help!_I'm_a_Fish" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jag_\u00e4r_din_krigare" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Webmaster_(film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Frk._M\u00f8llers_jubil\u00e6um" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/That's_Me,_Too" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Der_var_engang_en_vicev\u00e6rt" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Let's_Get_Lost_(1997_film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/When_the_Light_Comes" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Smiling_in_a_War_Zone" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Reptilicus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/L\u00f8vejagten" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Regel_nr._1" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Sinful_Dwarf" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pusher_(film_series)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Journey_to_the_Seventh_Planet" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Der_rote_Kreis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Something_Better_to_Come" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Torremolinos_73" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Stealing_Rembrandt" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Teddy_Bear_(2012_film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Terribly_Happy" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Melody_of_Murder" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Monas_verden" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Minor_Mishaps" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ai_Weiwei:_The_Fake_Case" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Manslaughter_(2005_film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kun_en_Tigger" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Denmark", + "surface form": "Danish movies" + }, + { + "URI": "http://dbpedia.org/resource/The_Movies_(film)", + "surface form": "Danish movies" + } + ], + "relations": [ + { "URI": "http://dbpedia.org/ontology/country", "surface form": "" } + ] + }, + { + "id": "52", + "answertype": "resource", + "aggregation": true, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "What is the most frequent cause of death?", + "keywords": "cause of death, most frequent" + } + ], + "query": { + "sparql": "SELECT DISTINCT ?x WHERE { ?uri <http://dbpedia.org/ontology/deathCause> ?x . } ORDER BY DESC(COUNT(DISTINCT ?uri)) OFFSET 0 LIMIT 1" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Myocardial_infarction" + } + } + ] + } + } + ], + "entities": [], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/patron", + "surface form": "frequent" + }, + { "URI": "http://dbpedia.org/ontology/fate", "surface form": "death" } + ] + }, + { + "id": "53", + "answertype": "resource", + "aggregation": false, + "onlydbo": false, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Who are the four youngest MVP basketball players?", + "keywords": "four, youngest, MVP, basketball player" + } + ], + "query": { + "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/BasketballPlayer> ; <http://dbpedia.org/ontology/birthDate> ?date ; <http://dbpedia.org/property/highlights> ?h FILTER regex(?h, \"MVP\") } ORDER BY DESC(?date) OFFSET 0 LIMIT 4" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Frank_Jackson_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/D\u017eanan_Musa" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Markelle_Fultz" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bori\u0161a_Simani\u0107" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/NBA_Most_Valuable_Player_Award", + "surface form": "MVP" + }, + { + "URI": "http://dbpedia.org/resource/National_Basketball_Players_Association", + "surface form": "basketball players" + } + ], + "relations": [] + }, + { + "id": "54", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Give me all companies in Munich.", + "keywords": "company, Munich" + } + ], + "query": { + "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Company> { ?uri <http://dbpedia.org/ontology/location> <http://dbpedia.org/resource/Munich> } UNION { ?uri <http://dbpedia.org/ontology/headquarter> <http://dbpedia.org/resource/Munich> } UNION { ?uri <http://dbpedia.org/ontology/locationCity> <http://dbpedia.org/resource/Munich> } }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Allianz" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Generali_Deutschland" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/SIN_Cars" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/BayWa" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/ECircle" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/RedSpotGames" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sixt" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Grouptime" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Siemens" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gigaset_Communications" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vitruvian_Partners" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Munich_Re" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Iobox" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Crossgate_AG" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bayerische_Eisenbahngesellschaft" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/M\u00fcnchner_Verkehrsgesellschaft" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Carpooling.com" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Turner_Broadcasting_System_Germany" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Torry_Harris_Business_Solutions" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Keil_(company)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ed_Meier" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kuckuck_Schallplatten" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mitropa" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/M\u00fcnchner_Verkehrs-_und_Tarifverbund" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Fujitsu_Siemens_Computers" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/MAN_SE" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mutares" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Biomax_Informatics_AG" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/HypoVereinsbank" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tomorrow_Focus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/White_Line_Hotels" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Wacker_Chemie" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Fraunhofer_Society" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/JMT_Records" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jetair_(Germany)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Noerr" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Realmforge_Studios" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/MAN_Turbo" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Travelzoo" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Wellington_Partners" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bumblehood" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Discovery_Networks_Deutschland" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/HgCapital" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Knorr-Bremse" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Roland_Berger_(company)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Travian_Games" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Schaltbau_Group" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Coriant" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Arri" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Impuls" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pilotfish_(company)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/VEM_Aktienbank" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Emotion_Media_Factory" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Qimonda" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dresdner-Cetelem_Kreditbank_GmbH" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Stadtwerke_M\u00fcnchen" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/ACT_Music" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/ADESS_AG" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/JAPO_Records" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lufttransport_S\u00fcd" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Stern_Stewart_&_Co" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Disney_XD_(Europe)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Metaio" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rapp_Motorenwerke" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Escada" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/MCON_GROUP" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Flixbus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/ECM_Records" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Siemens_Mobile" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Atos" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chimera_Entertainment" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hypo_Real_Estate" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Little_Teddy_Recordings" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Shin'en_Multimedia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Serviceplan" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hacker-Pschorr_Brewery" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Klotz_Digital" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/M\u00fcnchner_Bank" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Linde_Group" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Megazebra" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/DASA" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Winter_&_Winter_Records" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vogtlandbahn" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Osram" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nagarro" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Auer+Weber+Assoziierte" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nemetschek" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/MTU_Aero_Engines" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rodenstock_GmbH" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/DriveNow" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dyckerhoff_&_Widmann" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tado\u00b0" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sterneckerbr\u00e4u" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gaggenau_Hausger\u00e4te" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Augustiner-Br\u00e4u" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Certina_Holding" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Munich_Animation" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dubbing_Brothers" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rheinmetall_MAN_Military_Vehicles" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dallmayr" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Enja_Records" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Fujitsu_Technology_Solutions" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Edelsbrunner_Automobile_M\u00fcnchen" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Target_Partners" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Becoacht.com" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/HAWE_Hydraulik_SE" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nfon" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hans_im_Gl\u00fcck" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Constantin_Film" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/3Dconnexion" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/BMW" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Siemens_Financial_Services" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Telef\u00f3nica_Germany" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Finsterwalder" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hugendubel" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Proximic" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Focus_TV" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Haarmann_Hemmelrath" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Softlab" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Langenscheidt" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dehns" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Unify_Software_and_Solutions_GmbH_&_Co._KG." + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/BSH_Hausger\u00e4te" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/T\u00dcV_S\u00dcD" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gemalto_M2M" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Coreplay" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Celemony_Software" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Adinotec" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Railpool" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/MP_&_Silva" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/MAN_Truck_&_Bus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tokyo_Dawn_Records" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Amiando" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cirquent" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Neff_GmbH" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rohde_&_Schwarz" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Epcos" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tele_M\u00fcnchen_Gruppe" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Framepool" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Companies_listed_on_the_New_York_Stock_Exchange_(J)", + "surface form": "companies" + }, + { + "URI": "http://dbpedia.org/resource/Munich", + "surface form": "Munich" + } + ], + "relations": [] + }, + { + "id": "55", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Give me the capitals of all countries that the Himalayas run through.", + "keywords": "countries Himalayas run through, capitals" + } + ], + "query": { + "sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Himalayas> <http://dbpedia.org/ontology/country> ?country . ?country <http://dbpedia.org/ontology/capital> ?uri }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Thimphu" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Countries_of_the_United_Kingdom", + "surface form": "countries" + }, + { + "URI": "http://dbpedia.org/resource/Himalayas", + "surface form": "Himalayas" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/capital", + "surface form": "capitals" + }, + { "URI": "http://dbpedia.org/property/work", "surface form": "run" } + ] + }, + { + "id": "56", + "answertype": "number", + "aggregation": true, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "How many movies did Park Chan-wook direct?", + "keywords": "how many movies, directed, Park Chan-wook" + } + ], + "query": { + "sparql": "SELECT COUNT(DISTINCT ?uri AS ?uri) WHERE { ?uri <http://dbpedia.org/ontology/director> <http://dbpedia.org/resource/Park_Chan-wook> . }" + }, + "answers": [ + { + "head": { "vars": ["c"] }, + "results": { + "bindings": [{ "c": { "type": "literal", "value": "15" } }] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Park_Chan-wook", + "surface form": "Park Chan-wook direct" + } + ], + "relations": [ + { "URI": "http://dbpedia.org/ontology/film", "surface form": "movies" } + ] + }, + { + "id": "57", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Which rivers flow into a German lake?", + "keywords": "rivers, flow, German lake" + } + ], + "query": { + "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/River> . ?x <http://dbpedia.org/ontology/inflow> ?uri ; a <http://dbpedia.org/ontology/Lake> ; <http://dbpedia.org/ontology/country> <http://dbpedia.org/resource/Germany> }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Br\u00fceler_Bach" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Stepenitz_(Trave)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Trave" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nieplitz" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Konstanzer_Ach" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mildenitz_(river)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Aalbek_(Hemmelsdorfer_See)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Spree" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/M\u00fcnstersche_Aa" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bresenitz" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Schleemer_Bach" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rhin" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Wandse" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Black_Elster" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lech_(river)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Schlaube" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hochspeyerbach" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Isenach" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rhine" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Drosedower_Bek" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sophienflie\u00df" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bi\u00dfnitz" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Havel" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Alte_Schwentine" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/G\u00f6sebek" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Elde" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Osterbek" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nebel_(river)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Warnow" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Schwalm_(Meuse)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Alster" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Aubach_(bei_Schwerin)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Stendlitz" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Plane_(river)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Neffelbach" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kossau" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Schwentine" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Germany", + "surface form": "German lake" + }, + { + "URI": "http://dbpedia.org/resource/German_Lake", + "surface form": "German lake" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/operator", + "surface form": "rivers" + }, + { "URI": "http://dbpedia.org/property/float", "surface form": "flow" }, + { "URI": "http://dbpedia.org/ontology/country", "surface form": "" } + ] + }, + { + "id": "58", + "answertype": "number", + "aggregation": true, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "How many airlines are there?", + "keywords": "how many, airlines" + } + ], + "query": { + "sparql": "SELECT (COUNT(DISTINCT ?uri) AS ?c) WHERE { ?uri a <http://dbpedia.org/ontology/Airline> }" + }, + "answers": [ + { + "head": { "vars": ["c"] }, + "results": { + "bindings": [{ "c": { "type": "literal", "value": "4262" } }] + } + } + ], + "entities": [], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/icaoAirlineCode", + "surface form": "airlines" + } + ] + }, + { + "id": "59", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Give me all islands that belong to Japan.", + "keywords": "islands, Japan" + } + ], + "query": { + "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Island> ; <http://dbpedia.org/ontology/country> <http://dbpedia.org/resource/Japan> }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Iwo_Jima" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jinai-t\u014d" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kuroshima_(Kagoshima)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kyushu" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Oki_Islands" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ishigaki_Island" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hachij\u014d-kojima" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Yokoate-jima" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bayonnaise_Rocks" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tokara_Islands" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Miyake-jima" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kamome_Island" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Inamba-jima" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Izu_\u014cshima" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chichijima" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/\u014cnohara_Islands" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/\u014csumi_Islands" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Zamami_Island" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kogajajima" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sh\u014dwa_I\u014djima" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kitadait\u014djima" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Akusekijima" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Udone-shima" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Fukaji_Island" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kinkasan" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rebun_Island" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tsuken_Island" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Benten-jima_(Wakkanai)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Oshima_(Hokkaido)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hokkaido" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Okinotorishima" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Taketomi_Island" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Daikon_Island" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Amami_\u014cshima" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Genkai_Island" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hateruma" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Izena_Island" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nii_\u014cshima" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Aka_Island" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Geruma_Island" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Yaeyama_Islands" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Iejima" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Iriomote-jima" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kuchinoerabu-jima" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hashima_Island" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tokashiki_Island" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Takeshima_(Kagoshima)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hatsushima" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tanegashima" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Amami_Islands" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tobishima_(Yamagata)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hokkaido__island__1" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tori-shima_(Izu_Islands)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nakadori_Island" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Denshima" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Yagishiri_Island" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Okushiri_Island" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Awaji_Island" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Volcano_Islands" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Okamura_Island" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kume_Island" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mainland_Japan" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kojima_(Hokkaido)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tairajima" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rishiri_Island" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nakanoshima_(Kagoshima)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Miyako-jima" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ainoshima_(Shing\u016b)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gajajima" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tsushima_Island" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Manabeshima" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Yakushima" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kozukumi_Island" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Minamidait\u014djima" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dait\u014d_Islands" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Teuri_Island" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Iki_Island" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Yonaguni" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Smith_Island_(Japan)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Honshu" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mageshima" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Shikoku" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hahajima" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Okidait\u014djima" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Minami-Tori-shima" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/I\u014djima_(Kagoshima)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lot's_Wife_(crag)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Okinawa_Island" + } + } + ] + } + } + ], + "entities": [ + { "URI": "http://dbpedia.org/resource/Japan", "surface form": "Japan" } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/numberOfIslands", + "surface form": "islands" + }, + { "URI": "http://dbpedia.org/ontology/date", "surface form": "belong" } + ] + }, + { + "id": "60", + "answertype": "number", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "How many inhabitants does Maribor have?", + "keywords": "Maribor, inhabitants" + } + ], + "query": { + "sparql": "SELECT DISTINCT ?num WHERE { <http://dbpedia.org/resource/Maribor> <http://dbpedia.org/ontology/populationTotal> ?num }" + }, + "answers": [ + { + "head": { "vars": ["c"] }, + "results": { + "bindings": [{ "c": { "type": "literal", "value": "95881" } }] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Maribor", + "surface form": "Maribor" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/country", + "surface form": "inhabitants" + } + ] + }, + { + "id": "61", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Give me all Apollo 14 astronauts.", + "keywords": "astronaut, Apollo 14" + } + ], + "query": { + "sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/mission> <http://dbpedia.org/resource/Apollo_14> }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Stuart_Roosa" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Alan_Shepard" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Edgar_Mitchell" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Apollo_14", + "surface form": "Apollo 14 astronauts" + } + ], + "relations": [] + }, + { + "id": "62", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Which companies have more than 1 million employees?", + "keywords": "company, more than 1 million, employees" + } + ], + "query": { + "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Company> { ?uri <http://dbpedia.org/ontology/numberOfEmployees> ?n } UNION { ?uri <http://dbpedia.org/property/numEmployees> ?n } FILTER ( ?n > 1000000 ) }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mammoth_Resource_Partners" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Schweitzer_Engineering_Laboratories" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mechel" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/3_Skypephone_Series" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Valpadana" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/SIMPLE_Group" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Zimbabwe_United_Passenger_Company" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Raindirk_Audio" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bank_of_Credit_and_Commerce_International" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/PeerIndex" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Insurance_Company" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Titmouse,_Inc." + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gilt_Groupe" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Central_Music_Company" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Food_Corporation_of_India" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/DigitalMR" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/FareCompare" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Heibao_Auto" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/MIC_Tanzania_Limited" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Super_One_Foods" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/B\u00fchler_Motor" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Verpoorten" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Banque_du_Caire" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Blue_Coat_Systems" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/X-Vision" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Heelys,_Inc." + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/ClickStar" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Thermwood_Corporation" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/ASmallWorld" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Adzuna" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Royal_Canadian_Mint" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Recife_Center_for_Advanced_Studies_and_Systems" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/APEV" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Markem-Imaje" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Artizone" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Altiris" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rotel" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Raiffeisen_Zentralbank" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Metronet" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Stony_Hill_Vineyard" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Southern_Telecom" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Addtech" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/UMW_Holdings" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Caucasus_Online" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nizhniy_Tagil_Iron_and_Steel_Works" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Automobile_Products_of_India" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Maquet" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Quest_Broadcasting" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/H.D._Vest" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/1QBit" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Philippine_Airlines" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Aniche_Mining_Company" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Oriental_Trading_Company" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Northwell_Health" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/NCS_Pte_Ltd" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/GTC_Wireless" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Franco_Tosi_Meccanica" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Airgas" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Protekon" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/EVNTelecom" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bech-Bruun" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/International_Grooving_&_Grinding_Association" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nuix" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/AT&T_Alascom" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/System_Planning_Corporation" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Swedish_Transport_Administration" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Union_Bank_of_the_Philippines" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CardIt" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/JibJab" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hatz" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Standard_Pacific_Homes" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Continental_AG" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/First_Financial_Bank" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/China_Guangfa_Bank" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vinmonopolet" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mission_Essential" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/NayaTel" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Philippine_Postal_Savings_Bank" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Oporto_(restaurant)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/SOCAR" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/World's_Finest_Shows" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Auctionata" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/BHF_Bank" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Zarco_Exchange" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Reksoft" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Heritage_USA" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Medisafe_International" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kamaka_Ukulele" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gambro" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Interwetten" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/First_National_Bank_of_Tanzania" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Waltham_Manufacturing_Company" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cizeta" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vetter_Pharma" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/AHT_Cooling_Systems" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Fierro_Group" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Eushully" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pentosin" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hancock_Fabrics" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Swinton_Insurance" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Harmony_Gold_USA" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hook_Norton_Brewery" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Otis_Elevator_Company" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/International_Art_Materials_Trade_Association" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/LeanIX" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Soci\u00e9t\u00e9_des_alcools_du_Qu\u00e9bec" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Business_Connexion_Group" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tunisie_Telecom" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Commercial_Bank_of_Ceylon" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Venturesoft" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Broseley_Estates_Limited" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Selena_Etc." + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Roszheldorproject" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/R\u00fasdrekkas\u00f8la_Landsins" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/AXYKno" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Casengo" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Henderson_Group" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Azot_(Cherkasy)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Comazar" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/State_Grid_Corporation_of_China" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/S&P_Capital_IQ" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tutor_Perini" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/One_Vision_(DTT)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Geibeltbad_Pirna" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/B\u00fcttenpapierfabrik_Gmund" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Modus_FX" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Klarna" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/MACO_Door_&_Window" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vedanta_Limited" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Transnet_Freight_Rail" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/JOEY" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/SM&A" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Optus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rona,_Inc." + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gameaccess.ca" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rehau_Group" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Revenue_Technology_Services" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/FIIG_Securities" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/John_Galt_Solutions,_Inc." + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Turner_Entertainment" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Capital_Bars" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/LED_Eco_Lights" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Amnesty_International_Australia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Science_Summer_School_Inc." + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Miltenyi_Biotec" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Claro_Americas" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Neighborhood_Bike_Works" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tom_Thumb_Food_&_Pharmacy" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gyulaj_Hunting_Hungary" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Reser's_Fine_Foods" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/BMR_Group" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Caxton_FX" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Weightmans" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Airdrome_Aeroplanes" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bijoux_Terner" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/NDOORS_Corporation" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/DocuWare" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pliva" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/China_National_Petroleum_Corporation" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/City_Group" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lebedyansky_(company)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Freshfields_Bruckhaus_Deringer" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dixon_Hughes_Goodman" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Plesner_(law_firm)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Colorado_Time_Systems" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Allnex" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ankai" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Shihlin_Electric" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Avon_Rubber" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Junk_Mail_Digital_Media" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/SELEX_Sistemi_Integrati" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/DATEV" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cumberland_Community_Improvement_District" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bing_Boy" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/PTV_AG" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mad_Dog_Knives" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gilmore_Group" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Brookville_Equipment_Corporation" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CMC_Electronics" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sipani" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Forrec" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Meltwater_Group" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Wragge_Lawrence_Graham_&_Co" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/British_Parking_Association" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vortex_Optics" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Foo_Go" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/F._Hinds" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gamesville" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sri_Lanka_Railways" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bangabandhu_Aeronautical_Centre" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dagsbr\u00fan" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Utsch_AG" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Schweizerische_Industrie_Gesellschaft" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Press_Trust_of_India" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ardex_GmbH" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sennebogen" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Freightdynamics" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/OLM,_Inc." + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sheetz" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/JL_Mobile" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/FrieslandCampina" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Republic_Airways_Holdings" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Danish_Agro" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CapitalVia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Blogged.com" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Asian_Agri" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/ColosseoEAS" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cavedog_Entertainment" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Thrifty_Foods" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/LucasArts" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Maxfli" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jadever" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/EduFocal" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/BPI_Direct_Savings_Bank" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Image_Works" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Qype" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Heartland_Bank" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/ARGO-HYTOS" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Community_Bicycle_Network" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Shepherd_Building_Group" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mary_Kay" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Temelsu" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Broadjam" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dustin_AB" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bigott_Foundation" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Merck_Group" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Genji,_LLC" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pebble_bed_modular_reactor" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Deckers_Outdoor_Corporation" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Britannia_(former_building_society)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Heads_and_Hands" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sampan_(newspaper)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/AECOM" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/E.C.H._Will" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sigma-Aldrich" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/BMW_Brilliance" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dalsvyaz" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Permasteelisa" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Inq_Mobile" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Stevanato_Group" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/WeGrow_Store" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Famous_Studios" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Transport_Research_Laboratory" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CONVOTHERM_Elektroger\u00e4te_GmbH" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vardia_Insurance_Group" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Phar_Lap_(company)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Livescribe" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jain_Irrigation_Systems" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/TMW_Systems" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Topaz_Energy" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Soap_(shoes)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Minit_Mart_Foods_Inc." + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/RadiOrakel" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lightstream_Resources" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/J._K._Organisation" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Premier_Medical_Group" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Omninet" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Goodlight" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tokenzone" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Earth_Awards" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/VEGAS.com" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Adris_grupa" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Angelini" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/LTB_(company)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Coker_Tire" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/OEID" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Agate_Studio" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/DMM.com" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bodegas_Pomar,_C.A." + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/EDiets.com" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/MakerBot" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Adolescent_and_Children's_Trust" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Passenger_Rail_Agency_of_South_Africa" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Warner_Bros." + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vivox" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Meridian_Knowledge_Solutions" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/MobiFone" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Adventure_SA" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Executive_National_Bank" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/ECCO" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nature_Publishing_Group" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Town_Center_Area_Community_Improvement_District" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Patrick_Corporation" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/AED_Oil" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hutt_Workshops" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Honda_of_the_UK_Manufacturing" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Busey_Bank" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Julabo_Labortechnik" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Simon_David" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Weetabix_Limited" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Speedway_LLC" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tyan" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Univair_Aircraft_Corporation" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lippincott" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Vanguard_Group" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Fischer_(company)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/TC_Transcontinental" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/RUAG" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Clydesdale_Bank" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Arctech_Helsinki_Shipyard" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Linden_Lab" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Aberdeen_Asset_Management" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Milestones_Grill_and_Bar" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Turkish_Bank" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Channel_Technologies_Group" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Aditi_Technologies" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Asfour_crystal" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/ZUNO_Bank_AG" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jack_Wolfskin" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Camtel" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/South_Florida_Educational_Federal_Credit_Union" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Atlanta_Bread_Company" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Osaka_Titanium_Technologies" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Strider_Knives" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hamm_AG" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cervecer\u00eda_Polar" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Leupold_&_Stevens" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/ANGEL_Learning" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Donor_Sibling_Registry" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Azimut_Hotels" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Berenberg_Bank" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Trustmark_Companies" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/55DSL" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Zhongtong_Bus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Auctionair" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Fujitsu_Computer_Products_of_America" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Empresas_1BC" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Foundation_for_subsidiarity" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Zotefoams" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Interactive_Intelligence" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gushan_Environmental_Energy" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Domino_Printing_Sciences" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Zynga_with_Friends" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dimensional_Fund_Advisors" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/VanEck" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/UPC_Switzerland" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Instituto_Bioclon" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/P3_group" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/OpenLink_Software" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Interval_Research_Corporation" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/E-Loan" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Crown_Central_Petroleum" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sarenza" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Arnott_Air_Suspension_Products" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bernard_Krone_Holding" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hammonds" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Camfil" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Oxford_Student_Publications_Limited" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Blake_Morgan_LLP" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/German_Finance_Agency" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/McCarthy_T\u00e9trault" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Park_Systems" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Armacell" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ceylinco_Consolidated" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cory_Environmental" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kenda_Rubber_Industrial_Company" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/FreeWave_Technologies" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Malvern_Fringe_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Apulum_(company)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Emulex" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pets_Corner" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Archaeology_South-East" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/NNIT" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/MJ_Designs" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/K\u00e4rcher" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Samba_Financial_Group" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Los_Alamos_Technical_Associates" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Interprint" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Home_Interiors_and_Gifts" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/European_Retail_Round_Table" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Digiboo" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Shionogi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Salans" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Svyazinvest" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/\u00c7ukurova_Holding" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Canadia_Bank" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/One_Communications" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mission_Foods" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Adecco_Group" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Minster_Machine_Company" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Credit_Sesame" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Asia_Venture_Group" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Olympic_Steel" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gestamp_Automoci\u00f3n" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Trussed_Concrete_Steel_Company" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Railway_Board" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Carbine_Studios" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/FCC_Environment" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Fleischer_Studios" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Citizenre" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sahara_Press_Service" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Artevea" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bay_Ferries" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/1st_Valley_Bank" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Syhunt" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Alba_(brand)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Neptune_Wellness_Solutions" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vodafone_Germany" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/EMP_Merchandising" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Traffic_(conservation_programme)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hearst_Television" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Infobip" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Primetals_Technologies" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Donaudampfschiffahrtsgesellschaft" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Colt's_Manufacturing_Company" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/InterCall" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Interceptor_Entertainment" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kirloskar_Oil_Engines_Limited" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/OB10" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sendik's_Food_Market" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/MATIS_Group" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Asendia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/ClearSpeed" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/John_Keells_Computer_Services" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Symphony_Teleca" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Big_Market" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ainol" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/PCL_Construction" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Red_Lizard_Software" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Truvo" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Myreno411" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/EKOSPOL" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Proximedia_Group" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Velocite_Bikes" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pashtany_Bank" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Veeco" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/TE_Data" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/West_Coast_Customs" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Martin_Bencher" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bohnacker_Systeme" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Thorntons" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Marquardt_Group" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Black_Forest_Games" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Snap_Kick_Productions" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vyborg_Shipyard" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Weatherbys" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/TeleTrade" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Telespazio" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Baytex_Energy" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Proxim" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pulitzer,_Inc." + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ulstein_Group" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gr\u00fcnenthal_GmbH" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Zupan's_Markets" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ideal_Jawa" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Occidental_Petroleum" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Diamond_Management_&_Technology_Consultants" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hacker-Pschorr_Brewery" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Fuji_Food" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Roberts_Radio" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CIMPA" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Eutechnyx" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Titan_Motorcycle_Company" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Daktronics" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sonus_Networks" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Huanghai_Bus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Evangelical_Lutheran_Good_Samaritan_Society" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tranquilidade" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Secop" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Falconar_Avia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Grontmij" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lufthansa_Consulting" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/K\u00f6rber" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/INA_(company)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nova_Star_Cruises" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/D3_LED" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Romat" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/ProPublica" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vetter_Fairing_Company" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Samarco" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/SendStation_Systems" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/GlobeCore" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sudatel" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Avnet" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cyrix" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rafed_Network_for_Cultural_Development" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/TT-Line" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/SplendidCRM" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ypsilanti_Food_Co-op" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/D-Wave_Systems" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Madacom" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/MFA_Oil" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Fitness_Republic" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Knovel" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Southern_Wine_&_Spirits" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Para_USA" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Akademiet_Norge" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Plante_Moran" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/ConnectEast" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Alphawest" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hassans" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Playerhistory.com" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nib_Health_Funds" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/WhiteTie" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/SkillGround" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/DJI_(company)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Wateen" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Helados_EFE,_C.A." + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Video_Professor" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/LeasePlan" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Burger_King_Israel" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Berendsohn" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Turck" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nomeco" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Harmony_Gold_(mining)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Alimentos_Polar" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Moxie's_Grill_&_Bar" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Iron_Horse_Bicycles" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Stitcher_Radio" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/ARCOS_LLC" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Wolford" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/S&P_Global_Platts" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pacific_LightNet" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/MONILINK" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bay_Ferries_Great_Lakes" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Merooj" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Airbus_Group,_Inc." + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/NanoWorld" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/DeVry_Education_Group" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Weidemann_GmbH" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Collins_Companies" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Communauto" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Thrivent_Financial" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Plant_Delights_Nursery" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Indian_Railways" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Standard_(Indian_automobile)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Spiral_Q_Puppet_Theater" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Evans_Cycles" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Aeroexpresos_Ejecutivos,_C.A." + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Oscilloquartz" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Archant" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Universal_Forest_Products" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Thinkwell_Group" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Marratech" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/China_Railway" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rogers_Radio" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Steyr_Tractor" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/FedEx_Ground" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Spellbound_Entertainment" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/R\u00f6chling_Group" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/HSBC_Bank_(Turkey)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Saskatchewan_Railway_Museum" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lixtor" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/El_Zorro_(railway)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Empire_Theatres" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Olympic_Group" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pro-Ject" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Al-Amanah_Islamic_Bank" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/EirGrid" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Supermercado_De_Candido" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bank_of_Holland" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Xi'an_Aircraft_Industrial_Corporation" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cerv\u00e9lo" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Moscow_City_Telephone_Network" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cambridge_Who's_Who" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Independent_News_&_Media" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Daniel_(department_store)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Savas_Beatie" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Medac" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/X2_Digital_ISV" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/VIT,_C.A." + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sachtleben_Chemie" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Exco_Technologies" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Davinci_Virtual" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Columbia_River_Knife_&_Tool" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dystar" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/GS_Telecom" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Keppel_Corporation" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Denplan" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Greatist" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Zamtel" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Stikeman_Elliott" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gazprom_Promgaz" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dornier_Consulting" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Radical_Axis_(studio)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Total_Wine_&_More" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sony_Pictures_Entertainment" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Taft_Stettinius_&_Hollister" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/84_Lumber" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Equitable_PCI_Bank" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Flashback_Media_Group" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Angola_Telecom" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Apparel_2000" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Greatpac" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Flottweg" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/OpenSkills" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Wang_Laboratories" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/International_Graphoanalysis_Society" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Continental_Packaging_Solutions" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Foxconn" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Smith_Custom_Amplifiers" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Loki_Entertainment" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/ShoreTel" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Schottel_(company)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/AlertMe" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Wholesale_Applications_Community" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Centrax" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ruter" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sky_Regional_Airlines" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/McCoy_(pottery)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Parallax_Software" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Baltika_Breweries" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pawnee_Aviation" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Allakhazam" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Landini_(tractor)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/BitPass" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Philippine_National_Construction_Corporation" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Elkem" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Allied_Banking_Corporation" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Little_Chef" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Erie_Insurance_Group" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/H2O_Networks" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/OhioHealth" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Carver_Bancorp" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Zscaler" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Terracom" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/InsWeb" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/DB_Station&Service" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Minox" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/MolMed" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Coach,_Inc." + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Massey_Energy" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Krenholm_Manufacturing_Company" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sundog_Solar" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gulni" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Banco_Filipino" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Landmark_Cinemas" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bolsa_de_Valores_de_la_Rep\u00fablica_Dominicana" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tastykake" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bureau_van_Dijk" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Timeline_of_the_Greater_Victoria_Water_System" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bergstrom_Nutrition" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/UserLand_Software" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Welspun_Maxsteel_Ltd" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Socatel" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vaillant_Group" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/EID_Parry" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Telent" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/EFG-Hermes" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kjellberg_Finsterwalde" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tembec" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/GEA_Westfalia_Separator" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Beyerdynamic" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Campagnolo" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Oregon-Canadian_Forest_Products" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Venda_Inc" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/MEC_(media_agency)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Condair_Group" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/PLUS_Expressways" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/John_Crane_Group" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sungwoo_Automotive" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sumitomo_Electric_Bordnetze" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/White_&_Case" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chemical_Financial_Corporation" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Robinson_Armament_Co." + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/R.J._Corman_Railroad_Group" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lechler" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Danger_Inc." + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Virtutech" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ravn_Studio" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dorotheum" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Stradling_Yocca_Carlson_&_Rauth" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Champion_REIT" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Transmashholding" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/HAWE_Hydraulik_SE" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Scholz_&_Friends" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/WikiCity_Guides" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Technopromexport" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Reithoffer_Shows" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jysk_(store)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Thor_Steinar" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/VantagePoint_Capital_Partners" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Stryker_Corporation" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/SJ_AB" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/K\u00f6gel_Trailer" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Fidal" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Day_Software" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Louis_Poulsen" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/F\u00e9d\u00e9ration_de_l'informatique_du_Qu\u00e9bec" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Thrillist_Media_Group" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Aviva_Canada" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/RM_Education" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hans_Rudolph,_Incorporated" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/HAECO" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Eagle_Boys" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Polk_Brothers" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Golden_Bear_Toys" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Peabody_Energy" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/MSD_Capital" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Zoom_Air" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Demijohn_Limited" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Al_Bilad_Bank" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Komer\u010dn\u00ed_banka_Bratislava" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Companies_listed_on_the_New_York_Stock_Exchange_(J)", + "surface form": "companies" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/iso6391Code", + "surface form": "1" + }, + { + "URI": "http://dbpedia.org/ontology/numberOfEmployees", + "surface form": "employees" + } + ] + }, + { + "id": "63", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "In which films directed by Garry Marshall was Julia Roberts starring?", + "keywords": "film, directed, Garry Marshall, starring, Julia Roberts" + } + ], + "query": { + "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Film> ; <http://dbpedia.org/ontology/starring> <http://dbpedia.org/resource/Julia_Roberts> ; <http://dbpedia.org/ontology/director> <http://dbpedia.org/resource/Garry_Marshall> }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mother's_Day_(2016_film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Runaway_Bride_(film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pretty_Woman" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Garry_Marshall", + "surface form": "Garry Marshall was Julia Roberts" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/numberOfFilms", + "surface form": "films" + }, + { + "URI": "http://dbpedia.org/ontology/president", + "surface form": "directed" + }, + { + "URI": "http://dbpedia.org/ontology/starring", + "surface form": "starring" + } + ] + }, + { + "id": "64", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Give me all soccer clubs in the Premier League.", + "keywords": "Premier League, soccer club" + } + ], + "query": { + "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/SoccerClub> ; <http://dbpedia.org/ontology/league> <http://dbpedia.org/resource/Premier_League> }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/2012\u201313_Arsenal_F.C._season" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/2014\u201315_Chelsea_F.C._season" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/2013\u201314_Chelsea_F.C._season" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/2010\u201311_Birmingham_City_F.C._season" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/2013\u201314_Arsenal_F.C._season" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/2007\u201308_Wigan_Athletic_F.C._season" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/2007\u201308_Chelsea_F.C._season" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/2007\u201308_Manchester_City_F.C._season" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/2008\u201309_Manchester_City_F.C._season" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/2011\u201312_Chelsea_F.C._season" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/2010\u201311_Arsenal_F.C._season" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/2014\u201315_Southampton_F.C._season" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/2015\u201316_Southampton_F.C._season" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/2008\u201309_Arsenal_F.C._season" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/2006\u201307_Reading_F.C._season" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/2012\u201313_Chelsea_F.C._season" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/2012\u201313_Reading_F.C._season" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/2009\u201310_Arsenal_F.C._season" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/2006\u201307_Bolton_Wanderers_F.C._season" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/2013\u201314_Cardiff_City_F.C._season" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/2005\u201306_Wigan_Athletic_F.C._season" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Premier_League", + "surface form": "Premier League" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/clubsRecordGoalscorer", + "surface form": "soccer clubs" + } + ] + }, + { + "id": "65", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "What is the highest place of the Urals?", + "keywords": "Urals, highest place" + } + ], + "query": { + "sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Ural_Mountains> <http://dbpedia.org/property/highest> ?uri }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mount_Narodnaya" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Urals_Mussorgsky_State_Conservatoire", + "surface form": "Urals" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/highestPlace", + "surface form": "highest place" + } + ] + }, + { + "id": "66", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Who is the governor of Wyoming?", + "keywords": "governor, Wyoming" + } + ], + "query": { + "sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Wyoming> <http://dbpedia.org/property/governor> ?uri }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Matt_Mead" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Wyoming", + "surface form": "Wyoming" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/governor", + "surface form": "governor" + } + ] + }, + { + "id": "67", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Where did the architect of the Eiffel Tower study?", + "keywords": "architect, Eiffel Tower, study" + } + ], + "query": { + "sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Eiffel_Tower> <http://dbpedia.org/ontology/architect> ?x . ?x <http://dbpedia.org/property/almaMater> ?uri }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/\u00c9cole_Sp\u00e9ciale_d'Architecture" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Eiffel_Tower", + "surface form": "Eiffel Tower study" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/architect", + "surface form": "architect" + } + ] + }, + { + "id": "68", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Give me all world heritage sites designated within the past two years.", + "keywords": "world heritage site, designate, past two years" + } + ], + "query": { + "sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/WorldHeritageSite> . { ?uri <http://dbpedia.org/property/year> '2013'^^xsd:integer . } UNION { ?uri <http://dbpedia.org/property/year> '2014'^^xsd:integer . } }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Castle_of_Grinzane_Cavour" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Namib_Desert" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Church_of_the_Archangel_Michael,_Uzhok" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Montferrat" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rani_ki_vav" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Namhansanseong" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Asti_wine" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Medici_villas" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Langhe" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tr\u00e0ng_An_Scenic_Landscape_Complex" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Silk_Road_UNESCO_World_Heritage_Sites" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Maresha" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bolghar" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vineyard_Landscape_of_Piedmont:_Langhe-Roero_and_Monferrato" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pamir_National_Park" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Canelli" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bergpark_Wilhelmsh\u00f6he" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hill_Forts_of_Rajasthan" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Giant_Wild_Goose_Pagoda" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Wooden_tserkvas_of_the_Carpathian_region_in_Poland_and_Ukraine" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cumal\u0131k\u0131z\u0131k" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Honghe_Hani_Rice_Terraces" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Holy_Trinity_Church,_Zhovkva" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/St._George's_Church,_Drohobych" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Golestan_Palace" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Descent_of_the_Holy_Spirit_Church" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Stevns_Klint" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chauvet_Cave" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bingling_Temple" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ranthambore_Fort" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Okavango_Delta" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Roero" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tomioka_Silk_Mill" + } + } + ] + } + } + ], + "entities": [], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/fate", + "surface form": "heritage sites" + }, + { + "URI": "http://dbpedia.org/ontology/class", + "surface form": "designated" + } + ] + }, + { + "id": "69", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Give me all actors who were born in Paris after 1950.", + "keywords": "actors, born, Paris, after 1950" + } + ], + "query": { + "sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Actor> . ?uri <http://dbpedia.org/ontology/birthPlace> <http://dbpedia.org/resource/Paris> . ?uri <http://dbpedia.org/ontology/birthDate> ?date . FILTER ( ?date >= xsd:dateTime('1950-12-31T00:00:00Z')) }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gaston_Dubosc" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Muriel_Mayette-Holtz" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chems_Dahmani" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Genevi\u00e8ve_Sorya" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Colette_Marchand" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Th\u00e9r\u00e8se_Dorny" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/\u00c9lodie_Navarre" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jacqueline_Duc" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Fr\u00e9d\u00e9ric_Duvall\u00e8s" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Marcel_Vibert" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pierre_Nay" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Andr\u00e9_Lefaur" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Madeleine_Milhaud" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Julien_Rassam" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mehdi_Belhaj_Kacem" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Yves_Brainville" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Greg_Lansky" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Farid_Chopel" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Raymonde_Guyot" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Suzanne_Dalbert" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Henry_Krauss" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Alain_Noury" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/G\u00e9rard_S\u00e9ty" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Andr\u00e9_Fouch\u00e9" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/\u00c9lisabeth_Depardieu" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Roxane_Duran" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pierre_Meyrand" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Philippe_Janvier_(actor)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rolla_Norman" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Henri_Cogan" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jean_Bradin" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jean-Jacques_Delbo" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jean_Kemm" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Judy_Minx" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Yvonne_de_Bray" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Raymond_Souplex" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Alice_Tissot" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/G\u00e9rard_Rinaldi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Thomy_Bourdelle" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Robert_Le_Vigan" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jean-Louis_Richard" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Henri_Attal" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pierre_Palau" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Virginie_D\u00e9jazet" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pierre_G\u00e9rald" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pierre_Etchepare" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Alexis_Conran" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Alysson_Paradis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Henri_\u00c9ti\u00e9vant" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jean-Pierre_Bernard" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jules_Moy" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jim_G\u00e9rald" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mado_Maurin" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Melvil_Poupaud" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lecatte-Folleville" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jacques_Seiler" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Maurice_Dorl\u00e9ac" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Madeleine_Robinson" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Fabienne_Fabr\u00e8ges" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dominique_Davray" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rapha\u00ebl_Fejt\u00f6" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jean-Claude_Michel" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nicole_Calfan" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sophie_Lothaire" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jacques_Th\u00e9bault" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Fran\u00e7ois_Chaumette" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Yolande_Laffon" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Henri_Garat" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gilberte_G\u00e9niat" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nadine_Alari" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Georges_Tr\u00e9ville" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Awa_Ly" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Caroline_Tillette" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Louis-Fran\u00e7ois_Ribi\u00e9" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ren\u00e9e_Faure" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Emmanuelle_Laborit" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/St\u00e9phane_Freiss" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/L\u00e9o_Campion" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jean_Desailly" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jean-Pierre_Lorit" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sophie_Guillemin" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ellen_Parker_(actress)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Colette_Darfeuil" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Claude_Faraldo" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lucien_Blondeau" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Charles_de_La_Buissi\u00e8re" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Marcel_L\u00e9vesque" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Valentine_Tessier" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Catherine_Benguigui" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Joseph_Malerba" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Christian_Vadim" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lyne_Chardonnet" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hubert_Deschamps" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jean-Daniel_Cadinot" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ary_Abittan" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Popeck" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/R\u00e9gis_Laspal\u00e8s" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Charles_le_Bargy" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jean-Baptiste_Nicolet" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Germaine_Michel" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Medi_Sadoun" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jacques_Fran\u00e7ois" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Christa_Theret" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pierre_Boulanger" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Marguerite_Moreno" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gr\u00e9gory_Fitoussi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bernard_Tiphaine" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Samir_Guesmi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Michael_Lonsdale" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bob\u00e8che_(clown)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nicolas_Bataille" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Claire_Guyot" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Raymonde_Allain" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Micheline_Dax" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mich\u00e8le_Philippe" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nicolas_Duvauchelle" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Claudine_Dupuis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jean_Daurand" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Paul_Colline" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Marcelle_Chantal" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Arlette_Poirier" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Armelle" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pierre_Cl\u00e9menti" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Coralie_Trinh_Thi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Andrea_Habay" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Roger_Vincent" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Henri_Valbel" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/\u00c9douard_Baer" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lucie_Jeanne" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Marianne_Denicourt" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Zabou_Breitman" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jacques_Fabbri" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Thibault_Vin\u00e7on" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/No\u00e9mie_Lvovsky" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Stacia_Napierkowska" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Olivier_de_Fun\u00e8s" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pascale_Petit_(actress)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jane_Marken" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jacques_Tarride" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nikolai_Kinski" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Simon_de_La_Brosse" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Guy_Marchand" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Noom_Diawara" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Max_Dalban" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Madeleine_Renaud" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Paul_Frankeur" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rivers_Cadet" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ren\u00e9_Dary" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jackie_Sardou" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Marcel_Vall\u00e9e" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jacques_Balutin" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/St\u00e9phane_Ferrara" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Louis-Ars\u00e8ne_Delaunay" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jean_Coquelin" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jacques_Charby" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jo_Peignot" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Laure_Marsac" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Paule_Andral" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Serge_Sauvion" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Louis_Hurtaut_Dancourt" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jean_T\u00e9merson" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bleuette_Bernon" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Julia_Channel" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ellen_Andr\u00e9e" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sophie_Mounicot" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jos\u00e9phine_Jobert" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rebecca_Lord" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Xavier_G\u00e9lin" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Estelle_Skornik" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jean_Worms" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/L\u00e9once_Cargue" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nicolas_Vaude" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/C\u00e9cile_Cassel" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Maurice_Risch" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Angelique_Morgan" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Delphine_Forest" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jean_Martinelli" + } + } + ] + } + } + ], + "entities": [ + { "URI": "http://dbpedia.org/resource/Paris", "surface form": "Paris" }, + { "URI": "http://dbpedia.org/resource/1950", "surface form": "1950" } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/artist", + "surface form": "actors" + }, + { + "URI": "http://dbpedia.org/ontology/birthPlace", + "surface form": "born" + } + ] + }, + { + "id": "70", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Which movies star both Liz Taylor and Richard Burton?", + "keywords": "movies, star, Liz Taylor, Richard Burton?" + } + ], + "query": { + "sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/starring> <http://dbpedia.org/resource/Elizabeth_Taylor> ; <http://dbpedia.org/ontology/starring> <http://dbpedia.org/resource/Richard_Burton> }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Taming_of_the_Shrew_(1967_film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hammersmith_Is_Out" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Divorce_His,_Divorce_Hers" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_V.I.P.s_(film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Boom!_(film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Sandpiper" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Under_Milk_Wood_(1972_film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Comedians_(1967_film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cleopatra_(1963_film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Doctor_Faustus_(1967_film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Who's_Afraid_of_Virginia_Woolf%3F_(film)" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Liz:_The_Elizabeth_Taylor_Story", + "surface form": "Liz Taylor" + }, + { + "URI": "http://dbpedia.org/resource/Richard_Burton", + "surface form": "Richard Burton" + } + ], + "relations": [ + { "URI": "http://dbpedia.org/ontology/film", "surface form": "movies" }, + { "URI": "http://dbpedia.org/property/name", "surface form": "star" } + ] + }, + { + "id": "71", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Give me all Australian nonprofit organizations.", + "keywords": "nonprofit organization, Australia" + } + ], + "query": { + "sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/type> <http://dbpedia.org/resource/Nonprofit_organization> { ?uri <http://dbpedia.org/ontology/locationCountry> <http://dbpedia.org/resource/Australia> } UNION { ?uri <http://dbpedia.org/ontology/location> ?x . ?x <http://dbpedia.org/ontology/country> <http://dbpedia.org/resource/Australia> } }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/YourView" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Australia", + "surface form": "Australian nonprofit organizations" + }, + { + "URI": "http://dbpedia.org/resource/Master_of_Nonprofit_Organizations", + "surface form": "Australian nonprofit organizations" + } + ], + "relations": [ + { "URI": "http://dbpedia.org/ontology/country", "surface form": "" } + ] + }, + { + "id": "72", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Which pope succeeded John Paul II?", + "keywords": "pope, succeed, John Paul II" + } + ], + "query": { + "sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Pope_John_Paul_II> <http://dbpedia.org/property/successor> ?uri }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pope_Benedict_XVI" + } + } + ] + } + } + ], + "entities": [ + { "URI": "http://dbpedia.org/resource/Ii", "surface form": "II" }, + { + "URI": "http://dbpedia.org/resource/John_Paul", + "surface form": "John Paul" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/property/popeElected", + "surface form": "pope" + }, + { + "URI": "http://dbpedia.org/ontology/successor", + "surface form": "succeeded" + } + ] + }, + { + "id": "73", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Give me all ESA astronauts.", + "keywords": "ESA astronauts" + } + ], + "query": { + "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Astronaut> ; <http://dbpedia.org/property/type> <http://dbpedia.org/resource/European_Space_Agency> }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dirk_Frimout" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/European_Free_Trade_Association_Surveillance_Authority", + "surface form": "ESA" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/countryWithFirstAstronaut", + "surface form": "astronauts" + } + ] + }, + { + "id": "74", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Who was president of Pakistan in 1978?", + "keywords": "president, Pakistan, 1978" + } + ], + "query": { + "sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/title> <http://dbpedia.org/resource/President_of_Pakistan> ; <http://dbpedia.org/property/years> 1978 }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Muhammad_Zia-ul-Haq" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Pakistan", + "surface form": "Pakistan" + }, + { "URI": "http://dbpedia.org/resource/1978", "surface form": "1978" } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/president", + "surface form": "president" + } + ] + }, + { + "id": "75", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Who is the owner of Rolls-Royce?", + "keywords": "Rolls-Royce, owner" + } + ], + "query": { + "sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Rolls-Royce_Motors> <http://dbpedia.org/ontology/owner> ?uri }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vickers_plc" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Volkswagen_Group" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Rolls-Royce", + "surface form": "Rolls-Royce" + } + ], + "relations": [ + { "URI": "http://dbpedia.org/ontology/owner", "surface form": "owner" } + ] + }, + { + "id": "76", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "How many museums does Paris have?", + "keywords": "how many, museum, Paris" + } + ], + "query": { + "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Museum> ; <http://dbpedia.org/ontology/location> <http://dbpedia.org/resource/Paris> }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mus\u00e9e_de_l'Homme" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/M\u00e9morial_de_la_Shoah" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mus\u00e9e_national_Gustave_Moreau" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cent_Quatre" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Grand_Palais" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Free_Art_and_Technology_Lab" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jardin_des_Plantes" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mus\u00e9e_d'Art_Moderne_de_la_Ville_de_Paris" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mus\u00e9e_d\u2019histoire_de_la_m\u00e9decine" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bridgeman_Art_Library" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mus\u00e9e_des_Arts_Forains" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Carnavalet_Museum" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mus\u00e9e_Marmottan_Monet" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Museum_of_Natural_History_(France)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Galerie_de_pal\u00e9ontologie_et_d'anatomie_compar\u00e9e" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mus\u00e9e_du_Luxembourg" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mus\u00e9e_du_Vin" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mus\u00e9e_Rodin" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Paris_Sewer_Museum" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cit\u00e9_de_l'\u00e9conomie_et_de_la_monnaie" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Carpenters_Workshop_Gallery" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Museums_in_Aalborg", + "surface form": "museums" + }, + { "URI": "http://dbpedia.org/resource/Paris", "surface form": "Paris" } + ], + "relations": [] + }, + { + "id": "77", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Where was JFK assassinated?", + "keywords": "JFK, assassinated" + } + ], + "query": { + "sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/John_F._Kennedy> <http://dbpedia.org/ontology/deathPlace> ?uri }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Parkland_Memorial_Hospital" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dallas" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/John_F._Kennedy_International_Airport", + "surface form": "JFK" + }, + { + "URI": "http://dbpedia.org/resource/Assassinated_Catholic_priests_in_Guatemala", + "surface form": "Assassinated" + } + ], + "relations": [] + }, + { + "id": "78", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Give me all federal chancellors of Germany.", + "keywords": "Germany, federal chancellors" + } + ], + "query": { + "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Person> { ?uri <http://dbpedia.org/ontology/office> \"Chancellor of Germany\" } UNION { ?uri <http://dbpedia.org/property/office> <http://dbpedia.org/resource/Chancellor_of_Germany> } }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Konrad_Adenauer" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Helmut_Kohl" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Philipp_Scheidemann" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chlodwig,_Prince_of_Hohenlohe-Schillingsf\u00fcrst" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Helmut_Schmidt" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Otto_von_Bismarck" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Leo_von_Caprivi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Angela_Merkel" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gerhard_Schr\u00f6der" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Willy_Brandt" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ludwig_Erhard" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Friedrich_Ebert" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kurt_Georg_Kiesinger" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Germany", + "surface form": "Germany" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/federalState", + "surface form": "federal chancellors" + } + ] + }, + { + "id": "79", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Show me everyone who was born on Halloween.", + "keywords": "person, born on, Halloween" + } + ], + "query": { + "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Person> { ?uri <http://dbpedia.org/ontology/birthDate> ?date } UNION { ?uri <http://dbpedia.org/property/birthDate> ?date } <http://dbpedia.org/resource/Halloween> <http://dbpedia.org/property/date> ?date }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Aaron_Osmond" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Halloween", + "surface form": "Halloween" + } + ], + "relations": [ + { "URI": "http://dbpedia.org/ontology/show", "surface form": "show" }, + { + "URI": "http://dbpedia.org/ontology/birthPlace", + "surface form": "born" + } + ] + }, + { + "id": "80", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Which beer originated in Ireland?", + "keywords": "beer, originated, Ireland" + } + ], + "query": { + "sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/type> <http://dbpedia.org/resource/Beer> ; <http://dbpedia.org/ontology/origin> <http://dbpedia.org/resource/Beer_in_Ireland> }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Guinness" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Ireland", + "surface form": "Ireland" + } + ], + "relations": [ + { "URI": "http://dbpedia.org/ontology/party", "surface form": "beer" }, + { + "URI": "http://dbpedia.org/ontology/engineer", + "surface form": "originated" + } + ] + }, + { + "id": "81", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "To which countries does the Himalayan mountain system extend?", + "keywords": "Himalayan mountain system, extend, country" + } + ], + "query": { + "sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Himalayas> <http://dbpedia.org/ontology/country> ?uri }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "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/Himalayan", + "surface form": "Himalayan mountain" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/border", + "surface form": "extend" + } + ] + }, + { + "id": "82", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Which actors were born in Germany?", + "keywords": "actor, born, Germany" + } + ], + "query": { + "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Actor> { ?uri <http://dbpedia.org/ontology/birthPlace> <http://dbpedia.org/resource/Germany> } UNION { ?uri <http://dbpedia.org/ontology/birthPlace> ?place . ?place <http://dbpedia.org/ontology/country> <http://dbpedia.org/resource/Germany> } }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Susan_Wayland" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Karin_Schubert" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gordon_Hopkirk" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Adeline_Hayden_Coffin" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Norman_Wooland" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dru_Berrymore" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Freddy_Dalton" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kelly_Trump" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Thom_Barron" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Annette_Schwarz" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Michaela_Schaffrath" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lily_Kann" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Amy_Ried" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Yves_Beneyton" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rena_Niehaus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Harry_S._Morgan" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Anna_Nova" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Shyla_Jennings" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Briana_Banks" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hal_Rockland" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lena_Nitro" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Shimon_Schwarzschild" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Subaru_Kimura" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Katja_Kassin" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Krista_Lane" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vince_Rockland" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Janine_Chang" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Logan_McCree" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Claude_France" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Frederick_William_Matthiessen" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Till_Kraemer" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Anja_Juliette_Laval" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Julie_K._Smith" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Shy_Love" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tyra_Misoux" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ellen_Pollock" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Germany", + "surface form": "Germany" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/award", + "surface form": "actors" + }, + { + "URI": "http://dbpedia.org/ontology/birthPlace", + "surface form": "born" + } + ] + }, + { + "id": "83", + "answertype": "number", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "How much carbs does peanut butter have?", + "keywords": "how much, carbs, peanut butter" + } + ], + "query": { + "sparql": "SELECT DISTINCT ?carbs WHERE { <http://dbpedia.org/resource/Peanut_butter> <http://dbpedia.org/property/carbs> ?carbs }" + }, + "answers": [ + { + "head": { "vars": ["c"] }, + "results": { + "bindings": [{ "c": { "type": "literal", "value": "20.0" } }] + } + } + ], + "entities": [ + { "URI": "http://dbpedia.org/resource/Carby", "surface form": "carbs" }, + { + "URI": "http://dbpedia.org/resource/Peanut_butter", + "surface form": "peanut butter" + } + ], + "relations": [] + }, + { + "id": "84", + "answertype": "resource", + "aggregation": true, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Who produced the most films?", + "keywords": "film, produced, most" + } + ], + "query": { + "sparql": "SELECT DISTINCT ?uri WHERE { ?film <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film> . ?film <http://dbpedia.org/ontology/producer> ?uri . } ORDER BY DESC(COUNT(?film)) OFFSET 0 LIMIT 1" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Adolph_Zukor" + } + } + ] + } + } + ], + "entities": [], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/wineProduced", + "surface form": "produced" + }, + { + "URI": "http://dbpedia.org/ontology/numberOfFilms", + "surface form": "films" + } + ] + }, + { + "id": "85", + "answertype": "number", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "How many employees does Google have?", + "keywords": "Google, employees" + } + ], + "query": { + "sparql": "SELECT DISTINCT ?num WHERE { <http://dbpedia.org/resource/Google> <http://dbpedia.org/ontology/numberOfEmployees> ?num }" + }, + "answers": [ + { + "head": { "vars": ["c"] }, + "results": { + "bindings": [{ "c": { "type": "literal", "value": "57100" } }] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Google", + "surface form": "Google" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/numberOfEmployees", + "surface form": "employees" + } + ] + }, + { + "id": "86", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Give me all actors who were born in Berlin.", + "keywords": "actors, born, Berlin" + } + ], + "query": { + "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Actor> ; <http://dbpedia.org/ontology/birthPlace> <http://dbpedia.org/resource/Berlin> }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dru_Berrymore" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tyra_Misoux" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Berlin", + "surface form": "Berlin" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/award", + "surface form": "actors" + }, + { + "URI": "http://dbpedia.org/ontology/birthPlace", + "surface form": "born" + } + ] + }, + { + "id": "87", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Who created Goofy?", + "keywords": "created, Goofy" + } + ], + "query": { + "sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Goofy> <http://dbpedia.org/ontology/creator> ?uri }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Frank_Webb_(cartoonist)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Walt_Disney" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Paul_Murry" + } + } + ] + } + } + ], + "entities": [ + { "URI": "http://dbpedia.org/resource/Goofy", "surface form": "Goofy" } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/creator", + "surface form": "created" + } + ] + }, + { + "id": "88", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Which music albums contain the song Last Christmas?", + "keywords": "music album, song, Last Christmas" + } + ], + "query": { + "sparql": "SELECT DISTINCT ?uri WHERE { ?single <http://dbpedia.org/ontology/album> ?uri ; <http://www.w3.org/2000/01/rdf-schema#label> \"Last Christmas\"@en }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Classic_Christmas_(Joe_McElderry_album)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Music_from_the_Edge_of_Heaven" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Disco_Defenders" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Crazy_Frog_Presents_More_Crazy_Hits" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Whigfield_(album)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Christmas_Kisses_(EP)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Whigfield_II" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/It's_Christmas_Time_(album)" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/The_Last_Song_(film)", + "surface form": "song Last Christmas" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/musicComposer", + "surface form": "music albums" + } + ] + }, + { + "id": "89", + "answertype": "date", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "When was Alberta admitted as province?", + "keywords": "Alberta, admit, province" + } + ], + "query": { + "sparql": "SELECT DISTINCT ?date WHERE { <http://dbpedia.org/resource/Alberta> <http://dbpedia.org/property/admittancedate> ?date }" + }, + "answers": [ + { + "head": { "vars": ["date"] }, + "results": { + "bindings": [ + { "date": { "type": "literal", "value": "1905-09-01" } } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Alberta", + "surface form": "Alberta" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/property/known", + "surface form": "admitted" + }, + { + "URI": "http://dbpedia.org/ontology/province", + "surface form": "province" + } + ] + }, + { + "id": "90", + "answertype": "number", + "aggregation": true, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "How many missions does the Soyuz programme have?", + "keywords": "how many, mission, Soyuz programme" + } + ], + "query": { + "sparql": "SELECT (COUNT(DISTINCT ?uri) AS ?c) WHERE { ?uri <http://dbpedia.org/property/programme> <http://dbpedia.org/resource/Soyuz_programme> }" + }, + "answers": [ + { + "head": { "vars": ["c"] }, + "results": { + "bindings": [{ "c": { "type": "literal", "value": "139" } }] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Soyuz_programme", + "surface form": "Soyuz programme" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/missions", + "surface form": "missions" + } + ] + }, + { + "id": "91", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Give me all the TV shows with Neil Patrick Harris.", + "keywords": "TV shows, Neil Patrick Harris" + } + ], + "query": { + "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/TelevisionShow> ; <http://dbpedia.org/ontology/starring> <http://dbpedia.org/resource/Neil_Patrick_Harris> }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Capitol_Critters" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Doogie_Howser,_M.D." + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/A_Series_of_Unfortunate_Events_(TV_series)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dr._Horrible's_Sing-Along_Blog" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Robot_Chicken_DC_Comics_Special" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Neil's_Puppet_Dreams" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Snowbound:_The_Jim_and_Jennifer_Stolpa_Story" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/How_I_Met_Your_Mother" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Joan_of_Arc_(miniseries)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Stark_Raving_Mad_(TV_series)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Too_Good_to_Be_True_(film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Christmas_Blessing" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Tv_test_pattern", + "surface form": "TV" + }, + { + "URI": "http://dbpedia.org/resource/Neil_Patrick_Harris", + "surface form": "Neil Patrick Harris" + } + ], + "relations": [ + { "URI": "http://dbpedia.org/ontology/place", "surface form": "shows" } + ] + }, + { + "id": "92", + "answertype": "date", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "When were the Hells Angels founded?", + "keywords": "Hells Angels, founded" + } + ], + "query": { + "sparql": "SELECT DISTINCT ?date WHERE { <http://dbpedia.org/resource/Hells_Angels> <http://dbpedia.org/property/founded> ?date }" + }, + "answers": [ + { + "head": { "vars": ["date"] }, + "results": { + "bindings": [ + { "date": { "type": "literal", "value": "1948-03-17" } } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Hells_Angels", + "surface form": "Hells Angels" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/property/founded", + "surface form": "founded" + } + ] + }, + { + "id": "93", + "answertype": "number", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "What is the net income of Apple?", + "keywords": "net income, Apple" + } + ], + "query": { + "sparql": "SELECT DISTINCT ?ni WHERE { <http://dbpedia.org/resource/Apple_Inc.> <http://dbpedia.org/ontology/netIncome> ?ni }" + }, + "answers": [ + { + "head": { "vars": ["c"] }, + "results": { + "bindings": [{ "c": { "type": "literal", "value": "5.3394E10" } }] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Apple_Inc.", + "surface form": "Apple" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/successor", + "surface form": "income" + } + ] + }, + { + "id": "94", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Give me all Swedish holidays.", + "keywords": "Swedish holidays" + } + ], + "query": { + "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Holiday> ; <http://dbpedia.org/ontology/country> <http://dbpedia.org/resource/Sweden> }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gustavus_Adolphus_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Veterans_Day_(Sweden)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/St._Knut's_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Christmas_tree_plundering" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Sweden", + "surface form": "Swedish holidays" + }, + { + "URI": "http://dbpedia.org/resource/Swedish", + "surface form": "Swedish holidays" + } + ], + "relations": [ + { "URI": "http://dbpedia.org/ontology/country", "surface form": "" }, + { "URI": "http://dbpedia.org/ontology/country", "surface form": "" } + ] + }, + { + "id": "95", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "In which city was the former Dutch queen Juliana buried?", + "keywords": "Dutch queen Juliana, burried, city" + } + ], + "query": { + "sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Juliana_of_the_Netherlands> <http://dbpedia.org/property/burialPlace> ?uri . ?uri a <http://dbpedia.org/ontology/Settlement> }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Delft" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Juliana_Maria_of_Brunswick-Wolfenb\u00fcttel", + "surface form": "former Dutch queen Juliana" + } + ], + "relations": [ + { "URI": "http://dbpedia.org/ontology/city", "surface form": "city" }, + { "URI": "http://dbpedia.org/ontology/flag", "surface form": "buried" } + ] + }, + { + "id": "96", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "List all the musicals with music by Leonard Bernstein.", + "keywords": "musicals, music by, Leonard Bernstein" + } + ], + "query": { + "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Musical> ; <http://dbpedia.org/ontology/musicBy> <http://dbpedia.org/resource/Leonard_Bernstein> }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Wonderful_Town" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Candide_(operetta)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Race_to_Urga" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/1600_Pennsylvania_Avenue_(musical)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/On_the_Town_(musical)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/West_Side_Story" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/A_Party_with_Betty_Comden_and_Adolph_Green" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Side_by_Side_by_Sondheim" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Leonard_Bernstein", + "surface form": "Leonard Bernstein" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/show", + "surface form": "musicals" + }, + { + "URI": "http://dbpedia.org/ontology/musicBy", + "surface form": "music" + } + ] + }, + { + "id": "97", + "answertype": "number", + "aggregation": true, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Give me all companies in the advertising industry.", + "keywords": "company, advertising industry" + } + ], + "query": { + "sparql": "SELECT (COUNT(DISTINCT ?uri) AS ?c) WHERE { ?uri a <http://dbpedia.org/ontology/Company> { ?uri <http://dbpedia.org/ontology/industry> <http://dbpedia.org/resource/Advertising> } UNION { ?uri <http://dbpedia.org/ontology/industry> ?industry FILTER regex(?industry, \"advertising\", \"i\") } }" + }, + "answers": [ + { + "head": { "vars": ["c"] }, + "results": { + "bindings": [{ "c": { "type": "literal", "value": "307" } }] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Companies_listed_on_the_New_York_Stock_Exchange_(J)", + "surface form": "companies" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/property/industry", + "surface form": "advertising industry" + } + ] + }, + { + "id": "98", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "What is the largest metropolitan area in Washington state?", + "keywords": "largest metropolitan area, Washington state" + } + ], + "query": { + "sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Washington_(state)> <http://dbpedia.org/property/largestmetro> ?uri }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Seattle-Tacoma-Olympia,_WA_CSA" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Metropolitan_area", + "surface form": "largest metropolitan area" + }, + { + "URI": "http://dbpedia.org/resource/Washington", + "surface form": "Washington" + } + ], + "relations": [] + }, + { + "id": "99", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Who killed John Lennon?", + "keywords": "killed, John Lennon" + } + ], + "query": { + "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Person> ; <http://dbpedia.org/property/conviction> <http://dbpedia.org/resource/Death_of_John_Lennon> }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mark_David_Chapman" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/John_Lennon", + "surface form": "John Lennon" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/billed", + "surface form": "killed" + } + ] + }, + { + "id": "100", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Which writers studied in Istanbul?", + "keywords": "writers, studied, Istanbul" + } + ], + "query": { + "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Writer> { ?uri <http://dbpedia.org/ontology/almaMater> ?x } UNION { ?uri <http://dbpedia.org/ontology/education> ?x } { ?x <http://dbpedia.org/ontology/city> <http://dbpedia.org/resource/Istanbul> } UNION { ?x <http://dbpedia.org/property/city> <http://dbpedia.org/resource/Istanbul> } }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Niyazi_Berkes" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Birhan_Keskin" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hikmet_Temel_Akarsu" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Leyla_Erbil" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bahadir_Kaleagasi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ahmet_Hamdi_Tanp\u0131nar" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/\u015eaban_\u00d6zdemir" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mehmet_Ya\u015f\u0131n" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/\u0130oanna_Ku\u00e7uradi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/H\u0131fz\u0131_Topuz" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/P\u0131nar_Selek" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Halide_Edib_Ad\u0131var" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Istanbul", + "surface form": "Istanbul" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/writer", + "surface form": "writers" + }, + { + "URI": "http://dbpedia.org/ontology/office", + "surface form": "studied" + } + ] + }, + { + "id": "101", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Give me all Australian metalcore bands.", + "keywords": "Australian, metalcore bands" + } + ], + "query": { + "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Band> ; <http://dbpedia.org/ontology/genre> <http://dbpedia.org/resource/Metalcore> { ?uri <http://dbpedia.org/ontology/hometown> <http://dbpedia.org/resource/Australia> } UNION { ?uri <http://dbpedia.org/ontology/hometown> ?h . ?h <http://dbpedia.org/ontology/country> <http://dbpedia.org/resource/Australia> } }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Capture_the_Crown" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Wish_for_Wings" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Shoreside" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/50_Lions" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Parkway_Drive" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Carpathian_(band)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/House_vs._Hurricane" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mindsnare" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Northlane" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/I_Killed_the_Prom_Queen" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Double_Dragon_(band)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Confession_(band)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Our_Last_Enemy" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/In_Hearts_Wake" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Amity_Affliction" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/For_All_Eternity_(band)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Deez_Nuts_(band)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Azure_Falls" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/A_Breach_of_Silence" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Buried_in_Verona" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Embodiment_12:14" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Australia", + "surface form": "Australian metalcore bands" + }, + { + "URI": "http://dbpedia.org/resource/List_of_metalcore_bands", + "surface form": "Australian metalcore bands" + } + ], + "relations": [ + { "URI": "http://dbpedia.org/ontology/country", "surface form": "" } + ] + }, + { + "id": "102", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Which countries adopted the Euro?", + "keywords": "country, adopt, Euro" + } + ], + "query": { + "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Country> { ?uri <http://dbpedia.org/ontology/currency> <http://dbpedia.org/resource/Euro> } UNION { ?uri <http://dbpedia.org/property/currencyCode> \"EUR\"@en } }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Basque_Country_(greater_region)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Serbia_and_Montenegro" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kingdom_of_Wallachia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Autonomous_Province_of_Kosovo_and_Metohija" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Baltic_states" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/French_Southern_and_Antarctic_Lands" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Twente" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Greece" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Netherlands" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Spain" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/\u00celes_des_Saintes" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Saint_Barth\u00e9lemy" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Akrotiri_and_Dhekelia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/European_Union" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Republic_of_Saugeais" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Republic_of_Ireland" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/French_overseas_departments_and_territories" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Macedonia_(region)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Austria" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Luxembourg" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/San_Marino" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cyprus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ad\u00e9lie_Land" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Germany" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Luhansk_People's_Republic" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lithuania" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Andorra" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Slovenia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Saint_Pierre_and_Miquelon" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tromelin_Island" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kerguelen_Islands" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Latvia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vatican_City" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Finland" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/France" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/United_Nations_Interim_Administration_Mission_in_Kosovo" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Third_Hellenic_Republic" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kosovo" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Monaco" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Montenegro" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Estonia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Portugal" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Collectivity_of_Saint_Martin" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Belgium" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/French_Fifth_Republic" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Countries_of_the_United_Kingdom", + "surface form": "countries" + }, + { "URI": "http://dbpedia.org/resource/Euro", "surface form": "Euro" } + ], + "relations": [] + }, + { + "id": "103", + "answertype": "resource", + "aggregation": false, + "onlydbo": false, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Give me all types of eating disorders.", + "keywords": "types, eating disorders" + } + ], + "query": { + "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/class/yago/WikicatEatingDisorders> }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ingestive_behaviors" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Inedia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Body_Attitudes_Questionnaire" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Eating_Disorder_Inventory" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Eating_Attitudes_Test" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Wintergirls" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Trichophagia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pica_(disorder)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Avoidant/restrictive_food_intake_disorder" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Feeding_disorder" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bulimia_nervosa" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Phagophobia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Body_Attitudes_Test" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Minnesota_Eating_Behavior_Survey" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rumination_syndrome" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Eating_Disorder_Diagnostic_Scale" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Anorexia_(symptom)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Food_issue" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Refeeding_syndrome" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Polyphagia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pro-ana" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Night_eating_syndrome" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Fat_Phobia_Scale" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Defensive_vomiting" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Binge_Eating_Scale" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Muscle_dysmorphia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Fat_Chance_(Lesl\u00e9a_Newman_novel)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dermatophagia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pagophagy" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Eating_mucus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Purging_disorder" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mirror_box" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Anorexia_nervosa_(differential_diagnoses)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Binge_eating" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/List_of_phobias" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Russell's_sign" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Food_Addicts_Anonymous" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Disordered_eating" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bulimia_Test-Revised" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Drunkorexia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cognitive_behavioral_treatment_of_eating_disorders" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Diabulimia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Eating_Disorder_Examination_Interview" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Anorexia_mirabilis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Three-Factor_Eating_Questionnaire" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Body_Gossip" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Eating_recovery" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Anorectic_Behavior_Observation_Scale" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Exercise_bulimia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hypergymnasia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/SCOFF_questionnaire" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pagophagia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Food_addiction" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Killing_Aurora" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Primary_polydipsia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Binge_eating_disorder" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Eating_disorder_not_otherwise_specified" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Orthorexia_nervosa" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Opsophagos" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Wannarexia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Food_Addicts_in_Recovery_Anonymous" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nocturnal_sleep-related_eating_disorder" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Other_specified_feeding_or_eating_disorder" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Disorders_of_consciousness", + "surface form": "disorders" + } + ], + "relations": [ + { "URI": "http://dbpedia.org/property/type", "surface form": "types" }, + { "URI": "http://dbpedia.org/ontology/house", "surface form": "eating" } + ] + }, + { + "id": "104", + "answertype": "boolean", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Was Marc Chagall a jew?", + "keywords": "Marc Chagall, jew" + } + ], + "query": { + "sparql": "ASK WHERE { <http://dbpedia.org/resource/Marc_Chagall> <http://dbpedia.org/property/ethnicity> \"Jewish\"@en }" + }, + "answers": [{ "head": {}, "results": {}, "boolean": false }], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Marc_Chagall", + "surface form": "Marc Chagall" + } + ], + "relations": [ + { "URI": "http://dbpedia.org/ontology/outflow", "surface form": "jew" } + ] + }, + { + "id": "105", + "answertype": "number", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "What was Brazil's lowest rank in the FIFA World Ranking?", + "keywords": "Brazil, lowest rank, FIFA World Ranking" + } + ], + "query": { + "sparql": "SELECT DISTINCT ?n WHERE { <http://dbpedia.org/resource/Brazil_national_football_team> <http://dbpedia.org/property/fifaMin> ?n }" + }, + "answers": [ + { + "head": { "vars": ["c"] }, + "results": { + "bindings": [{ "c": { "type": "literal", "value": "22" } }] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Brazil", + "surface form": "Brazil" + }, + { + "URI": "http://dbpedia.org/resource/RANK", + "surface form": " lowest rank" + }, + { "URI": "http://dbpedia.org/resource/FIFA", "surface form": "FIFA" }, + { + "URI": "http://dbpedia.org/resource/WBSC_World_Rankings", + "surface form": "World Ranking" + } + ], + "relations": [] + }, + { + "id": "106", + "answertype": "number", + "aggregation": true, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "How many films did Leonardo DiCaprio star in?", + "keywords": "film, star, Leonardo DiCaprio" + } + ], + "query": { + "sparql": "SELECT (COUNT(DISTINCT ?uri) AS ?c) WHERE { ?uri a <http://dbpedia.org/ontology/Film> ; <http://dbpedia.org/ontology/starring> <http://dbpedia.org/resource/Leonardo_DiCaprio> }" + }, + "answers": [ + { + "head": { "vars": ["c"] }, + "results": { + "bindings": [{ "c": { "type": "literal", "value": "27" } }] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Leonardo_DiCaprio", + "surface form": "Leonardo DiCaprio star" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/numberOfFilms", + "surface form": "films" + } + ] + }, + { + "id": "107", + "answertype": "boolean", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Was Margaret Thatcher a chemist?", + "keywords": "Margaret Thatcher, chemist" + } + ], + "query": { + "sparql": "ASK WHERE { <http://dbpedia.org/resource/Margaret_Thatcher> <http://dbpedia.org/ontology/profession> <http://dbpedia.org/resource/Chemist> }" + }, + "answers": [{ "head": {}, "results": {}, "boolean": true }], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Margaret_Thatcher", + "surface form": "Margaret Thatcher" + }, + { + "URI": "http://dbpedia.org/resource/Chemist", + "surface form": "chemist" + } + ], + "relations": [] + }, + { + "id": "108", + "answertype": "resource", + "aggregation": false, + "onlydbo": false, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Which U.S. states are in the same time zone as Utah?", + "keywords": "U.S. state, same, time zone, Utah" + } + ], + "query": { + "sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Utah> <http://dbpedia.org/property/timezone> ?x . ?uri a <http://dbpedia.org/class/yago/WikicatStatesOfTheUnitedStates> ; <http://dbpedia.org/property/timezone> ?x FILTER ( ?uri != <http://dbpedia.org/resource/Utah> ) }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nebraska" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/New_Mexico" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Illinois" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Alabama" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vermont" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Virginia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Minnesota" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kansas" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Missouri" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Wyoming" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Texas" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Connecticut" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Georgia_(U.S._state)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Maryland" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hawaii" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/North_Dakota" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Massachusetts" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kentucky" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Oklahoma" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/South_Dakota" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mississippi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Idaho" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Indiana" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/North_Carolina" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Louisiana" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Delaware" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Arizona" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rhode_Island" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Colorado" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Maine" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Washington_(state)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Florida" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Iowa" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/West_Virginia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/South_Carolina" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pennsylvania" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Wisconsin" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Michigan" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/New_Hampshire" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Montana" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nevada" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tennessee" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Alaska" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Arkansas" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/New_Jersey" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Usk,_Washington", + "surface form": "US" + }, + { "URI": "http://dbpedia.org/resource/Utah", "surface form": "Utah" } + ], + "relations": [ + { + "URI": "http://dbpedia.org/property/timezone", + "surface form": "time zone" + } + ] + }, + { + "id": "109", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Give me all books written by Danielle Steel.", + "keywords": "book, written, Danielle Steel" + } + ], + "query": { + "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Book> ; <http://dbpedia.org/ontology/author> <http://dbpedia.org/resource/Danielle_Steel> }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Thurston_House_(novel)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Message_from_Nam" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Daddy_(novel)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Toxic_Bachelors" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_House_(novel)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Five_Days_in_Paris" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/H.R.H._(novel)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Passion's_Promise" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Honor_Thyself" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/A_Good_Woman_(novel)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Amazing_Grace_(novel)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Betrayal_(Steel_novel)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/A_Perfect_Stranger" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Fine_Things" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Matters_of_the_Heart_(novel)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Zoya_(novel)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Miracle_(novel)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Big_Girl_(novel)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Coming_Out_(novel)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Silent_Honor" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Accident_(novel)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Season_of_Passion" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ransom_(Steel_novel)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mixed_Blessings_(novel)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jewels_(novel)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Southern_Lights_(novel)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Wanderlust_(Steel_novel)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Full_Circle_(novel)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/One_Day_at_a_Time_(novel)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sunset_in_St._Tropez" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Echoes_(Steel_novel)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Gift_(Steel_novel)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Crossings_(Steel_novel)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/No_Greater_Love_(novel)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Impossible_(novel)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Second_Chance_(Steel_novel)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Special_Delivery_(novel)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Family_Album_(novel)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Now_and_Forever_(novel)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rogue_(novel)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hotel_Vendome_(novel)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Friends_Forever_(novel)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Safe_Harbour_(novel)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kaleidoscope_(novel)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sisters_(Steel_novel)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bungalow_2" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Family_Ties_(novel)" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Danielle_Steel", + "surface form": "Danielle Steel" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/volume", + "surface form": "books" + }, + { + "URI": "http://dbpedia.org/ontology/writer", + "surface form": "written" + } + ] + }, + { + "id": "110", + "answertype": "resource", + "aggregation": true, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Which country has the most official languages?", + "keywords": "country, official language, most" + } + ], + "query": { + "sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Country> . ?uri <http://dbpedia.org/property/officialLanguages> ?language . } ORDER BY DESC(COUNT(?language)) OFFSET 0 LIMIT 1" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sark" + } + } + ] + } + } + ], + "entities": [], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/country", + "surface form": "country" + }, + { + "URI": "http://dbpedia.org/ontology/incumbent", + "surface form": "official languages" + } + ] + }, + { + "id": "111", + "answertype": "number", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "What is the total amount of men and women serving in the FDNY?", + "keywords": "total amount, men, women, serve, FDNY" + } + ], + "query": { + "sparql": "SELECT DISTINCT ?num WHERE { <http://dbpedia.org/resource/New_York_City_Fire_Department> <http://dbpedia.org/property/employees> ?num }" + }, + "answers": [ + { + "head": { "vars": ["c"] }, + "results": { + "bindings": [{ "c": { "type": "literal", "value": "15629" } }] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/FDNY_Racing", + "surface form": "FDNY" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/populationTotal", + "surface form": "total" + }, + { + "URI": "http://dbpedia.org/ontology/authority", + "surface form": "men" + }, + { + "URI": "http://dbpedia.org/ontology/person", + "surface form": "women" + }, + { + "URI": "http://dbpedia.org/ontology/service", + "surface form": "serving" + } + ] + }, + { + "id": "112", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Which actor played Chewbacca?", + "keywords": "actor, play, Chewbacca" + } + ], + "query": { + "sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Chewbacca> <http://dbpedia.org/ontology/portrayer> ?uri }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Joonas_Suotamo" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Peter_Mayhew" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Chewbacca", + "surface form": "Chewbacca" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/artist", + "surface form": "actor" + }, + { + "URI": "http://dbpedia.org/ontology/portrayer", + "surface form": "played" + } + ] + }, + { + "id": "113", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Give me all libraries established earlier than 1400.", + "keywords": "libraries, established, earlier than 1400" + } + ], + "query": { + "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Library> ; <http://dbpedia.org/property/established> ?year FILTER ( ?year < 1400 ) }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nanpura_Parsi_Library" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Austrian_National_Library" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Merton_College_Library" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Library_of_Pergamum" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mother_Irene_Gill_Memorial_Library" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Library_of_Ashurbanipal" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cambridge_University_Library" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_and_University_Library_of_the_Republika_Srpska" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Library_of_Alexandria" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Almeida_Garrett_Library" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Heidelberg_University_Library" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Maughan_Library" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Libraries_in_Brighton_and_Hove", + "surface form": "libraries" + }, + { "URI": "http://dbpedia.org/resource/1400", "surface form": "1400" } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/established", + "surface form": "established" + }, + { "URI": "http://dbpedia.org/ontology/date", "surface form": "when" } + ] + }, + { + "id": "114", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Which programming languages were influenced by Perl?", + "keywords": "programming languages, influenced by, Perl" + } + ], + "query": { + "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/ProgrammingLanguage> { ?uri <http://dbpedia.org/ontology/influencedBy> <http://dbpedia.org/resource/Perl> } UNION { <http://dbpedia.org/resource/Perl> <http://dbpedia.org/ontology/influenced> ?uri } }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Perl_Data_Language" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/ECMAScript" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Falcon_(programming_language)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Julia_(programming_language)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/BeanShell" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/LPC_(programming_language)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/JavaScript" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CoffeeScript" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/PHP" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ruby_(programming_language)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Perl_6" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/P*" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Qore_(programming_language)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Python_(programming_language)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Judoscript" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Groovy_(programming_language)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/MIVA_Script" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/PowerShell" + } + } + ] + } + } + ], + "entities": [ + { "URI": "http://dbpedia.org/resource/Perl", "surface form": "Perl" } + ], + "relations": [ + { + "URI": "http://dbpedia.org/property/programmingLanguage", + "surface form": "programming languages" + }, + { + "URI": "http://dbpedia.org/ontology/influenced", + "surface form": "influenced" + } + ] + }, + { + "id": "115", + "answertype": "resource", + "aggregation": false, + "onlydbo": false, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "In which U.S. state is Mount McKinley located?", + "keywords": "U.S. state, located, Mount McKinley" + } + ], + "query": { + "sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Mount_McKinley> dbo:wikiPageRedirects ?x . ?x <http://dbpedia.org/ontology/locatedInArea> ?uri. ?uri rdf:type yago:WikicatStatesOfTheUnitedStates }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Alaska" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/United_States", + "surface form": "US" + }, + { + "URI": "http://dbpedia.org/resource/Denali", + "surface form": "Mount McKinley" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/locatedInArea", + "surface form": "located" + } + ] + }, + { + "id": "116", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "What airlines are part of the SkyTeam alliance?", + "keywords": "airlines, part of, SkyTeam alliance" + } + ], + "query": { + "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Airline> { ?uri <http://dbpedia.org/ontology/alliance> <http://dbpedia.org/resource/SkyTeam> } UNION { ?uri <http://dbpedia.org/ontology/Alliance> <http://dbpedia.org/resource/SkyTeam> } }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CityJet" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Shanghai_Airlines" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Alitalia_CityLiner" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/KLM_Cityhopper" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Aeroflot" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Shuttle_America" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Brit_Air" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Aerom\u00e9xico_Travel" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/R\u00e9gional_Compagnie_A\u00e9rienne_Europ\u00e9enne" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Continental_Airlines" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Alitalia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Aerol\u00edneas_Argentinas" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Middle_East_Airlines" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Continental_Express" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Delta_Air_Lines" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chautauqua_Airlines" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Aerom\u00e9xico" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Air_Europa" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/RegionsAir" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Air_France" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Endeavor_Air" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/HOP!" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Freedom_Airlines" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Delta_Express" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/China_Airlines" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Continental_Micronesia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/KLM" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mesaba_Airlines" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/SkyWest_Airlines" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Saudia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Czech_Airlines" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vietnam_Airlines" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Compass_Airlines_(North_America)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Delta_Connection" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/China_Southern_Airlines" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Comair" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Austral_L\u00edneas_A\u00e9reas" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/China_Eastern_Airlines" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kenya_Airways" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Korean_Air" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Atlantic_Southeast_Airlines" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Alitalia-Linee_Aeree_Italiane" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Continental_Connection" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Donavia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Aerom\u00e9xico_Connect" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mandarin_Airlines" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Garuda_Indonesia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/C.A.I._First" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Northwest_Airlines" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Song_(airline)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/TAROM" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/C.A.I._Second" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/XiamenAir" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/ExpressJet" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/SkyTeam", + "surface form": "SkyTeam alliance" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/icaoAirlineCode", + "surface form": "airlines" + } + ] + }, + { + "id": "117", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Which ships were called after Benjamin Franklin?", + "keywords": "ship, called after, Benjamin Franklin" + } + ], + "query": { + "sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/shipNamesake> <http://dbpedia.org/resource/Benjamin_Franklin> }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/HMS_Canopus_(1798)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/USS_Franklin_(1795)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CMA_CGM_Benjamin_Franklin" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/USS_Franklin_(1815)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ben_Franklin_(PX-15)" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Benjamin_Franklin", + "surface form": "Benjamin Franklin" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/shipBeam", + "surface form": "ships" + }, + { + "URI": "http://dbpedia.org/property/nickname", + "surface form": "called" + } + ] + }, + { + "id": "118", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Give me all Methodist politicians.", + "keywords": "politician, Methodist" + } + ], + "query": { + "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Politician> ; <http://dbpedia.org/ontology/religion> <http://dbpedia.org/resource/Methodism> }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Charles_S._Chestnut,_IV" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/William_H._Murray" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Arthur_Henderson" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/John_Hunt_(Australian_politician)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Frank_O'Bannon" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Canaan_Banana" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/William_Henry_Piddington" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/George_W._Bush" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Roy_J._Turner" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Don_Samuelson" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/John_E._Peterson" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bob_Barr" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Thomas_Ferens" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/James_F._Hinkle" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/George_N._Conrad" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kingsley_Rasanayagam" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/William_L._Hungate" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cat_Smith" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Fielding_L._Wright" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/L._M._Shaw" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/J._Powell_Royall" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Beverly_A._Davis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/William_L._Andrews" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Robert_E._Smylie" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Syngman_Rhee" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Roy_Bennett_(politician)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Frank_R._Gooding" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lewis_Charles_Levin" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Robert_O._Crockett" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Richie_Robb" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/John_Brodhead_(New_Hampshire_politician)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nathaniel_B._Early" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/John_Karefa-Smart" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/G._Walter_Mapp" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nga_Kor_Ming" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tom_Bolack" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Johnston_Murray" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/William_H._Jeffreys,_Jr." + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/John_Ingram_(politician)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Henry_D._Hatfield" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Edmund_Taylor_(New_Zealand_politician)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/A._N._R._Robinson" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/J._Millard_Tawes" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Edwin_L._Mechem" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/George_E._Allen,_Sr." + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Thomas_Rowe" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ernest_McFarland" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Wong_Ho_Leng" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bob_Taft" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/John_Cann" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ernest_Lundeen" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/William_Claflin" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hugh_Mason" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/D._W._Davis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/John_Marshall_Butler" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/J._Frank_Sergent" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Leon_C._Phillips" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ted_Weill" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mendel_Jackson_Davis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Carte_Goodwin" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Harry_Nice" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Robert_Bradford_(Northern_Irish_politician)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Samuel_T._Montague" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Paul_Fannin" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Boris_Trajkovski" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Alfred_Hunt_(politician)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Barzilla_W._Clark" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Charles_N._Haskell" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/William_L._Moore_(Virginia_politician)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ngeh_Koo_Ham" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Leonard_B._Jordan" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Campbell_C._Hyatt" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Charles_S._Pendleton" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/William_A._Pile" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Robert_L._Williams" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/John_C._Sanborn" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Milton_Margai" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/James_B._A._Robertson" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vincent_Massey" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/William_Shepherd_Allen" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Willis_Benson_Machen" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/John_L._Bates" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Willis_Smith" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/W._Willard_Wirtz" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/William_Traylen" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Robert_J._Mrazek" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Chicago_Politicians", + "surface form": "Methodist politicians" + } + ], + "relations": [] + }, + { + "id": "119", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "What other books have been written by the author of The Fault in Our Stars?", + "keywords": "books, author, The Fault in Our Stars" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> SELECT ?books WHERE { ?books dbo:author <http://dbpedia.org/resource/John_Green_(author)> }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Will_Grayson,_Will_Grayson" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/An_Abundance_of_Katherines" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Looking_for_Alaska" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Fault_in_Our_Stars" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Let_It_Snow:_Three_Holiday_Romances" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Paper_Towns" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/The_Fault_in_Our_Stars", + "surface form": "The Fault in Our Stars" + } + ], + "relations": [ + { + "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" + } + ] + }, + { + "id": "120", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "What is the highest mountain?", + "keywords": "mountain, highest" + } + ], + "query": { + "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Mountain> ; <http://dbpedia.org/ontology/elevation> ?elevation } ORDER BY DESC(?elevation) OFFSET 0 LIMIT 1" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kings_Peak_(Idaho)" + } + } + ] + } + } + ], + "entities": [], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/highestMountain", + "surface form": "highest mountain" + } + ] + }, + { + "id": "121", + "answertype": "resource", + "aggregation": true, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Which poet wrote the most books?", + "keywords": "poet, most, books" + } + ], + "query": { + "sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/occupation> <http://dbpedia.org/resource/Poet> . ?x <http://dbpedia.org/ontology/author> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Book> . } ORDER BY DESC(COUNT(?x)) OFFSET 0 LIMIT 1" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jules_Verne" + } + } + ] + } + } + ], + "entities": [], + "relations": [ + { "URI": "http://dbpedia.org/ontology/author", "surface form": "poet" }, + { + "URI": "http://dbpedia.org/ontology/composer", + "surface form": "wrote" + }, + { "URI": "http://dbpedia.org/ontology/volume", "surface form": "books" } + ] + }, + { + "id": "122", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Which programming languages influenced Javascript?", + "keywords": "programming languages, influenced, Javascript" + } + ], + "query": { + "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/ProgrammingLanguage> ; <http://dbpedia.org/ontology/influenced> <http://dbpedia.org/resource/JavaScript> }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Self_(programming_language)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Python_(programming_language)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/C_(programming_language)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Java_(programming_language)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lua_(programming_language)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Perl" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Scheme_(programming_language)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lisp_(programming_language)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/HyperTalk" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Syntax_(programming_languages)", + "surface form": "programming languages languages influenced Javascript" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/property/programming", + "surface form": "programming" + } + ] + }, + { + "id": "123", + "answertype": "resource", + "aggregation": true, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Which musician wrote the most books?", + "keywords": "musician, wrote, the most books" + } + ], + "query": { + "sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/occupation> <http://dbpedia.org/resource/Musician> . ?x <http://dbpedia.org/ontology/author> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Book> . } ORDER BY DESC(COUNT(?x)) OFFSET 0 LIMIT 1" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jo_Nesb\u00f8" + } + } + ] + } + } + ], + "entities": [], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/show", + "surface form": "musician" + }, + { + "URI": "http://dbpedia.org/ontology/composer", + "surface form": "wrote" + }, + { "URI": "http://dbpedia.org/ontology/volume", "surface form": "books" } + ] + }, + { + "id": "124", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Which films starring Clint Eastwood did he direct himself?", + "keywords": "film, starring, direct, Clint Eastwood" + } + ], + "query": { + "sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/director> <http://dbpedia.org/resource/Clint_Eastwood> ; <http://dbpedia.org/ontology/starring> <http://dbpedia.org/resource/Clint_Eastwood> }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Play_Misty_for_Me" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Blood_Work_(film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Space_Cowboys" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Gauntlet_(film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Million_Dollar_Baby" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/True_Crime_(1999_film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bronco_Billy" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Magnum_Force" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/High_Plains_Drifter" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gran_Torino" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Clint_Eastwood", + "surface form": "Clint Eastwood" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/numberOfFilms", + "surface form": "films" + }, + { + "URI": "http://dbpedia.org/ontology/starring", + "surface form": "starring" + }, + { + "URI": "http://dbpedia.org/ontology/director", + "surface form": "direct" + } + ] + }, + { + "id": "125", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Which software has been developed by organizations founded in California?", + "keywords": "organization, founded, California, develop, software" + } + ], + "query": { + "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Software> . ?company a <http://dbpedia.org/ontology/Company> . ?uri <http://dbpedia.org/ontology/developer> ?company . ?company <http://dbpedia.org/ontology/foundationPlace> <http://dbpedia.org/resource/California> }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Autodesk_Animator" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Space_Spartans" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/HK2_DI_Kernel" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Oracle_Application_Express" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sun_Java_System_Communications_Suite" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Oracle_VM_Server_for_x86" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Java_Advanced_Imaging" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Oracle_NoSQL_Database" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Frogs_and_Flies" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Star_Wars:_Battlefront_(2004_video_game)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Call_of_Duty:_Ghosts" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Solaris_Containers" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Autodesk_Mudbox" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Armor_Battle" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/MySQL_Workbench" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Borland_Turbo_C" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Adventures_of_Elmo_in_Grouchland_(video_game)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Triple_Action" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/MapGuide_Open_Source" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Borland_C++" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Zero_(game_engine)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Java_API_for_XML_Web_Services" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/OpenStep" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cooliris_(plugin)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Turbo_Vision" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/HijackThis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Call_of_Duty_4:_Modern_Warfare" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/FireChat" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pretty_Good_Privacy" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Communist_Mutants_from_Space" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/MyTown_(video_game)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Call_of_Duty_(video_game)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/AutoCAD_Architecture" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/OpenJDK" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/IW_engine" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/OpenSolaris" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Army_Men:_RTS" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Project_Metro" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Norton_Internet_Security" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/HotSpot" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Call_of_Duty:_Infinite_Warfare" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Oracle_Linux" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sharp_Shot" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Norton_Personal_Firewall" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/MySQL_Enterprise" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Midnight_Star:_Renegade" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tron:_Deadly_Discs" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Project_Grizzly_(software)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Escape_from_the_Mindmaster" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Autodesk_Gameware" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Norton_AntiBot" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Packet_Tracer" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ghost_(software)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Oracle_Enterprise_Manager_Ops_Center" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/JBuilder" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CodeWright" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/DevPartner" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Autodesk_SketchBook_Pro" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Borland_Kylix" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Call_of_Duty:_Modern_Warfare_3" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Call_of_Duty:_Modern_Warfare_2" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Call_of_Duty_2" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Baseball_(Intellivision_video_game)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Autodesk_Revit" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tropico_2:_Pirate_Cove" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Webcam_Social_Shopper" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hover_Force" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Oracle_Developer_Studio" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Party_Mix_(video_game)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Full_Spectrum_Warrior" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Open_Message_Queue" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/B-17_Bomber_(video_game)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Oracle_iPlanet_Web_Server" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Norton_Security" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Skiing_(Intellivision_video_game)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/TeraText" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Oracle_WebLogic_Server" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dark_Reign_2" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tuxedo_(software)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Battlezone_II:_Combat_Commander" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Autodesk_Alias" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hot_Wheels_Stunt_Track_Driver" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sub_Hunt" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/GlassFish" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Oracle_Discoverer" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Autodesk_123D" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Autodesk_MotionBuilder" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Eudora_OSE" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cisco_Systems_VPN_Client" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tcov" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Turbo_Delphi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Project_Phobos" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Linear_Tape_File_System" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Astrosmash" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/MyISAM" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/MySQL" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Oracle_BI_Publisher" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Norton_Zone" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hyperion_Planning" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Libtiff" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Autodesk_Softimage" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Oracle_iPlanet_Web_Proxy_Server" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Football_(video_game)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Clam_AntiVirus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Planet_Hot_Wheels" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/NASL_Soccer" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cisco_IOS" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/VirtualBox" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Silk_Central" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Java_Development_Kit" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Basketball_(1980_video_game)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Oracle_Database" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mercenaries:_Playground_of_Destruction" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Destroy_All_Humans!" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nashorn_(JavaScript_engine)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CAD_Overlay" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Autodesk_Inventor" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sword_of_Saros" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Star_Strike" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Panzer_General_III:_Scorched_Earth" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Eudora_(email_client)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Oracle_SQL_Developer" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Norton_Utilities" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sea_Battle" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Star_Wars:_The_Clone_Wars_(2002_video_game)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/IRIX" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Dark_Knight_(video_game)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Full_Spectrum_Warrior:_Ten_Hammers" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Trend_Micro_Internet_Security" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mercenaries_2:_World_in_Flames" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Graal_(compiler)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Saboteur" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Oracle_Complex_MRO" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Star_Wars:_Battlefront_II" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Motocross_(video_game)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kynapse" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cisco_Network_Registrar" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/IRIS_GL" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Boxing_(1981_video_game)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Fsn_(file_manager)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Java_API_for_RESTful_Web_Services" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Buzz!_Junior:_Robo_Jam" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Turbo_C++" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/ObjectVision" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Movable_Type" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/MySQL_Cluster" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Oracle_Spatial_and_Graph" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Phaser_Patrol" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/PeopleTools" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Lord_of_the_Rings:_Conquest" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Project_Shoal_(software)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/PcAnywhere" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/VisualVM" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Scaleform_GFx" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Snafu_(video_game)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/JavaTest_harness" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Trade_Empires" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/JDeveloper" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Imperialism_II:_Age_of_Exploration" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Star_Wars:_The_Best_of_PC" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/GrandView_(software)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Oracle_Enterprise_Pack_for_Eclipse" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dr._Safety" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Imperialism_(video_game)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jinitiator" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Oracle_Grid_Engine" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/TopLink" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/REX_OS" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Buzz_Bombers" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Midnight_Star_(video_game)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Java_Desktop_System" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/OpenGrok" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Oracle_Business_Intelligence_Suite_Enterprise_Edition" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tron:_Solar_Sailer" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Navisworks" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Java_(software_platform)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dragonstomper" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Destroy_All_Humans!_2" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Payara_Server" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Q&A_(Symantec)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/OpenOffice.org" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/TimesTen" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Oracle_Multimedia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Turbo_Assembler" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Oracle_VDI" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Oracle_TopLink" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Norton_Power_Eraser" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Oracle_Media_Objects" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Snort_(software)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Space_Hawk" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kool-Aid_Man_(video_game)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/QuickBooks" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Voldemort_(distributed_data_store)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Project_Jersey" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Shark!_Shark!" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Oracle_VM_Server_for_SPARC" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Night_Stalker_(video_game)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Oracle_Application_Server" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/WebScaleSQL" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/AutoCAD" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Berkeley_DB" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bomb_Squad_(video_game)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Norton_Family" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Immunet" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Horse_Racing_(video_game)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cisco_IOS_XE" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/StarOffice" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Borland_Together" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Symantec_Online_Backup" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Auto_Racing_(video_game)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dbx_(debugger)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Open64" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Network_Security_Services" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Oracle_Data_Mining" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Intellivision_World_Series_Baseball" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cisco_Security_Monitoring,_Analysis,_and_Response_System" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Software_Publishing_Corporation", + "surface form": "software" + }, + { + "URI": "http://dbpedia.org/resource/California", + "surface form": "California" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/property/developer", + "surface form": "developed" + }, + { + "URI": "http://dbpedia.org/ontology/agency", + "surface form": "organizations" + }, + { + "URI": "http://dbpedia.org/ontology/foundingYear", + "surface form": "founded" + } + ] + }, + { + "id": "126", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Which instruments does Cat Stevens play?", + "keywords": "Cat Stevens, instrument" + } + ], + "query": { + "sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Cat_Stevens> <http://dbpedia.org/ontology/instrument> ?uri }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Baldwin_Piano_Company" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gibson_ES-335" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mandolin" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mellotron" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Epiphone_Casino" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Fender_Telecaster" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gibson_Everly_Brothers_Flattop" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rhodes_piano" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gibson_J-200" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ovation_Guitar_Company" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Cat_Stevens", + "surface form": "Cat Stevens" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/property/instrument", + "surface form": "instruments" + }, + { + "URI": "http://dbpedia.org/ontology/starring", + "surface form": "play" + } + ] + }, + { + "id": "127", + "answertype": "number", + "aggregation": true, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "How many airlines are members of the Star Alliance?", + "keywords": "how many, airlines, member, Star Alliance" + } + ], + "query": { + "sparql": "SELECT (COUNT(DISTINCT ?uri) AS ?c) WHERE { ?uri a <http://dbpedia.org/ontology/Airline> ; <http://dbpedia.org/ontology/alliance> <http://dbpedia.org/resource/Star_Alliance> }" + }, + "answers": [ + { + "head": { "vars": ["c"] }, + "results": { + "bindings": [{ "c": { "type": "literal", "value": "97" } }] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Star_Alliance", + "surface form": "Star Alliance" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/icaoAirlineCode", + "surface form": "airlines" + }, + { + "URI": "http://dbpedia.org/property/members", + "surface form": "members" + } + ] + }, + { + "id": "128", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Give me all actors called Baldwin.", + "keywords": "actors, called, Baldwin" + } + ], + "query": { + "sparql": "PREFIX foaf:<http://xmlns.com/foaf/0.1/> SELECT DISTINCT ?uri WHERE { ?uri foaf:surname 'Baldwin'@en . { ?uri <http://dbpedia.org/ontology/occupation> <http://dbpedia.org/resource/Actor> . } UNION { ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Actor> . } }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Judith_Baldwin" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Peter_Baldwin_(actor)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Talon_(actor)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Greg_Baldwin" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Robert_Baldwin_(actor)" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Baldwin", + "surface form": "Baldwin" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/background", + "surface form": "actors" + }, + { + "URI": "http://dbpedia.org/property/nickname", + "surface form": "called" + } + ] + }, + { + "id": "129", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Who wrote The Hunger Games?", + "keywords": "wrote, Hunger Games" + } + ], + "query": { + "sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/The_Hunger_Games> <http://dbpedia.org/property/author> ?uri }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Suzanne_Collins" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/The_Hunger_Games", + "surface form": "The Hunger Games" + } + ], + "relations": [ + { "URI": "http://dbpedia.org/property/author", "surface form": "wrote" } + ] + }, + { + "id": "130", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "For which label did Elvis record his first album?", + "keywords": "Elvis, first, album, label" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?x rdf:type dbo:Album ; dbo:artist res:Elvis_Presley ; dbo:releaseDate ?y ; dbo:recordLabel ?uri } ORDER BY ASC(?y) OFFSET 0 LIMIT 1" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pickwick_Records" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Elvis_(1973_album)", + "surface form": "Elvis" + } + ], + "relations": [ + { "URI": "http://dbpedia.org/property/label", "surface form": "label" }, + { + "URI": "http://dbpedia.org/ontology/recordLabel", + "surface form": "record" + }, + { "URI": "http://dbpedia.org/ontology/album", "surface form": "album" } + ] + }, + { + "id": "131", + "answertype": "boolean", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Is Christian Bale starring in Batman Begins?", + "keywords": "Christian Bale, starring, Batman Begins" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> ASK WHERE { res:Batman_Begins dbo:starring res:Christian_Bale }" + }, + "answers": [{ "head": {}, "results": {}, "boolean": false }], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Christian_Bale", + "surface form": "Christian Bale" + }, + { + "URI": "http://dbpedia.org/resource/Batman_Begins", + "surface form": "Batman Begins" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/starring", + "surface form": "starring" + } + ] + }, + { + "id": "132", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Where is the residence of the prime minister of Spain?", + "keywords": "prime minister, Spain, residence" + } + ], + "query": { + "sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Prime_Minister_of_Spain> <http://dbpedia.org/property/residence> ?uri }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Palacio_de_la_Moncloa" + } + } + ] + } + } + ], + "entities": [ + { "URI": "http://dbpedia.org/resource/Spain", "surface form": "Spain" } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/residence", + "surface form": "residence" + }, + { + "URI": "http://dbpedia.org/ontology/primeMinister", + "surface form": "prime minister" + } + ] + }, + { + "id": "133", + "answertype": "resource", + "aggregation": true, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Which actor was casted in the most movies?", + "keywords": "actor, casted, most movies" + } + ], + "query": { + "sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Actor> . ?f <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film> . ?f <http://dbpedia.org/ontology/starring> ?uri . } ORDER BY DESC(COUNT(DISTINCT(?f))) OFFSET 0 LIMIT 1" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Andy_Lau" + } + } + ] + } + } + ], + "entities": [], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/artist", + "surface form": "actor" + }, + { + "URI": "http://dbpedia.org/ontology/class", + "surface form": "casted" + }, + { "URI": "http://dbpedia.org/ontology/film", "surface form": "movies" } + ] + }, + { + "id": "134", + "answertype": "resource", + "aggregation": true, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Which countries have more than two official languages?", + "keywords": "country, official language, more than two" + } + ], + "query": { + "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Country> ; <http://dbpedia.org/ontology/officialLanguage> ?language } GROUP BY ?uri HAVING ( COUNT(?language) > 2 )" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Basque_Country_(greater_region)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ladonia_(micronation)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Subanon_people" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rwanda" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Torres_Strait_Islands" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Comoros" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Danish_Realm" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Eurasian_Economic_Union" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Switzerland" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Zanzibar" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vojvodina" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Northern_Mariana_Islands" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Equatorial_Guinea" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Union_of_Sovereign_States" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/New_Zealand" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cura\u00e7ao" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Singapore" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Allied_Military_Government_for_Occupied_Territories" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Luxembourg" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Somaliland" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Transnistria" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Anjouan" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Moh\u00e9li" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Organization_for_Security_and_Co-operation_in_Europe" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Seychelles" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Malta" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Republika_Srpska" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vanuatu" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Grande_Comore" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Principality_of_Hutt_River" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Belgium" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Countries_of_the_United_Kingdom", + "surface form": "countries" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/property/languages", + "surface form": "official languages" + } + ] + }, + { + "id": "135", + "answertype": "resource", + "aggregation": true, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Which countries have more than ten caves?", + "keywords": "country, cave, more than ten" + } + ], + "query": { + "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Country> . ?cave a <http://dbpedia.org/ontology/Cave> { ?cave <http://dbpedia.org/ontology/location> ?uri } UNION { ?cave <http://dbpedia.org/ontology/location> ?loc . ?loc <http://dbpedia.org/ontology/country> ?uri } } GROUP BY ?uri HAVING ( COUNT(?cave) > 10 )" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/India" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Germany" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gibraltar" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Greece" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Spain" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Turkey" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/France" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/United_States" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Australia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Italy" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Republic_of_Ireland" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jamaica" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mexico" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/South_Africa" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Portugal" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/United_Kingdom" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Countries_of_the_United_Kingdom", + "surface form": "countries" + }, + { + "URI": "http://dbpedia.org/resource/Caves_of_Aggtelek_Karst_and_Slovak_Karst", + "surface form": "caves" + } + ], + "relations": [] + }, + { + "id": "136", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Show me all songs from Bruce Springsteen released between 1980 and 1990.", + "keywords": "song, Bruce Springsteen, release, between 1980 and 1990" + } + ], + "query": { + "sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Song> . ?uri <http://dbpedia.org/ontology/artist> <http://dbpedia.org/resource/Bruce_Springsteen> . ?uri <http://dbpedia.org/ontology/releaseDate> ?date . FILTER (?date >= '1980-01-01'^^xsd:date && ?date <= '1990-12-31'^^xsd:date) }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Downbound_Train" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Johnny_99_(song)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/No_Surrender_(song)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/For_You_(Bruce_Springsteen_song)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Darlington_County_(song)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bobby_Jean" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Working_on_the_Highway" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Bruce_Springsteen", + "surface form": "Bruce Springsteen" + }, + { "URI": "http://dbpedia.org/resource/1980", "surface form": "1980" }, + { "URI": "http://dbpedia.org/resource/1990", "surface form": "1990" } + ], + "relations": [ + { "URI": "http://dbpedia.org/ontology/show", "surface form": "show" }, + { + "URI": "http://dbpedia.org/ontology/anthem", + "surface form": "songs" + }, + { + "URI": "http://dbpedia.org/property/released", + "surface form": "released" + } + ] + }, + { + "id": "137", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Which television shows were created by John Cleese?", + "keywords": "television show, create, John Cleese" + } + ], + "query": { + "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/TelevisionShow> ; <http://dbpedia.org/ontology/creator> <http://dbpedia.org/resource/John_Cleese> }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Monty_Python's_Personal_Best" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Monty_Python's_Flying_Circus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Fawlty_Towers" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Parrot_Sketch_Not_Included_\u2013_20_Years_of_Monty_Python" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Python_Night_\u2013_30_Years_of_Monty_Python" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/At_Last_the_1948_Show" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Monty_Python_Live_at_Aspen" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/John_Cleese", + "surface form": "John Cleese" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/televisionSeries", + "surface form": "television shows" + }, + { + "URI": "http://dbpedia.org/ontology/author", + "surface form": "created" + } + ] + }, + { + "id": "138", + "answertype": "date", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "When did Latvia join the EU?", + "keywords": "Latvia, join, EU" + } + ], + "query": { + "sparql": "SELECT DISTINCT ?date WHERE { <http://dbpedia.org/resource/Latvia> <http://dbpedia.org/property/accessioneudate> ?date }" + }, + "answers": [ + { + "head": { "vars": ["date"] }, + "results": { + "bindings": [ + { "date": { "type": "literal", "value": "2004-05-01" } } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Basque_language", + "surface form": "EU" + }, + { + "URI": "http://dbpedia.org/resource/Join", + "surface form": "Latvia join the" + } + ], + "relations": [ + { "URI": "http://dbpedia.org/property/date", "surface form": "when" } + ] + }, + { + "id": "139", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Which soccer players were born on Malta?", + "keywords": "soccer player, born on, Malta" + } + ], + "query": { + "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/SoccerPlayer> ; <http://dbpedia.org/ontology/birthPlace> <http://dbpedia.org/resource/Malta> }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Steve_Bezzina" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Charles_Scerri" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Charles_Azzopardi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mario_Muscat" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Reginald_Cini" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Joe_Cini" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Adrian_Ciantar" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/John_Bonello" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Charles_Micallef" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cleavon_Frendo" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ylenia_Carabott" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nicky_Saliba" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ernest_Barry_(footballer)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lolly_Vella" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Stefan_Sultana" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Edward_Darmanin" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Daniel_Theuma" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Claude_Mattocks" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jesmond_Delia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ian_Azzopardi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Emanuel_Fabri" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dennis_Mizzi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Michael_Cutajar" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rachel_Cuschieri" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cornelius_Hogan" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Robbie_Buttigieg" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Saviour_Darmanin" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jeffrey_Chetcuti" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Antoine_Zahra_(footballer,_born_1981)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/David_Carabott" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Edmond_Agius" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Charlie_Williams_(soccer)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Joseph_John_Aquilina" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jonathan_Caruana" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ivan_Zammit" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Adrian_Mifsud" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Antoine_Zahra_(footballer,_born_1977)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jimmy_Briffa" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Josef_Mifsud" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Salvinu_Schembri" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Raymond_Xuereb" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Edward_Herrera" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Alex_Muscat" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/George_Mallia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kenneth_Scicluna" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gareth_Sciberras" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/John_Cutbush_(footballer)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Roderick_Bajada" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/David_Cluett" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mario_Farrugia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Luke_Dimech" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Aaron_Xuereb" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Stephen_Wellman" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dyson_Falzon" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Andr\u00e9_Schembri" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Scott_Chircop" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Stefan_Giglio" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Eric_Schembri" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Clayton_Failla" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Eddie_Dwane" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Terence_Scerri" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Terence_Vella" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Charles_Muscat" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sean_Sullivan_(footballer)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Andrew_Cohen_(footballer)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Martin_Gregory" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bjorn_Kristensen_(footballer,_born_1993)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lino_Galea" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/John_McNeill_(footballer)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jean_Pierre_Mifsud_Triganza" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ian_Ciantar" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Reuben_Gauci" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Darren_Debono" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kevin_Sammut" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/William_Camenzuli" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Malcolm_Licari" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Denis_Cauchi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vincent_Borg_Bonaci" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Roderick_Briffa" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jean_Paul_Farrugia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rebecca_D'Agostino" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Carlo_Mamo" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ian_Stevens_(footballer)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Simon_Tortell" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Justin_Haber" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Andrei_Agius" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Martina_Borg" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Brian_Strutt" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hubert_Suda" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Giovanni_Galea" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Emma_Xuerreb" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/David_Camilleri" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pierre_Aquilina" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dorianne_Theuma" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Trevor_Cilia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nicole_Buttigieg" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Paul_Tisdale" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Brian_Said" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ryan_Fenech" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jonathan_Magri_Overend" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Paul_Fenech_(footballer)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kristian_Laferla" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Steve_Borg" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Noel_Turner" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Paul_Zammit_(footballer)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Adrian_Pulis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Massimo_Grima" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Martin_Scicluna" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Edward_Azzopardi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jonathan_Holland_(footballer)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jesmond_Zerafa" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Michael_Degiorgio" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Michael_Galea" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gilbert_Agius" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Michael_Mifsud" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/American_professional_soccer_players_abroad", + "surface form": "soccer players" + }, + { "URI": "http://dbpedia.org/resource/Malta", "surface form": "Malta" } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/birthPlace", + "surface form": "born" + } + ] + }, + { + "id": "140", + "answertype": "number", + "aggregation": true, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "How many politicians graduated from Columbia University?", + "keywords": "how many, politicians, graduated, Columbia University" + } + ], + "query": { + "sparql": "SELECT (COUNT(DISTINCT ?uri) AS ?c) WHERE { ?uri <http://dbpedia.org/ontology/profession> <http://dbpedia.org/resource/Politician> ; <http://dbpedia.org/ontology/almaMater> <http://dbpedia.org/resource/Columbia_University> }" + }, + "answers": [ + { + "head": { "vars": ["c"] }, + "results": { + "bindings": [{ "c": { "type": "literal", "value": "12" } }] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Politicians_of_The_Wire", + "surface form": "politicians" + }, + { + "URI": "http://dbpedia.org/resource/Columbia_University", + "surface form": "Columbia University" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/effectiveRadiatedPower", + "surface form": "graduated" + } + ] + }, + { + "id": "141", + "answertype": "date", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Give me the birthdays of all actors of the television show Charmed.", + "keywords": "television show, Charmed, actor, birthday" + } + ], + "query": { + "sparql": "SELECT DISTINCT ?date WHERE { <http://dbpedia.org/resource/Charmed> <http://dbpedia.org/ontology/starring> ?actor . ?actor <http://dbpedia.org/ontology/birthDate> ?date }" + }, + "answers": [ + { + "head": { "vars": ["date"] }, + "results": { + "bindings": [ + { "date": { "type": "literal", "value": "1973-9-5" } }, + { "date": { "type": "literal", "value": "1971-4-12" } }, + { "date": { "type": "literal", "value": "1971-01-26" } }, + { "date": { "type": "literal", "value": "1968-07-27" } }, + { "date": { "type": "literal", "value": "1985-11-30" } }, + { "date": { "type": "literal", "value": "1973-6-15" } }, + { "date": { "type": "literal", "value": "1971-1-26" } }, + { "date": { "type": "literal", "value": "1969-2-1" } }, + { "date": { "type": "literal", "value": "1968-7-27" } }, + { "date": { "type": "literal", "value": "1973-09-05" } }, + { "date": { "type": "literal", "value": "1973-06-15" } }, + { "date": { "type": "literal", "value": "1969-02-01" } }, + { "date": { "type": "literal", "value": "1980-5-19" } }, + { "date": { "type": "literal", "value": "1971-04-12" } }, + { "date": { "type": "literal", "value": "1973-12-03" } }, + { "date": { "type": "literal", "value": "1973-12-3" } }, + { "date": { "type": "literal", "value": "1980-05-19" } }, + { "date": { "type": "literal", "value": "1972-12-19" } } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Charmed", + "surface form": "television show Charmed" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/birthDate", + "surface form": "birthdays" + }, + { + "URI": "http://dbpedia.org/ontology/background", + "surface form": "actors" + } + ] + }, + { + "id": "142", + "answertype": "number", + "aggregation": true, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Which telecommunications organizations are located in Belgium?", + "keywords": "telecommunications organization, located, Belgium" + } + ], + "query": { + "sparql": "SELECT (COUNT(DISTINCT ?uri) AS ?c) WHERE { ?uri a <http://dbpedia.org/ontology/Organisation> { ?uri <http://dbpedia.org/ontology/industry> <http://dbpedia.org/resource/Telecommunication> } UNION { ?uri <http://dbpedia.org/property/industry> ?industry FILTER regex(?industry, \"Telecommunications\") } { ?uri <http://dbpedia.org/ontology/location> <http://dbpedia.org/resource/Belgium> } UNION { ?uri <http://dbpedia.org/property/locationCountry> \"Belgium\"@en } }" + }, + "answers": [ + { + "head": { "vars": ["c"] }, + "results": { + "bindings": [{ "c": { "type": "literal", "value": "7" } }] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Complex_organizations", + "surface form": "telecommunications organizations" + }, + { + "URI": "http://dbpedia.org/resource/Belgium", + "surface form": "Belgium" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/place", + "surface form": "located" + } + ] + }, + { + "id": "143", + "answertype": "resource", + "aggregation": false, + "onlydbo": false, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Give me a list of all lakes in Denmark.", + "keywords": "lake, Denmark" + } + ], + "query": { + "sparql": "SELECT DISTINCT ?uri WHERE { { ?uri a <http://dbpedia.org/ontology/Lake> ; <http://dbpedia.org/ontology/country> <http://dbpedia.org/resource/Denmark> } UNION { ?uri a <http://dbpedia.org/class/yago/LakesOfDenmark> } }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Arres\u00f8" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lake_Bagsv\u00e6rd" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Fures\u00f8_(lake)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/B\u00f8lling_Lake" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Lakes,_Copenhagen" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Denmark", + "surface form": "Denmark" + } + ], + "relations": [ + { "URI": "http://dbpedia.org/ontology/lake", "surface form": "lakes" } + ] + }, + { + "id": "144", + "answertype": "number", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "How many children does Eddie Murphy have?", + "keywords": "children, Eddie Murphy" + } + ], + "query": { + "sparql": "SELECT DISTINCT ?n WHERE { <http://dbpedia.org/resource/Eddie_Murphy> <http://dbpedia.org/property/children> ?n }" + }, + "answers": [ + { + "head": { "vars": ["c"] }, + "results": { + "bindings": [{ "c": { "type": "literal", "value": "9" } }] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Eddie_Murphy", + "surface form": "Eddie Murphy" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/property/children", + "surface form": "children" + } + ] + }, + { + "id": "145", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Show me all English Gothic buildings in Kent.", + "keywords": "English Gothic buildings, Kent" + } + ], + "query": { + "sparql": "SELECT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Building> ; <http://dbpedia.org/ontology/architecturalStyle> <http://dbpedia.org/resource/English_Gothic_architecture> ; <http://dbpedia.org/ontology/location> <http://dbpedia.org/resource/Kent> }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/St_Mary's_Church,_Capel-le-Ferne" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/St_Martin_of_Tours_Church,_Detling" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/St_Mary's_Church,_Eastwell" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Church_of_St_Thomas_\u00e0_Becket,_Capel" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/St_Mary's_Church,_Higham" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/St_Mary's_Church,_Luddenham" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/St_James'_Church,_Cooling" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Canterbury_Cathedral" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/St_Clement's_Church,_Knowlton" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/St_Mary's_and_All_Saints_Church,_Boxley" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/St_Mary's_Church,_Burham" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/St._Mary's_Church,_Hadlow" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/All_Saints_Church,_Waldershare" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/St_Bartholomew's_Church,_Goodnestone" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/St_Peter's_Church,_Sandwich" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Church_of_St_Mary_the_Virgin,_Fordwich" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/St_Peter's_Church,_Swingfield" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/St_Mary_Magdalene_Church,_Stockbury" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/English_Gothic_architecture", + "surface form": "English Gothic buildings in Kent" + } + ], + "relations": [ + { "URI": "http://dbpedia.org/ontology/show", "surface form": "show" } + ] + }, + { + "id": "146", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Who is the manager of Real Madrid?", + "keywords": "manager, Real Madrid" + } + ], + "query": { + "sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Real_Madrid_C.F.> <http://dbpedia.org/ontology/manager> ?uri }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Zinedine_Zidane" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Real_Madrid_C.F.", + "surface form": "Real Madrid" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/manager", + "surface form": "manager" + } + ] + }, + { + "id": "147", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "In which countries can you pay using the West African CFA franc?", + "keywords": "countries, pay, West African CFA franc" + } + ], + "query": { + "sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/currency> <http://dbpedia.org/resource/West_African_CFA_franc> }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/French_Upper_Volta" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Colony_of_Niger" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Benin" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Burkina_Faso" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Colonial_Mauritania" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Niger" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Guinea-Bissau" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Republic_of_Upper_Volta" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Economic_Community_of_West_African_States" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/People's_Republic_of_Benin" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/French_Dahomey" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ivory_Coast" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Senegal" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mali" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Republic_of_Dahomey" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Countries_of_the_United_Kingdom", + "surface form": "countries" + }, + { "URI": "http://dbpedia.org/resource/CFA", "surface form": "CFA" }, + { + "URI": "http://dbpedia.org/resource/West_African_CFA_franc", + "surface form": "West African franc" + } + ], + "relations": [ + { "URI": "http://dbpedia.org/ontology/currency", "surface form": "pay" } + ] + }, + { + "id": "148", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Which holidays are celebrated around the world?", + "keywords": "holidays, celebrated, world" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Holiday }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Sorry_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Independence_Day_(Grenada)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Reed_Arts_Week" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/En_prison" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Day_to_Praise" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mbaba_belo_selambar" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Crime_Victims'_Rights_Week" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Epulum_Jovis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Thinla_(month)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gurpurb" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Twelfth_Night_(holiday)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Khordad" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/White_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Aban_(month)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Public_holidays_in_Haiti" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bundle_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Harh" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/International_Students'_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Independence_Day_(Israel)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Fat_Thursday" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kanamara_Matsuri" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kumquat_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lent" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pakistan_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sovereignty_Day_(Slovenia)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Konsertti_Tampereella" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/International_Pixel-Stained_Technopeasant_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Family_Day_(Canada)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Peter_and_the_Magic_Egg" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Line-crossing_ceremony" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sussex_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Independence_Day_(Belarus)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/\u010cung\u0101x\u030c" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Subway_party" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ugadi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Twelfth" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Burns_supper" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/World_Cancer_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Martyred_Intellectuals_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lakshmi_Puja" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Panchayati_Raj_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rottela_Panduga" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Saint_George's_Day_in_England" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bara_Din" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/European_Day_of_Remembrance_for_Victims_of_Stalinism_and_Nazism" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Twelve_Days_of_Christmas" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ianuarius" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Falles" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Parintins_Folklore_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Mobility_Awareness_Month" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bathukamma" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Harvest_festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Maritime_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chaula_(month)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Remembrance_days_in_Slovakia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/St_John's_Day_(Estonia)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Yanla_(month)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Panquetzaliztli" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Frimaire" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Reclaiming_Our_Heritage" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Cancer_Survivors_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rotuma_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Statehood_Day_(Croatia)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Alexandrian_Rite" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/International_Book_Year" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Commercium" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Willkakuti" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Green_week" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Shemini_Atzeret" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tisha_B'Av" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rosh_Hashanah" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sechsel\u00e4uten" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Texas_Independence_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Teeyan" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Super_Bowl_Sunday" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pok\u00e9mon:_Tenth_Anniversary" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mahavir_Jayanti" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ashwin_(Nepali_calendar)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pan_American_Aviation_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/World_Animal_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Labor_Day_Carnival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Minor_American_Revolution_holidays" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kamada_Ekadashi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Constitution_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Reunification_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Week_anniversary_of_Trujillo_Municipality" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vat_Purnima" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Global_Love_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kason" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Golu" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Drive_Electric_Week" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Birth_of_Bah\u00e1'u'll\u00e1h" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Maryland_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Principal_Holy_Day_(Anglicanism)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Eucharist_in_the_Catholic_Church" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Shraavana" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Prince_K\u016bhi\u014d_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Library_Week" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cuti_bersama" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ludi_Piscatorii" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Marathwada_Liberation_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Presentation_of_Mary" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Haitian_Heritage_Month" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hanuman_Jayanti" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Buhe" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Foundation_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kwanzaa" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pchum_Ben" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cassinga_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pooram" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/World_Chocolate_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/West_Country_Carnival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Godaan_Express" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gion_Matsuri" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/P\u00f3voa_de_Varzim_Holiday" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mohani" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Newark_Days" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Madison_Pride_and_MAGIC_Picnic" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dossabhoy_Muncherji_Raja" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/World_Toilet_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chhapra_Express" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Midsummer_in_New_York_City" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Day_of_Conception" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Walpurgis_Night" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kartik_(Nepali_calendar)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gasparilla_Pirate_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Honeymoon" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/International_Day_of_Non-Violence" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Independence_Day_(Bosnia_and_Herzegovina)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ratha_Saptami" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Anti-Fascist_Struggle_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/PUP_Centennial_Year" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rajab" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tartan_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Neptunalia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/All_Saints'_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Niv\u00f4se" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/World_Health_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Minden_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Liberation_Day_of_Korea" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/June_10th_Movement" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/10_Kislev" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Punctuation_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Recreation_Day_holiday" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Heritage_Open_Days" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nakba_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Zombie_Bike_Ride" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/140th_Year_Anniversary_Celebration_of_the_Emancipation_Proclamation" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Oxfordshire_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nabanna" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Flag_Day_(United_Arab_Emirates)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Oktoberfest_\u2013_La_Crosse,_Wisconsin" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Carnivals_of_Iztapalapa" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Veneralia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sweetest_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Heritage_Day_(South_Africa)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/World_Oral_Health_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Festa_Junina" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Silla_(month)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Yald\u0101_Night" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Auckland_Anniversary_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hueymiccaihuitl" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/\u015amigus-Dyngus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Work_and_Family_Month" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tibb's_Eve" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Day_of_the_German-speaking_Community" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Koningsdag" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Arba'een" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Life_is_a_Big_Holiday_for_Us" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Liberation_Day_(Lebanon)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/\u01e6wayay" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Etzalcualiztli" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Native_American_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Commemoration_(Anglicanism)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mercedonius" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Religious_Freedom_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Je\u00fbne_genevois" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Presentation_of_Jesus_at_the_Temple" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vaccination_Week_In_The_Americas" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lee\u2013Jackson\u2013King_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Memorial_Day_(South_Korea)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Flor\u00e9al" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/1907_in_New_Zealand" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Juneteenth" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Songkran" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Midsummer" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Reich_Harvest_Thanksgiving_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bounty_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hybristica" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tir_(month)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sadar_(festival)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Khrop_khru" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hobo_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Oregon_Bach_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hera_Panchami" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Candlemas" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Georgia_Train_and_Equip_Program" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Day_of_Reconciliation" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Primrose_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tozoztontli" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Public_holidays_in_the_United_Kingdom" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Intersex_Day_of_Remembrance" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sai\u014d_Matsuri" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Unity_Day_(Yemen)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Muharram" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Carmentalia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kandali_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sultan_Yazidis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chaitra_(Nepali_calendar)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Administrative_Professionals'_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Evelio_Javier_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Falgun" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Heroes'_Day_(Kenya)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Evacuation_Day_(New_York)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Limelight_Awards" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Republic_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kwahu_Easter" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Saitopolemos" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/World_Day_to_Combat_Desertification_and_Drought" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Italian_unification" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Aboriginal_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kaula_(month)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/World_Islam_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/World_Book_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Public_Lands_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rang_Panchami" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ludi_Romani" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kumauni_Holi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Initiation" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gelbis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Beverley_Folk_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nativity_of_St_John_the_Baptist" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Feast_of_Our_Lady_of_the_Hens" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Teotleco" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/International_Nurses_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/1999_in_Malaysia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Icelandic_National_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kamehameha_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kartik_Poornima" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pohela_(month)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Party_Foundation_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Baccalaureate_service" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Thevar_Jayanthi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Oak_Apple_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Amordadegan_festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ferragosto" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/1991_in_Malaysia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/1995_in_Malaysia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Memorial_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hody_(Moravia)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Philadelphia_Polish_American_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sajibu_nongma_panba" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/World_Asthma_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rashtriya_Ekta_Diwas" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/International_Museum_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mercuralia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Go_Skateboarding_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/International_Year_of_Biodiversity" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Emperor's_Birthday" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Battle_of_Saragarhi__Day__1" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hinamatsuri" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Paper_Airplane_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Public_holidays_in_Uruguay" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Zamalek_SC_Centennial" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ickey_Shuffle" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tihar_(festival)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/World_Press_Freedom_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Amalaka_Ekadashi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ganesh_Jayanti" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Valla_Sadhya" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Seward's_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Black_History_Month" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/International_Volunteer_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Phool_Walon_Ki_Sair" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dinamulag_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dhanteras" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Fiestas_Patrias_(Peru)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Quds_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Asexual_Awareness_Week" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/World_Day_for_Cultural_Diversity_for_Dialogue_and_Development" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Memorial_Day_of_the_Exiles_and_Foibe" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Darwin_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ohi_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Public_holidays_in_Paraguay" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ratcatcher's_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Zaffa" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Coming_of_Age_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/NY_Green_Fest" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Australian_Citizenship_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Christmas_Sunday" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sangkhalok_ceramic_ware" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Cat_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Independence_Day_(Bahrain)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Victory_Day_over_Nazism_in_World_War_II" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Singles'_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/WAY_79" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Christmas_and_holiday_season" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Constitution_Day_(Ukraine)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Royal_Geelong_Show" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Charro_Days" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Translation_of_the_Relics_of_Saint_Nicholas_from_Myra_to_Bari" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ayudha_Puja" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Collar_day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ramadan_(calendar_month)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rabi'_al-awwal" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Handsel_Monday" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Language_Movement_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mangsir" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Entrance_(liturgical)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Federal_holiday" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Higan" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jefferson's_Birthday" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Antigua_Carnival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rito_della_Nivola" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nevada_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Leif_Erikson_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Day_of_the_Sun" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jana_Baha_Dyah_Jatra_(chariot_festival)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/LGBT_History_Month" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Khet_partug" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Feast_of_the_Immaculate_Conception" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/California_Admission_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Courir_de_Mardi_Gras" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Feast_of_Lanterns" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mehr_(month)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hallmark_holiday" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Qatar_National_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Olivia_Spencer_Bower_award" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tuli_(rite)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/World_Water_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Michigan_Technological_University's_Winter_Carnival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Awukudae_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/International_Day_of_Innocent_Children_Victims_of_Aggression" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Patriot_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Health_and_Sports_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Duanwu_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pi_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Inthakin" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Onam" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Child_Abuse_Prevention_Month" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Unification_Day_(Bulgaria)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Day_of_Remembrance_of_the_Victims_of_Political_Repressions" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/12-13_Tammuz" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hakata_Gion_Yamakasa" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Fast_of_Nineveh" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chrysotriklinos" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Day_(Cameroon)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Public_holidays_in_Vietnam" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Residential_Drug_Abuse_Program" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/May_3rd_Constitution_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gandhi_Jayanti" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lesser_Festival_(Anglicanism)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/World_Communion_Sunday" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Karthikai_Deepam" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Julotta" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vent\u00f4se" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Light's_Golden_Jubilee" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/International_Mother_Language_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Fiesta_Nacional_de_Espa\u00f1a" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Thanksgiving_(Canada)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Motherhood_and_Beauty_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/International_Sweater_Vestival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Science_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Georgia_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Meshir" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/F\u00eate_de_la_Musique" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Sanitation_Day_(Ghana)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/L\u012bnd\u0259i" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sandugo_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Festa_della_Repubblica" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Client's_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Festival_Nacional_de_la_Quenepa" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/High-level_Political_Forum_on_Sustainable_Development" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gargee'an" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Festa_da_Uva" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Saya_(folklore)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Umoja_Karamu" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nunavut_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Samasrayana" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/State_Patty's_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vaikuntha_Chaturdashi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Small_Business_Week" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Shavuot" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Republic_Day_(Niger)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Philippine_Debut" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/International_Holocaust_Remembrance_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/First_National_Government" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pre\u0161eren_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/International_Polar_Bear_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Mexican_Rite" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Corndog_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Orange_Blossom_Carnival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Heroes_Day_(Indonesia)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Coming_Out_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Earth_Day_Sunday" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Freedom_Day_(South_Africa)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cheese_Days" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Tap_Dance_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/World_Hijab_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Miyamairi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Samiljeol" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kanya_Puja" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Festival_of_Lights_(Hawaii)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Helsinki-p\u00e4iv\u00e4" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hanukkah" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Oregon_Centennial" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/International_Tiger_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cow_Harbor_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/World_Red_Cross_and_Red_Crescent_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Hugging_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Autism_Sunday" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Memorial_of_the_Holy_Guardian_Angels" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/World_Scout_Collectors_Meeting" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chinese_New_Year" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Philadelphia_Aurora" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Elgar_Birthplace_Museum" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Machad_Mamangam" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Baby_jumping" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Azores_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Angam_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Columbus_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Coconut_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/UnFreedom_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Festivals_of_P\u00f3voa_de_Varzim" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ashadha" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Holidays_for_Sale" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mid-Pentecost" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Baranger_Studios" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/UN_Russian_Language_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Acid_erosion" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/White_Sunday" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pompa_circensis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/LGBTI_Health_Summit" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/World_Freedom_Day_(United_States)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Apple_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Presidents'_Day_(Botswana)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Opposite_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/International_Anti-Corruption_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Russia_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/World_Compassion_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dhu_al-Qi'dah" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Davao_City_Torotot_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Labor_Thanksgiving_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sam_Collins_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Wray_(month)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/T\u1ebft" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Brumaire" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Bourbon_Heritage_Month" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Yipao" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Independence_Day_of_Republic_of_Moldova" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Friendship_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bal_Diwas" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Seaforth,_Queensland" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/World_Population_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Haitian_Carnival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/In_town,_without_my_car!" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/World_Tuberculosis_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Intersex_Awareness_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Masonic_funerals" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/March_1st_Movement" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sinulog" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/International_Dance_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/International_Translation_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Los_Angeles_Tofu_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Trafalgar_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hari_Merdeka" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Women's_Equality_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Day_of_the_Armed_Forces_of_Azerbaijan" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ballarat_Show" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Evacuation_Day_(Syria)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Parents'_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Magh_(Bengali_calendar)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Volkstrauertag" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Illuminated_procession" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jyeshtha_(month)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/International_Missing_Children's_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Le_Pays_de_la_Sagouine" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Snow_Day/Holiday_Road" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/United_Nations'_International_Day_of_Persons_with_Disabilities" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tirumala_Shanivaralu" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Week_of_Prayer_for_Christian_Unity" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/K\u014dreisai" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Independence_Day_(Djibouti)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Thai_Pongal" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Catandungan_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/African-American_Music_Appreciation_Month" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Victory_Day_(9_May)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Armenian_Genocide_Remembrance_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Public_holidays_in_Guam" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lammas" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Western_Australia_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sunday_within_the_Octave_of_Christmas" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Unity_Day_(United_States)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/September" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Senegal_Music_Awards" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/H\u014dnen_Matsuri" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Defender_of_the_Fatherland_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Boukout" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bon_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Manisola" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Day_(United_Arab_Emirates)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Sanctity_of_Human_Life_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Premio_Lo_Nuestro_2004" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Premio_Lo_Nuestro_2003" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Timkat" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mardi_Gras_in_Mobile,_Alabama" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/International_Day_Against_Homophobia,_Transphobia_and_Biphobia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Odunde_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/International_Day_of_Radiology" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pana_Sankranti" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tycho_Brahe_days" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Qixi_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jamhuri_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Public_Gardens_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Independence_Day_(Pakistan)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pelican_Drop" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Subbotnik" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Feast_of_Saints_Peter_and_Paul" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/2004_in_Malaysia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/1993_in_Malaysia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vente_de_Agosto" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Giubiana" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Primitive_Scottish_Rite" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/German-American_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nostalgia_Night" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Canada_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/World_Food_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/\u00deorl\u00e1ksmessa" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nag_Panchami" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/New_Year's_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Arrhephoria" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dano_(Korean_festival)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/International_Day_to_End_Impunity_for_Crimes_Against_Journalists" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Navratri" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Hispanic_Heritage_Month" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sonepur_Cattle_Fair" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Day_of_the_Walloon_Region" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rebild_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Espousals_of_the_Blessed_Virgin_Mary" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lui_Ngai_Ni" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/San_Jacinto_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/American_Business_Women's_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Consualia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Title_36_of_the_United_States_Code" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sombrero_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Liberation_Day_(Italy)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bhadro" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hangul_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tecuilhuitontli" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tawthalin" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Trinity_Arts_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Robert_E._Lee_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hungarian_Opera_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Choitro" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Zatra" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/International_Romani_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mar\u01e7\u016bmay" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Malcolm_X_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mickey's_Magical_Party" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pulaski_Days" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ratification_Day_(United_States)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Fiesta_patronal" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ave_Maria_church" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bhadon" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Guanacaste_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cesar_Chavez_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/World_Marriage_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Public_holidays_in_Hong_Kong" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Newspaper_holiday" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Station_days" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/2017_in_Malaysia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ten_Days_of_Repentance" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chuseok" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lal_Loi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Advent_Sunday" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/La_Vijanera" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tangihanga" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mandi_Shivaratri_Fair" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Isru_chag" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mattu_Pongal" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Atemoztli" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dinagyang" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Defence_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Passover" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cambodian_New_Year" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Persons_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/No_Smoking_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Day_of_the_Flemish_Community" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Guru_Ravidass_Jayanti" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Europe_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Malaysia_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Great_Union_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Highland_2007" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Burmese_Martyrs'_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gawai_Dayak" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Recovery_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/2011_in_Malaysia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Akita_Kant\u014d" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tirgan" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tobata_Gion_Yamagasa_festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Pearl_Harbor_Remembrance_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pasni_(celebration)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Civic_Holiday" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Global_Handwashing_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vijayadashami" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Carnival_of_Madeira" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dey_(month)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sham_el-Nessim" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Defense_Transportation_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pioneer_Day_(Utah)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/2009_in_Malaysia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/HarvestMoon_Music_and_Arts_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/2007_in_Malaysia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gymnopaedia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hathor_(month)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lyndon_Baines_Johnson_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Varuthini_Ekadashi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Day_of_Catalonia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sha'ban" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lemuria_(festival)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Remembrance_Day_of_Journalists_Killed_in_the_Line_of_Duty" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Brazilica_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mid-Sha'ban" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Independence_Day_(Eritrea)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Memorial_Ride" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Feast_of_the_Most_Precious_Blood" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Maghar_(month)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Scandinavian_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Music_of_Ghanaian_Origin" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mid-Autumn_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Celebrate_Your_Name_Week" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kullu_Dussehra" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jhulan_Purnima" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Av" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Australia_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Weatherperson's_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Srabon" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bucyrus_Bratwurst_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Independence_Day_(Cyprus)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Veterans_Day_(South_Korea)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Thout" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sso_(rite)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Wedding_anniversary" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Idaho_Human_Rights_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Republic_Day_(Kazakhstan)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Blessing_(Roman_Catholic_Church)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Magha_Puja" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bataan_Memorial_Death_March" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Federal_Day_of_Thanksgiving,_Repentance_and_Prayer" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Higalaay_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Arctic_Winter_Games" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/2003_in_Malaysia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/St_Joseph's_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_LGBTI_Day_(Nepal)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Republic_Day_(India)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Revolution_and_Solidarity_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Operation_Matateh" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/\u00derett\u00e1ndinn" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Saint_Nicholas_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/UK_Music_Video_Awards" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vaisakh" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Coronation_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Christmas_in_Poland" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mother's_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Traditional_Ambrosian_Rite" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/World_Vegan_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Basant_Kite_Festival_(Punjab)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Diamond_jubilee" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tsagaan_Sar" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Obama_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Germinal_(French_Republican_Calendar)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Feria_de_Artesan\u00edas_de_Ponce" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Medieval_Festival_of_Elx" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Celebrate_Freedom_Week" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/International_Men's_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Boishakh" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/April" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Festa_do_Ros\u00e1rio" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Double_Ninth_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mole_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Armilustrium" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Martyrs'_Day_(Lebanon_and_Syria)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sansculottides" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sh\u00edyu\u00e8" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kislev" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nalukulangara_Pooram" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Foot_washing" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Coast_Guard_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Durga_Puja_in_Odisha" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Feast_of_the_Most_Holy_Redeemer" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Beltane" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Seokjeon_Daeje" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Enkutatash" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Quecholli" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Fastnacht_(Pennsylvania_Dutch)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Allambie_Reception_Centre" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Aliturgical_days" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Memorial_Day_(Newfoundland_and_Labrador)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Bison_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Siblings_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Public_holidays_in_Ethiopia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Autumnal_Equinox_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/World_Storytelling_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Martin_Luther_King_Jr._Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Revolution_Day_(Mexico)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bicentennial" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/JoJo_Maman_B\u00e9b\u00e9" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Defender_of_Ukraine_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/World_Kindness_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Calle_Ocho_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Star_Wars_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bataan_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Liberation_Day_(Hong_Kong)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/World_Malaria_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Landing_of_the_33_Patriots_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sepand\u0101rmazg\u0101n" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Day_of_Revenge" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nemontemi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/School_Day_of_Non-violence_and_Peace" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/UST_Neo-Centennial_Celebration" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/D\u00eda_de_la_Altagracia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/2007_Langerado_Music_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Azar" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hoo_Hoo_Monument" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dearborn_Homecoming_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Non-Fiction_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Cherry_Blossom_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Summer_Festival,_Albania" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Montana_Pride" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/International_No_Diet_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Geography_of_Halloween" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Amerindian_Heritage_Month_(Guyana)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vishu" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Brooklyn-Queens_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Diwali" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Peshwai_Procession" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Concurso_de_Cante_Jondo" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Loving_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Youth_Art_Month" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vijay_Diwas_(India)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Overshoot_(microwave_communication)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Statehood_Day_(Serbia)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/International_Migrants_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kalabukay_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/International_Literacy_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/State_holidays_in_New_Jersey" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Festivus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lughnasadh" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ghost_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/World_Poetry_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/French_Rite" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Victory_day_of_Bangladesh" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/American_Heart_Month" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Finnish_Swedish_Heritage_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Culture_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Peter_and_Fevronia_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/2014_Arctic_Winter_Games" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tu_BiShvat" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/International_Day_of_No_Prostitution" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Parinirvana_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bodhi_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Shayani_Ekadashi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hosay" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Independence_Day_of_Trujillo" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Benque_fiesta" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Global_Information_Governance_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Federal_holidays_in_the_United_States" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Holy_Week_in_Mexico" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/World_Contact_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Soviet_Occupation_Day_(Georgia)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Regifugium" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Makar_Sankranti" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/April_Fools'_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Elul" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Saudi_National_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/\u0141\u00f3d\u017a_Biennale" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Feast_of_Christ_the_Priest" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/International_Francophonie_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Whit_Tuesday" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Sovereignty_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/International_Workers'_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Shakambhari_Purnima" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Constitution_Day_(Denmark)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Unity_Day_(Russia)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Radom_Air_Show" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Toxcatl" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pioneer_Days_(Chico,_California)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/World_AIDS_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/World_Day_for_Audiovisual_Heritage" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Christmas" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ascolia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nabakalebara_2015" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Feasts_of_Jesus_Christ" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Labour_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/All_Souls'_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Islam_Day_(Hawaii)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Meal_Monday" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lord_of_Huaman_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hola_Mohalla" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/2006_in_Malaysia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/D\u00eda_Mundial_de_Ponce" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Weihnachten" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Public_holidays_in_the_Soviet_Union" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Republic_Day_(Philippines)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Limassol_Carnival_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Great_Locomotive_Chase_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Day_of_the_Little_Candles" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/International_Youth_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Name_days_in_Bulgaria" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Celebrate_Bisexuality_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sigd" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Phalguna" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Freedom_to_Marry_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Grand_Review_of_the_Armies" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gustavus_Adolphus_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/8_Days_of_Christmas_(song)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Holy_Week_in_Zamora" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kargil_Vijay_Diwas" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Subaru_Cherry_Blossom_Festival_of_Greater_Philadelphia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Martius_(month)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sedantag" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Works_Art_&_Design_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/January" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Public_holidays_in_Argentina" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Famine_Commemoration_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mandela_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/International_Day_of_United_Nations_Peacekeepers" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Whit_Monday" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Radonitsa" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vesak" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nickanan_Night" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Virginia_Gold_Cup" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dhodha" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Independence_Day_(Somalia)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/International_Day_for_Tolerance" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sacred_Defence_Week" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Motorcade" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/NZ_Rail_150" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Fraternal_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gibraltar_Diamond_Jubilee_Flotilla" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hardware_Freedom_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Autistic_Pride_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sankashti_Chaturthi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Boxing_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Sovereignty_and_Children's_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Samhain" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Holy_Week_in_Popay\u00e1n" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Shrove_Tuesday" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Winter_solstice" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mesori" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Union_Dissolution_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kottiyoor_Vysakha_Mahotsavam" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Flag_Day_(Australia)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Fast_of_Esther" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Independence_Day_(Somaliland)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kali_Puja" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Eagle_Scout_Service_Project" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/DNA_day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Epip" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Feast_of_Saint_George" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vidovdan" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/H\u014donk\u014d" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/\u0110ur\u0111evdan" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sheriff's_March" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Quinquatria" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Saba_Saba_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Anant_Chaturdashi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Education_and_Sharing_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Waterloo_Air_Terminal" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Independence_Day_(Uzbekistan)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Eid_il-Burbara" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chatar_jatra" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Holika_Dahan" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Errol_Barrow_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ambedkar_Jayanti" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Diamond_Jubilee_of_Elizabeth_II" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dundee_Fortnight" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/African_Liberation_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cry_of_Dolores" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bhadra_(month)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Public_holidays_in_Greece" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Adloyada" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Casimir_Pulaski_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Madeira_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Katak" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ratu_Sir_Lala_Sukuna_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Loyalty_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Irreechaa" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Student_Day_(Iran)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tu_B'Av" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Russefeiring" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ask_a_Stupid_Question_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Red_Hand_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Occupation_of_the_Latvian_Republic_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Varalakshmi_Vratam" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Congregation_of_the_Servants_of_the_Paraclete" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Holidays_in_Wales" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Remembrance_Day_(Marshall_Islands)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rafe_Hernandez" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Independence_Day_of_Ukraine" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Aadi_Perukku" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Wasshoi_Hyakuman_Natsumatsuri" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rite_of_Adoption" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mesha_Sankranti" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Guru_Nanak_Gurpurab" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hong_Kong_New_Year_Countdown_Celebrations" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nettlemas" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Unity_Day_(Philadelphia)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dragobete" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/1_Kislev" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rosh_Hashanah_LaBehema" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rama_Navami" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Racial_Justice_Sunday" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vaikuntha_Ekadashi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nanomonestotse" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kiev_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/World_Immunization_Week" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Independence_Day_(Turkmenistan)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Holy_day_of_obligation" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/2007_Claxton_Shield" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Wa\u01f5ay" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Poy_Sang_Long" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Public_holidays_in_the_United_States" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Evacuation_Day_(Massachusetts)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pluvi\u00f4se" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rishi_Panchami" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lincoln_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mokshada_Ekadashi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chithirai_Thiruvizha" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Concord_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Curwood_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Day_of_Songun" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Queene's_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/1994_in_Malaysia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Greeley_Stampede" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/St._Knut's_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Portugal_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Public_holidays_in_Moldova" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/World_Humanitarian_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Heroes'_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/American_Sports_Holiday" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rite_of_Strict_Observance" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Remembrance_of_the_Dead" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Air_Force_Day_(Pakistan)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bahram-e_Pazhdo" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Public_holidays_in_Laos" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cloughtoberfest" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rite_of_Braga" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Feast_of_the_Seven_Fishes" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/T'anta_Raymi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Silicon_Valley_Pride" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/New_Beer's_Eve" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ndadaye_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/International_Chess_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Punjabi_Cinema_Golden_Honours" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Public_holidays_in_Syria" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Assumption_of_Mary" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Indigenous_Peoples'_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ganga_puja" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Helen_Keller_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Silver_Jubilee_of_King_Jigme_Singye_Wangchuck" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Alaska_Folk_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Buergbrennen" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lupercalia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Saint_David's_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Marian_feast_days" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/International_Year_of_Astronomy" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Festa_de_l'Unit\u00e0" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Fiestas_Patrias_(Chile)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/RRI_1" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Opiconsivia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Youth_Day_(India)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/World_Philosophy_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/West_Virginia_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/December_2009_Kurdish_protests_in_Turkey" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/World_Turtle_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/1981_Handsworth_riots" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rabi'_al-thani" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Walk_to_Work_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Aviation_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Quintilis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Salw\u0101\u01e7a" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Day_of_Mourning_(Canadian_observance)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Shahrivar" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Buddha's_Birthday" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gurdwara_Baba_Atal" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Paremhat" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/International_Day_in_Support_of_Victims_of_Torture" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Procrastination_Week" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Calan_Mai" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tobi_(month)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kupala_Night" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Okuyi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Youth_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Victoria_Day_(Scotland)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_event_of_Ghadir_Khumm" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/VEISHEA" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tenth_of_Tevet" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mahamastakabhisheka" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Discovery_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Fast_day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Passover_Seder" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bonalu" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Public_holidays_in_the_Cook_Islands" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Public_holidays_in_Italy" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vaisakhi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Festival_of_Jewish_Culture_in_Warsaw" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mullivaikkal_Remembrance_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vaisakha" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Eid_al-Adha" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Christmas_in_Hawaii" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ganesh_Chaturthi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chilla_(month)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sanja_Matsuri" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bhairava_Ashtami" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/World_Development_Information_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/World_UFO_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Day_of_Sweden" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Floralia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Public_holidays_in_Ukraine" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Democracy_250" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Spencerville_Fair" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Malvinas_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Festa_della_Sensa" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/300th_anniversary_of_the_Romanov_dynasty" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Magh_(Sikh_calendar)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Puthandu" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gangamma_Jatara" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hallett_Cove_School" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Day_of_the_Young_Combatant" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/White_Cane_Safety_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Thingyan" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/St_Kilda_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Independence_Day_(Poland)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Shevat" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sadeh" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Misteri_di_Trapani" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bu\u00df-_und_Bettag" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gaecheonjeol" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Federal_Territory_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/2011\u201312_Austrian_Football_Championship" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hornbill_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Copenhagen_Distortion" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Marmot_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ozmas" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Harvey_Milk_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/August" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Arattupuzha_Pooram" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Novruz_in_Azerbaijan" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chet_(month)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Summer_vacation" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Adar" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lincoln's_Birthday" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Manicktalla_Chaltabagan_Lohapatty_Durga_Puja" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Outfly" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Move_Your_Domain_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mischief_Night" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Public_holidays_in_Canada" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Student_Day_(South_Korea)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Africa_Oy\u00e9" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Yom_Kippur" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Susan_B._Anthony_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/2009_Claxton_Shield" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Losar" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CPM_S30V_steel" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Oktoberfest_celebrations" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/1997_in_Malaysia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Victory_Day_(United_States)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Oktoberfest" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lopez_Jaena_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Constitution_Day_(United_States)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gumboot_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Christmas_(Don_McLean_album)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/UN_Spanish_Language_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Meskel" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Social_Media_Giving_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/World_Religion_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Cashew_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/2000_in_Malaysia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lebanese_Independence_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Music_Day_in_Azerbaijan" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Racial_Harmony_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Afghan_Independence_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Statehood_Day_(Slovenia)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Festum_Ovorum" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Christmas_(Jaci_Velasquez_album)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Towel_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Christopher_Street_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dancing_procession_of_Echternach" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Shravana_Putrada_Ekadashi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sukkot" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Transfer_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Republic_Day_(Turkey)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pulaski_Day_Parade" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Aesthetica_Short_Film_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bank_holidays_in_India" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Marine_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/\u01e6bargolay" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bird_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jeth" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jewish_American_Heritage_Month" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Adae_Kese_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Von_Steuben_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Trizna" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Japanese_New_Year" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Candidacy" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Buy_Nothing_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Festival_of_Mountain_and_Plain" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Shawwal" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/2010_Arctic_Winter_Games" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dev_Deepawali_(Varanasi)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nisan" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Communion_under_both_kinds" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/\u00c7\u00fck" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Greenery_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Galungan" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Public_Domain_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Good_Governance_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/International_Fetish_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Distaff_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lifetime_reserve_days" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ashvin" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/October" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Seventeenth_of_Tammuz" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ear_Candy_for_the_Headphone_Trippers" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/K\u014denji_Awa_Odori" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/L'Escalade" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tachhala_(month)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Nothing_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Fermentation_Fest" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pausha_Putrada_Ekadashi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Small_Business_Saturday" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nemoralia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Founders_Day_(South_Africa)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Defenders_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Our_Lady_of_Meritxell" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jerusalem_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Purushottam_Maas" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/1913_Sligo_Dock_strike" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Norwegian_Constitution_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bagroiser" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nenmara_Vallanghy_Vela" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tammuz_(Hebrew_month)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Deepothsavam" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dongzhi_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hippika_gymnasia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Women's_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Happiest_Homecoming_on_Earth" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Independence_Day_(Sri_Lanka)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Wagaung" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Giving_Tuesday" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Papal_Concert_to_Commemorate_the_Shoah" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Black_Friday_(shopping)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/World_Radio_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ely_Eel_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vasant_Panchami" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Durga_Ashtami" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Corporate_anniversary" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kansas_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Zamenhof_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Saint_Lucy's_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Commemoration_Day_of_Fallen_Soldiers" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Poh" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/World_Hello_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Indiana_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/International_Day_of_Forests" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cincinnati_Pride" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Intercession_of_the_Theotokos" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/D\u00edas_Patrios_(Guatemala)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gay_Blue_Jeans_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Arbor_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pohela_Boishakh" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Day_of_Arafah" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Saint_John's_Eve" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ottawa_Irish_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kishiwada_Danjiri_Matsuri" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/International_Beer_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Collector_Car_Appreciation_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Klozum" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Yorke_Peninsula_Field_Days" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ickwell_May_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rectified_Scottish_Rite" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kosa_(folklore)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/V\u00e4lkommen_hem_(song)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/T\u0259la" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Public_holiday" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Platinum_jubilee" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/International_Bacon_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Manitoba_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vernal_Equinox_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dhanu" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Public_holidays_in_Tuvalu" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Heroes'_Day_(South_Africa)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jump-up_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cavalcade" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Flag_of_Canada_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pakta" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Leon_Day_(holiday)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Annunciation" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Yom_Hazikaron" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Water_rite" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Frozen_Dead_Guy_Days" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lantern_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Charak_Puja" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Peace_Officers_Memorial_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Waterloo_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_11-day_weekend" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Father's_Day_(United_States)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Totensonntag" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Public_holidays_in_Kiribati" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Fordicidia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tirupati_Ganga_Jatara" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mifflin_Street_Block_Party" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Senshusei_course" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Blacks_and_Whites'_Carnival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/War_Victims_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Armed_Forces_Day_(South_Korea)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Reactions_to_Innocence_of_Muslims" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/San_Francisco_Jazz_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Festival_Folcl\u00f3rico_y_Reinado_Nacional_del_Bambuco" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Golden_Jubilee_of_Elizabeth_II" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dissolution_of_the_Parliament_of_the_United_Kingdom" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tazaungmon" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Wash-up_period" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dragon_Boat_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Melon_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Golden_Week_(Japan)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Maslenitsa" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Independence_Day_(Republic_of_Macedonia)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tableround" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nayrouz" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/American_Family_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Honey_Bee_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Fructidor" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Day_of_Remembrance_(Cambodia)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Data_Privacy_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Koninkrijksdag" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Krishna_Janmashtami" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Yukka_Nu_Hii" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Turkey_shoot" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Loi_Krathong" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Honey_Month" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Independence_Day_(Estonia)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/An_Leabhar_M\u00f2r" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Afro-Colombian_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Armed_Forces_Day_(United_Kingdom)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Korean_New_Year" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/International_Day_of_the_Disappeared" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cassette_Store_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Feast_of_the_Holy_Name_of_Jesus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/World_Art_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Slava" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sawan" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sh\u016bsen-kinenbi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kachhala_(month)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rogation_days" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kashmir_Solidarity_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sirimanothsavam" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kshamavani" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Purim" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mimouna" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Raksha_Bandhan" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Cornbread_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Liberty_Weekend" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sharad_Purnima" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/International_Civil_Aviation_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Yenya" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Good_Friday" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Qhapaq_hucha" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Martyrs'_Day_(Panama)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Torch_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mixed_Race_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sinhalese_New_Year" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Canadian_Centennial" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Feast_of_the_Prayer_of_Christ" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Aberri_Eguna" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sivan" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Prince_Rainier_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ardee_Baroque_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Boxing_Week" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Victory_Day_(Croatia)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/World_Blood_Donor_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/International_Day_of_Solidarity_with_the_Palestinian_People" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Patriots'_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Evolution_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/World_Space_Week" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Commemoration_of_Atat\u00fcrk,_Youth_and_Sports_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Melbourne_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pyatho" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/White_House_Iftar_dinner" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dilla_(month)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Piatra_Ro\u0219ie_Dacian_fortress" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Guy_Fawkes_Night" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cold_Food_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/International_Talk_Like_a_Pirate_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Postal_holiday" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kingston_Canadian_Film_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Culture_Freedom_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Typing_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Feralia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Juicy_Couture" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/St._Stephen's_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Voters'_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Festival_of_Lights_(Lyon)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Golden_jubilee" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mucenici" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/French_Community_Holiday" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Honor_America_Days" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Spanish_Radio_Academy" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Galician_Literature_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Birthday_of_the_Monkey_God" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Candlemas_(disambiguation)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tynwald_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Water_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Qingming_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Flag_Day_in_Mexico" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Makan_bajamba" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jumada_al-Thani" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Festa_della_Santissima_Piet\u00e0" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Azad_Kashmir_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Royal_Hobart_Regatta" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Windsor\u2013Detroit_International_Freedom_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Feriae_Latinae" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mehregan" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Karamu_(feast)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Zmaray" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Puritan_Sabbatarianism" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cinco_de_Mayo" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bhai_Phonta" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Angarki_Sankashti_Chaturthi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ruby_jubilee" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Oddfest" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Magh_(Nepali_calendar)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/International_Transgender_Day_of_Visibility" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Day_of_the_Vow" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Music_For_People_&_Thingamajigs_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Coral_Triangle_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Maithili_New_Year" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/2012_Arctic_Winter_Games" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Binirayan_festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Koliada" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/St_Mark's_Eve" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Education_Day_(India)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Berchtoldstag" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/St_Piran's_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Royal_Toowoomba_Show" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lei_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Passiontide" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Little_Christmas" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/International_Purple_Hijab_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/2005_NCAA_Division_I_Women's_Volleyball_Tournament" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/International_Yoga_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Babinden" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pittsburgh_Folk_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Africa_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/St._Andrew's_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Zh\u0113ngyu\u00e8" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Be\u00f1esmen" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/1934_Centenary_of_Melbourne" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Truman_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cyrus_the_Great_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Puente_(holiday)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Independence_Day_(Myanmar)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/60th_Anniversary_Celebrations_of_Bhumibol_Adulyadej's_Accession" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Independence_Day_(Croatia)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Old_Cows_Days/The_Days_of_the_Brindled_Cow" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jefferson\u2013Jackson_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Muslim_holidays" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Aprilis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Trinidad_and_Tobago_Carnival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Saturnalia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Repatriation_tax_holiday" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Public_holidays_in_Liberia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ice_Cream_for_Breakfast_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Simchat_Torah" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/COPD_Awareness_Month" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jewish_holidays" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Igue_festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cedar_Fest" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/International_Day_of_Charity" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vinalia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Festa_de_S\u00e3o_Jo\u00e3o_do_Porto" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Holy_Week_in_the_Philippines" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Fixed_feast" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Beer_Day_(United_States)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Universal_Day_of_Culture" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mandali_Puja" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Feast_of_the_Circumcision_of_Christ" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/La_Tomatina" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Peerla_Panduga" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Special_Shabbat" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pope_John_Paul_II_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Random_Acts_of_Kindness_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/2007\u201308_S\u00fcper_Lig" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Day_of_the_National_Flag_(Ukraine)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Annual_Customs_of_Dahomey" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Independence_Day_(Botswana)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Airborne_March" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Veterans_Day_(Sweden)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gokarna_Aunsi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Classical_tradition" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Public_holidays_in_the_Republic_of_Ireland" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cheti_Chand" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bachhala_(month)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Indian_Day_(Brazil)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Time_Machine_50th_Anniversary_Tour" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mourning_of_Muharram" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/International_Astrology_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Castile_and_Le\u00f3n_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ratha-Yatra" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gai_Jatra" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nepal_Sambat" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Glasgow_Fair" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/East-Central_Minnesota_Pride" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chaturmas" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Trndez" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/St._Clement's_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tammuz_(Babylonian_calendar)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Februarius" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Moi_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Laylat_al-Qadr" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sitalsasthi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Christmas_lights_in_Medell\u00edn" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Employee_Appreciation_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lath_mar_Holi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Principal_Feast" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sweden_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Paoni" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Democracy_Day_(Nigeria)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Laskiainen" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Phagun_(Nepali_calendar)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Qinhuai_Lantern_Fair" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/New_York_State_government_holidays" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/M\u0103r\u021bi\u0219or" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mainz_carnival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hong_Kong_Special_Administrative_Region_Establishment_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Oprah_Winfrey's_Legends_Ball" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Procession_of_the_Holy_Blood" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Missouri_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Thermidor" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ashura" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Takanakuy" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bus\u00f3j\u00e1r\u00e1s" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Global_Day_of_Action_on_Military_Spending" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Transgender_Day_of_Remembrance" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/International_Day_of_Happiness" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Koiak" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Viking_tour" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/International_Chocolate_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Paynauen_Duyan_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Iqbal_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/First_Night" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/F\u00eate_du_Vodoun" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Police_Day_(Egypt)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Udhauli" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Professional_learning_community" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Independence_Day_(Philippines)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Day_(Vietnam)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lity_(Orthodox_Vespers)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Statehood_Day_(Lithuania)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gunla" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Statehood_Day_(Montenegro)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Maaveerar_Naal" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sumidagawa_Fireworks_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Easter_Friday" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Michaelmas" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Commemoration_of_the_Passion_of_Christ" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/World_Smile_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Arts_First" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Centennial" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jamaica_Independence_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Black_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/1996_in_Malaysia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/1998_in_Malaysia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Victoria_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Abaca_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Garifuna_Settlement_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Roanoke_Arts_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Triduum" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/World_Environment_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Guam_Discovery_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Bouncy" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Za_kri\u017een" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Independence_Day_(Finland)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Warriors'_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Saint-Jean-Baptiste_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sarawak_Self-government_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Airborne_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cancer_Control_Month" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Geologists_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Public_holidays_in_Libya" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Matronalia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Super_Saturday" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chaharshanbe_Suri" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Photo_op" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Limba_noastr\u0103_(public_holiday)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Festival_(Anglicanism)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Woodward_Dream_Cruise" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Weiya" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Arifana" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/World_Freedom_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Godiva_Procession" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Christmas_in_Ireland" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/North_Carolina_Watermelon_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Festival_of_Fantastic_Films" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mujahideen_Victory_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Abacost" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Melbourne_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Daeboreum" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Armistice_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Postcards_(TV_series)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Huey_Tozoztli" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Julebord" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Day_(Singapore)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tlaxochimaco" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Halloween" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Midsumma_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Maha_Shivaratri" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/King's_Feast" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cyber_Monday" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/George's_Day_in_Autumn" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Paopi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Banian,_Iran" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Plough_Sunday" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/America's_Got_Talent_(season_10)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tatiana_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hakata_Dontaku" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tom_Thumb_Gallery" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Pet_Month" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Albanian_Flag_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Thadingyut_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Spring_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kollam_Pooram" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vrishchikam" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dhanu_jatra" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Blessed_Rainy_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Heroes'_Day_(Namibia)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cotswold_Olimpick_Games" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Founder's_Day_(Ghana)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ronald_Reagan_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Komos" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Opening_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Deliberation_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Day_of_Missile_Forces_and_Artillery" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pan_American_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Amphidromia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Carnaval_de_Ponce" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Emergency_Rescuer's_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Record_Store_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/San_Jos\u00e9_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Journal_of_Rudolph_Friederich_Kurz" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mordad" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/420_(cannabis_culture)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gibraltar_National_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chhath" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Old_New_Year" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Flag_Day_(United_States)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Carl_Garner_Federal_Lands_Cleanup_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bastille_Day_military_parade" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Day_of_Neutrality" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kha_b-Nisan" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ugly_Way" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Iunius_(month)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Remembrance_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Martyrs'_Day_(Albania)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Asian_Pacific_American_Heritage_Month" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ponce_Jazz_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/HumanLight" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Good_Neighbor_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Canberra_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Relick_Sunday" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Independence_and_Unity_Day_(Slovenia)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/U.P._Centennial_Year" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rosalia_(festival)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Edge_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/World_Rak\u0131_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nowruz" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Fractio_panis_(liturgy)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Thadingyut" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Guide_Dog_Month" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/World_Osteoporosis_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dahi_Handi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Balipratipada" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Stratford_Shakespeare_Festival_production_history" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/School_holidays_in_the_United_States" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Freedom_Day_(Belarus)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lane_County_Fair" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bibi-Ka-Alam" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bark_Mitzvah" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Royal_Launceston_Show" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Volunteer_Week" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/22_Shvat" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Women_of_Aviation_Worldwide_Week" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sizdah_Be-dar" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Independence_Day_(India)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Alabama_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Independence_Day_(Brazil)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Bird-Feeding_Month" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Royal_Ploughing_Ceremony" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Earth_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Annaprashana" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gudi_Padwa" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Guavaween" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Now_Is_the_Month_of_Maying" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chaiti_Festival,_Rayagada" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Serfs_Emancipation_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ulcinj_Municipality_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Whuppity_Scoorie_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Constitution_Week" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Native_American_Heritage_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Annapolis_Valley_Apple_Blossom_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ulwaluko" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Urs" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bhadra_(Nepali_calendar)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dominican_Rite" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Public_holidays_in_Taiwan" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sekrenyi_festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kharchi_puja" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/May" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Software_Freedom_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Quincea\u00f1era" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Anzac_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vulcan_(mythology)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Potlatch" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Adae_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Sleepy_Head_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Feast_of_the_Swans" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Saint_Catherine's_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bob_Halloran" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Holi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Joishtho" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Payna" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/2004_PDC_World_Darts_Championship" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bradford_Mela" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Menstrual_hygiene_day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Caristia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Suna_Besha" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bourne_Free" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Dairy_Goat_Awareness_Week" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Baishakh" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rizal_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bhogi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lohri" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Supra_(feast)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ho'olaule'a" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Scarlet_Sails_(tradition)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sama_Chakeva" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Boomsday" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Meditrinalia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Day_of_Commemoration" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Deadly_Awards" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Thanksgiving" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Clean_Monday" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Surin_Elephant_Round-up" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Agonalia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Baci" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Yuri's_Night" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tazaungdaing_festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nane_Nane_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Brush_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Setsubun" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ancient_and_Primitive_Rite" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Day_of_Remembrance_for_all_Victims_of_Chemical_Warfare" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Freedom_Day_(Malta)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Alaverdoba" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Public_holidays_in_Vatican_City" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Khamis_el_sakara" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bunga_Dyah_Jatra_(chariot_festival)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ottawa_Fringe_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/International_Day_of_the_Girl_Child" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/World_Day_Against_Child_Labour" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Maand_van_het_Spannende_Boek" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jidai_Matsuri" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Thanksgiving_(United_States)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/World_Egg_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Calends" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cistercian_Rite" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/World_Oceans_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sourest_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Expectation_of_the_Blessed_Virgin_Mary" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rite_of_Memphis-Misraim" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Christmas_Eve" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chaitra" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/International_Day_of_Remembrance_of_the_Victims_of_Slavery_and_the_Transatlantic_Slave_Trade" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Irish-American_Heritage_Month" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Grandparents_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/International_Co-operative_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Statehood_Day_(Hawaii)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Independence_Day_(Algeria)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/H\u00f9ng_Kings'_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cemetery_Sunday" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/2013_in_Malaysia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Liberation_Day_(Jersey)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Slametan" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Heroes_Day_(Saint_Kitts_and_Nevis)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Alaska_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Regifting_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/\u00d3lavs\u00f8ka" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Remembrance_Sunday" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Respect_for_the_Aged_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vimy_Ridge_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Constitution_Day_(India)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Day_of_Reason" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Majuba_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/100th_Anniversary_of_the_Independence_of_Albania" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Peach_Drop_(Atlanta,_Georgia)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Decoration_Day_(Canada)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Datta_Jayanti" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/International_Day_of_Older_Persons" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Land_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/June" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Patriots'_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/November" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/World_Vegetarian_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Catfish_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Royal_Hobart_Show" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Imperial_hunt_of_the_Qing_dynasty" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Freedom_and_Democracy_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Public_holidays_in_Togo" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jivitputrika" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Keipi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mamankam_festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Remembrance_Day_(Sri_Lanka)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Grammar_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Filipino_American_History_Month" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Day_of_Victory_in_the_Great_Fatherland_Liberation_War" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Labour_Day_(Singapore)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Agrahayana" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/United_Nations_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Veterans_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Farvardin" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jumada_al-awwal" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Aldersgate_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Square_Root_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/11_Nissan" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Family_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/October_is_the_Kindest_Month" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Shichi-Go-San" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Foso_(feast)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/System_Administrator_Appreciation_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Savitri_Brata" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ogrohayon" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Constitution_Day_(South_Korea)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Christmas_in_Romania" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sh\u014dwa_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ndut_initiation_rite" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vision_quest" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/West_Syrian_Rite" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Atla_Tadde" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Armed_Forces_Day_(Bangladesh)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Magha_(month)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/International_Day_of_Democracy" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/2001_in_Malaysia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/2005_in_Malaysia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Yoga_Month" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Saint_Patrick's_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sakela" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Boss's_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lee\u2013Jackson_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Shinj\u014d_Matsuri" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/World_Statistics_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Campbell_Live" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jestha_(Nepali_calendar)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/\u00d6skudagur" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Commemoration_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/World_Wildlife_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Panoply_Arts_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Belgian_National_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Baraat" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Darwin_Centennial_Celebration_(1959)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Revolution_Day_(Egypt)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Naraka_Chaturdashi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nine_Emperor_Gods_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/European_Day_of_the_Righteous" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Virgen_de_los_Angeles" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lauderdale_County_Tomato_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Picnic_Day_(Australian_holiday)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Single_rider" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Veterans'_Day_(Netherlands)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Moveable_feast_(observance_practice)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rash_guard" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Feast_of_the_First_Fruits_of_Wine" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Okinawa_Memorial_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Independence_Day_(Niger)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pregnancy_and_Infant_Loss_Remembrance_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Biikebrennen" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Baltic_Freedom_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Confederate_Memorial_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Contraband_Days" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Resistive_touchscreen" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sette_Giugno" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/J\u00f3nsmessa" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Satyanath" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Independence_Day_(Georgia)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Public_holidays_in_Botswana" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Assu" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Folk_Festival_(Australia)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Feast_of_Saint_George_(Palestine)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Friendship_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jacksonville_Jazz_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Saviours'_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Prairial" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/International_Solidarity_Day_of_Azerbaijanis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/College_Scholastic_Ability_Test_(South_Korea)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Day_of_Encouragement" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dashain" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/St._George_Melkite_Catholic_Church" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rhein_in_Flammen" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Children's_Day_(Japan)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Byzantine_Rite" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dree_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Savior_of_the_Apple_Feast_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Victory_in_Europe_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Harriet_Tubman_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Armed_Forces_Day_(Poland)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/North_Borneo_Self-government_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nadaw" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Geek_Pride_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/White_House_Hanukkah_Party" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ab-Zohr" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vend\u00e9miaire" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Floral_City_Heritage_Days" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/United_States_federal_observances" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Train_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Transgender_Awareness_Week" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dokopiny_Ziemniaka" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/We_Are_One:_The_Obama_Inaugural_Celebration_at_the_Lincoln_Memorial" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Delivery_month" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Philippine_Independence_Day_Parade" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Yom_HaAliyah" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Man's_Day_and_Woman's_Day_(Iceland)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Victory_over_Japan_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Day_of_the_People's_Republic_of_China" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ravindra_Mhatre" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/New_Orleans_Jazz_&_Heritage_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sammakka_Saralamma_Jatara" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/D\u00eda_Nacional_de_Galicia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Asharh" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Nine_Days" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Republic_Day_(Republic_of_Macedonia)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pusn\u00e2" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rite_of_passage" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Victory_Day_(Malta)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Yomari_punhi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Epiphany_(holiday)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/People's_Sunday" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Wrestling_shoe" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Eid_al-Fitr" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Day_of_Remembrance_for_Truth_and_Justice" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Martyrs'_Day_(India)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Thursday_of_the_Dead" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/UN_Chinese_Language_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/First_Day_of_Summer" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Fiesta_Nacional_de_la_Danza" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Amburbium" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gita_Jayanti" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ashanti_Yam_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mothering_Sunday" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/100_years_of_women_in_transport_campaign" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jongmyo_jerye" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ochpaniztli" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Norbertine_Rite" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/World_Intellectual_Property_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Greek_festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Christmas_in_the_Philippines" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tax_amnesty" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ferrymead_125" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Manabasa_Gurubara" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pokemon20" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Yule" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dormition_of_the_Mother_of_God" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/H\u0131d\u0131rellez" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Access_to_Information_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Carmelite_Rite" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Panay_Liberation_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/2002_in_Malaysia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Attrition_(dental)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nirjala_Ekadashi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bank_holiday" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Christmas_tree_plundering" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Stuttering_Awareness_Week" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Cleavage_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Talabukon_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Holy_Week_in_Spain" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Confederate_History_Month" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Asian_Excellence_Awards" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Carlyle_Holiday" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ramadan" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nayon" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Blood_wings" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Shakrain" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Law_Day_(United_States)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Carnival_in_Belize" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Micareta" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Siyum_HaShas" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Batik_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Fossil_Fools_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Eighth_(United_States)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/\u014cmisoka" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Guru_Purnima" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chandeshwori_Jatra" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Monkey_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sami_National_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Teej" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Songkran_(Thailand)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Ayatollah_(football_celebration)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Washington's_Birthday" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Flag_Day_(Argentina)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sangken" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Radio_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Darwin_2009:_A_Pittsburgh_Partnership" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Renn_Fayre" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hadaka_Matsuri" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/1983\u201384_British_Home_Championship" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ambrosian_Rite" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jumu'atul-Wida" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/International_Day_of_Peace" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/March" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lancashire_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Akwasidae_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/DNA_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Parade" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Repentance_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/New_Year's_Eve" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Pizza_Month" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Holiday_of_the_City_of_Miskolc" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Blasphemy_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/LePox'a" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/List_of_observances_in_the_United_States_by_presidential_proclamation" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jewel_of_Russia_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/World_Teachers'_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Child_Health_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cosmonautics_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hillbilly_Days" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Umchwasho" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pintados-Kasadyaan" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Roodmas" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mummer's_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chalica" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rita_Angus_Residency" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ambarvalia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Karnataka_Rajyotsava" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Willka_Raymi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Luminato" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pesach_Sheni" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tom_and_Jerry:_A_Nutcracker_Tale" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Shrawan_(Nepali_calendar)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Father's_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rare_Disease_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Prabodhini_Ekadashi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Anti-Bullying_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Giant_Lantern_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Maharashtra_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Day_of_the_Sun" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Unification_Day_(Cameroon)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/World_Hepatitis_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/World_Usability_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bastille_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Safar" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Akshaya_Tritiya" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/L\u00e0yu\u00e8" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Aztec_New_Year" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Leeds_Pride" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Huey_Tecuilhuitl" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Workers'_Memorial_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/UN_French_Language_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ashadh_(Nepali_calendar)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/D\u00eda_del_Mar" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Independence_Day_(Bangladesh)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Maius" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Laba_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sahasra_purna_chandrodayam" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Navy_Day_(Chile)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Day_of_the_Republic_of_China" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Imbolc" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Palm_Sunday" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/SumBingTik_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/\u015eeva_Zistan\u00ea" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Independence_Day_(United_States)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Wide_World_Over" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/International_Women's_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pain_Awareness_Month" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mother's_Day_(United_States)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Messidor" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Bike_Month" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vivaha_Panchami" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Fenakiwi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Whitsundays_(disambiguation)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/La_Ceiba_Carnival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Fiestas_patronales_in_Puerto_Rico" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rakhri" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/White_Lotus_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/World_Prematurity_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bennington_Battle_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bhau-beej" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pitru_Paksha" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lychee_and_Dog_Meat_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Entrepreneurs'_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rat_trick" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Se\u00f1orita_Panam\u00e1_2002" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/World_No_Tobacco_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Funeral_procession" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/International_Day_against_Nuclear_Tests" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rabindra_Jayanti" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Singles_Awareness_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Winter_carnival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Maifest" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sikmogil" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Srivari_Brahmotsavam" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Human_Rights_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Peace_Jubilee" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ati-Atihan_festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jaanip\u00e4ev" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/World_Breastfeeding_Week" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Waso" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Spiritual_Baptist/Shouter_Liberation_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dengaku" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/1992_in_Malaysia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Fifty_Grand_for_Christmas" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tabodwe" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pride_Fest_(Bismarck_and_Mandan,_North_Dakota)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Commonwealth_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/La\u1e5bam" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Fast_of_the_Firstborn" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bloomsday" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Public_holidays_in_Mongolia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Feast_of_Our_Lady_of_Ransom" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Youm-e-Takbir" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/International_Day_of_Zero_Tolerance_to_Female_Genital_Mutilation" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lekhah_Dodi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/World_Mosquito_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ririe_Days" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mobad" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bermuda_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/International_Colour_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Triumph_of_the_Revolution" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Green_Monday" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Comedy_festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Woodstock_Jazz_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Prathamastami" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/General_Pulaski_Memorial_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hobbit_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hoshana_Rabbah" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Baba_Marta_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/German_Unity_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Constitution_Memorial_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/October_Holiday" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Liverpool_Shakespeare_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Thaipusam" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Poush" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sacrament" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Stephen_Foster_Memorial_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Birkat_Hachama" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Brooklyn_Hip-Hop_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Silver_jubilee" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/UN_Arabic_Language_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mha_Puja" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Accession_Day_(Jammu_and_Kashmir)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Victory_dance_(sports)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Day_of_Prayer" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Fast_of_Gedalia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Las_Ma\u00f1anitas_(celebration)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/July" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tagu" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Samjinnal" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/NAIDOC_Week" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Fajr_decade" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Children's_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/White_River,_Mpumalanga" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lag_BaOmer" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Do\u017cynki" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Veterans_Day_(Norway)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Edinburgh's_Hogmanay" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Agrasen_Jayanti" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/International_Sculpture_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Public_holidays_in_Singapore" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/GlobalFest" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Shoppable_Windows" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Terminalia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/February" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Groundhog_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Liberation_Day_(Netherlands)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Labor_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Thrissur_Pooram" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mawlid" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Forefathers'_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Poetry_Month" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/2008_National_Year_of_Reading" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Saint_George's_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Reformation_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Port_Eliot_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kadayawan_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Karva_Chauth" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/UN_English_Language_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Songkran_(Lao)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ninoy_Aquino_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Malanka" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Blue_Mass" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Waitangi_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kanda_Matsuri" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/2008_in_Malaysia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Day_of_the_Dead" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Afghan_wedding" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Leonese_Language_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Eucharist" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ordibehesht" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/International_Lefthanders_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Act_Zluky" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Fiestas_de_Santa_Fe" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Samavartanam" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Swiss_National_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sat_Thai" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rosa_Parks_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Survivors_of_Suicide_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Global_Money_Week" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tepeilhuitl" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nagoba_Jatara" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Parmouti" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Archbishop_of_Erbil" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cultural_depictions_of_Augustus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/American_Civil_War_Centennial" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ivy_Day_(Ireland)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Women's_History_Month" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Newspaper_Carrier_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bihu" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ambubachi_Mela" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pausha" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Retrocession_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Indian_Arrival_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Madaraka_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Secular_Games" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Puerto_Rico_Constitution_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Svensk_Hyllningsfest" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Black_Friday_(partying)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Fiji_Week" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ngoenyang" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Yhyakh" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Khordad_Sal" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Agila_Social_and_Economic_Carnival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Veterans'_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/World_Students'_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nyepi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Grand_Duke's_Official_Birthday" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Valentine's_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nuakhai" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Falles_of_Alzira" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/19_Kislev" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Store_Bededag" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Free_Comic_Book_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Durga_Puja" + } + } + ] + } + } + ], + "entities": [], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/feastDay", + "surface form": "holidays" + }, + { + "URI": "http://dbpedia.org/ontology/party", + "surface form": "celebrated" + } + ] + }, + { + "id": "149", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "What is the longest river?", + "keywords": "river, longest" + } + ], + "query": { + "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/River> { ?uri <http://dbpedia.org/ontology/length> ?l } UNION { ?uri <http://dbpedia.org/property/length> ?l } } ORDER BY DESC(?l) OFFSET 0 LIMIT 1" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Irtysh_River" + } + } + ] + } + } + ], + "entities": [], + "relations": [ + { "URI": "http://dbpedia.org/ontology/river", "surface form": "river" } + ] + }, + { + "id": "150", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Which organizations were founded in 1930?", + "keywords": "organization, founded, 1930" + } + ], + "query": { + "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Organisation> { ?uri <http://dbpedia.org/ontology/formationYear> ?date } UNION { ?uri <http://dbpedia.org/ontology/foundingYear> ?date } FILTER regex(?date, \"^1930\") }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lidl" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Socialist_Workers'_Party_of_Denmark" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Albanian_Second_Division" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/North_Little_Rock_High_School" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Montessori_Lyceum_Amsterdam" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Automobile_Association_of_South_Africa" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tillberga_IK_Bandy" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Morellato_Group" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mooresville_High_School_(North_Carolina)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Christ_the_King_School,_Portoviejo" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bedford_Vehicles" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/AMVJ_Basketball" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/England_Roller_Hockey" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Old_Brodleians" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Azovstal_iron_and_steel_works" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gartnerhallen" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hydrosila" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Grundig" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Affton_High_School" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/PBG_Basket_Pozna\u0144" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ministry_of_Education_(Brazil)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Boosey_&_Hawkes" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/TicketNet" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/St_Francis'_College,_Letchworth" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Steigenberger_Hotels" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/ANSCOR" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Binford_&_Mort" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/MG_Car_Club" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Colombian_Communist_Party" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Partido_Komunista_ng_Pilipinas-1930" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bennetts" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hedemora_SK" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Directorate_General_for_Public_Security" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Party_of_National_Brotherhood" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Capitalinos_de_San_Juan" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Book_League_of_America" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Republican_Nationalist_Party_of_Ourense" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Austin_High_School_(El_Paso,_Texas)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Madison_West_High_School" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gerald_Eve" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/\u00dajpesti_TE_(ice_hockey)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Catholic_Secondary_Schoolgirls'_Sports_Association" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sugatsune" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Al-Futtaim_Group" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bendicks" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Merewether_Carlton_Rugby_Club" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rajibpur_Aftab_Uddin_High_School" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Socialist_Workers'_Party_of_Norway" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mt_Maria_College" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Natabua_High_School" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cowplain_Community_School" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Caf\u00e9_Rico" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Collins_Crime_Club" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/South_American_Basketball_Championship" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Barcel\u00f3_(rum)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Japan_Basketball_Association" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Colegio_San_Jos\u00e9,_San_Germ\u00e1n,_PR" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Elmer_L._Meyers_Junior/Senior_High_School" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bullis_School" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CB_Granollers" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/PAO_Thriamvos_Athens" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Engineering_and_Research_Corporation" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ocean_Spray_(cooperative)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Godalming_Grammar_School" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Old_Halesonians_RFC" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/J._J._Ugland" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Liberal_Party-Br\u0103tianu" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Epping_Rugby_&_Netball_Club" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Proximus_Group" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bayard_Rustin_Educational_Complex" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Flood_Brothers_Disposal" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Palmetto_High_School_(Florida)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Alderwasley_Hall_School" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ice_Hockey_World_Championships" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ariston_Thermo" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/SPL_Karjalan_piiri" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nova_Scotia_Liquor_Corporation" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Westin_Hotels_&_Resorts" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Federal_Power_Commission" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Odeon_Cinemas" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Miami_Edison_High_School" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Trevelyan_Middle_School" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/St_Patrick's_Classical_School" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/L\u00f6nsboda_GoIF" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Forest_School_Camps" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sacred_Heart_Grammar_School" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cantieri_Riuniti_dell'Adriatico" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Independent_Smallholders,_Agrarian_Workers_and_Civic_Party" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Winnipeg_Blue_Bombers" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Williamwood_High_School" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Department_of_Transport_(1930\u201332)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/De_Pere_High_School" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dom\u00ednguez_&_C\u00eda" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Eastfield_Primary_School" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Yugoslav_Action" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/King_Kullen" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Volvo_Aero" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cin\u00e9dia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bethlehem_Central_School_District" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Papastratos" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hit_of_the_Week_Records" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Order_of_Attorneys_of_Brazil" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/First_Assurance_Kenya_Limited" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vijayaba_National_School" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Brampton_Ellis_Comprehensive_School" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Drayton_Manor_High_School" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/\u00c9ditions_Deno\u00ebl" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kaupthing_Bank" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Youth_Hostels_Association_(England_&_Wales)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Oliver_Springs_High_School" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Crown_Records_(1930s_label)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Shulamith_School_for_Girls" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/NIH_Intramural_Research_Program" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kilgraston_School" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Coll\u00e8ge_et_Lyc\u00e9e_Raponda_Walker" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Examination_Yuan" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Soci\u00e9t\u00e9_A\u00e9rienne_Bordelaise" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Union_(Portugal)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Queen_of_Peace_High_School_(New_Jersey)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/BC_Ural_Yekaterinburg" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Northern_Secondary_School_(Toronto)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/All_Japan_Ice_hockey_Championship" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Wereldhave" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Liberal_Republican_Party_(Turkey)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pennthorpe_School" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Denby_High_School" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gulf_South_Pipeline" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/St_Martin's_Ampleforth" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Allen_&_Overy" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ametek" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chinese_Muslim_Youth_League" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Veteran_Car_Club_of_Great_Britain" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/BEHER_(ham)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mahtomedi_Senior_High_School" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/McCann_Erickson" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ottawa_District_Badminton_Association" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Claro_Rep\u00fablica_Dominicana" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sawston_Village_College" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ramsay_High_School" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Goldfarb_Seligman_&_Co." + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Brookesmith_High_School" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/COWI_A/S" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Stackpole_Books" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Veterans_Benefits_Administration" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Diplom-Is" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ajmer_Military_School" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chartered_Society_of_Designers" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Communist_Party_\u2013_Alberta" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Clifton_Hall_School" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Funnies_Inc." + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Main_Roads_Western_Australia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Association_of_Parliamentarians" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Panathinaikos_WPC" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Claremont_High_School,_Kenton" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sellotape" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pininfarina" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kakira_Sugar_Works" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Al_Ahly_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Magen_David_Adom" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/International_Federation_of_Film_Critics" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ionikos_Nea_Filadelfeia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/St_Augustine's_College_(Queensland)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Arab_Bank" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/South_Gate_High_School" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/New_Consolidated_Gold_Fields" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Astor_Pictures" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Interpublic_Group_of_Companies" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sentry_Group" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Van_der_Vlist" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Crusader_Union_of_Australia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nu_Way_Cafe" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Guardian_Alarm" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Steubenville_Catholic_Central_High_School" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Peruvian_Communist_Party" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Comercial_Mexicana" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Channighat_M.V_School" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sanford_School" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Joventut_Badalona" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/British_Compressed_Air_Society" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Black_Front" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bentoel_Group" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/\u010cEZ_Basketball_Nymburk" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Arion_Bank" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Superior_Essex" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/M._W._Kellogg_Limited" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pallacanestro_Olimpia_Milano" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pipers_Corner_School" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Falmouth_High_School_(Maine)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nat_Sherman" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mapai" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lafuma" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pressed_Metal_Corporation" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rugby_Roma_Olimpic" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Loreto_College,_Coleraine" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/RMC_Group" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Parr_Lumber" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Warrior_(shoes)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/SESAC" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Guangzhou_No.2_High_School" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Book_Store" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Albanian_Superliga" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tillberga_IK" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/M/r_Urumuththa_Almeda_Maha_Vidyalaya" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/ATKV" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Algernon_Sydney_Sullivan_Foundation" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/United_Gas_Corporation" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/American_Popular_Revolutionary_Alliance" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gordon_Lee_High_School" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hottentots_Holland_High_School" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/John_Spendluffe_Technology_College" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jacksonville_Area_Legal_Aid" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Bemrose_School" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bajaj_Corp" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Merrythought" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Blesma,_The_Limbless_Veterans" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Newport_Harbor_High_School" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/St._Mary_of_the_Assumption_High_School" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/St._George's_School_of_Montreal" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Box_Hill_High_School" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Broadway_League" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lanesborough_School" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mostotrest" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Melotone_Records_(US)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/KAZ_Minerals" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/British_Ballet_Organization" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Henley_Hawks" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Genetics_Society_of_America" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Granada_plc" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ionikos_N.F._B.C." + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Crescent_Elementary_School" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Old_HB" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/St._George's_School_(Vancouver)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dene_Magna_School" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tatnall_School" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sunfield_Children's_Home" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Polski_Zwi\u0105zek_Kr\u00f3tkofalowc\u00f3w" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lamy" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Forman_School" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Toshiba_Medical_Systems_Corporation" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Albanian_Third_Division" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Palo_Alto_Medical_Foundation" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/St._Pius_V_High_School" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Swallow_Sidecar_Company" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/ING_Vysya_Bank" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/World_Socialist_Party_(New_Zealand)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gimson_(cycles)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Catholic_High_School_for_Boys_(Little_Rock,_Arkansas)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/NC_Chios" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/O'Neill_Collegiate_and_Vocational_Institute" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hamtramck_High_School" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dapdap_Elementary_School" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/SIX_Financial_Information" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Oathall_Community_College" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Eyerly_Aircraft_Company" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Albanian_First_Division" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Popular_Publications" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Australian_Institute_of_Architects" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Leuzinger_High_School" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tao_Fong_Shan" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Atl\u00e9ticos_de_San_Germ\u00e1n" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ion_(chocolate)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Communist_Party_of_Vietnam" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mooreland_Hill_School" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pike_Place_Fish_Market" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cobham_RFC" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/English_Mistery" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Eusko_Abertzale_Ekintza" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Confucian_Academy" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/St._Patrick's_High_School_(Maysville,_Kentucky)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ministry_of_Labor_and_Employment_(Brazil)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chaminade_High_School" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/League_of_German_Girls" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Goodrich_Quality_Theaters" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/West_End_High_School_(Birmingham,_Alabama)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/St_Joseph's_Technical_School,_Abbotsford" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Immaculate_Heart_High_School_(Arizona)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Population_Association_of_America" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rationalist_Union" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/American_Academy_of_Pediatrics" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Old_Belvedere" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ahali_group" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Markel_Corporation" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Strong_Vincent_High_School" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hy-Vee" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Department_of_Markets_(1930\u201332)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Miles_Aircraft" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tvornica_Autobusa_Zagreb" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hoover_High_School_(San_Diego,_California)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/People's_Party_of_Panama" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dipromisto" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Texas_Instruments" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/St_Mary's_Convent_High_School,_Hyderabad" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Blacks_Photo_Corporation" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rheem" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/New_Swedish_People's_League" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/St._Augustine's_College_(Cape_Coast)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Amherst_Central_High_School" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dodge_&_Cox" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/X-Acto" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Association_of_Health_Underwriters" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nations_Cup_(roller_hockey)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Uralkali" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Neutrogena" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ewing_family_(television)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Real_Canoe_NC" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Swedish_National_Socialist_Party" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CHIJ_Katong_Convent" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Balfour_Collegiate" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/P&R_Publishing" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/I._I._Schmalhausen_Institute_of_Zoology" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dutch_Neck_Elementary_School" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Fisher-Price" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rye_St_Antony_School" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Fairway_Market" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Malayan_Communist_Party" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Malaguti" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Portsmouth_Academy_for_Girls" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/St._Thomas'_School_(New_Delhi)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Luton_Rugby_Club" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Family_Planning_Association" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tajikfilm" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Eidsiva_Rederi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Elisabeth_Morrow_School" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Highfield_R.F.C." + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bristol_Aerospace" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Abraham_(aircraft_manufacturer)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Robert_Allan_Ltd." + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/International_Institute_of_Administrative_Sciences" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Andbank" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ravenscroft_School,_Somerset" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/University_of_Michigan_Press" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Wild_About_Fruit_Company" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hornsby_Girls'_High_School" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Agricultural_Bank_of_Iceland" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Barking_Rugby_Football_Club" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ricola" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Varga_Katalin_Secondary_School" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Soka_Gakkai" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ministry_of_Foreign_Affairs_(Saudi_Arabia)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/New_Flyer_Industries" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Wilko_(retailer)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Brit_HaBirionim" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sango_Bay_Estates_Limited" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/West_Allis_Speedskating_Club" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rajibpur_Aptab_Uddin_High_School" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sovam" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Detroit_Lions" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Philadelphia_Quakers_(NHL)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Liberal_Republican_Right" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Regal_Entertainment_Group" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Fountain_Valley_School_of_Colorado" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lend_Lease_Residential_Development" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Special_Security_Force_Command" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Baloncesto_Superior_Nacional" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ghana_Civil_Aviation_Authority" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Laura_(clothing_retailer)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Urania_Gen\u00e8ve_Sport_(basketball)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CANTV" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Radio_Club_Peruano" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Spencer_High_School_(Columbus,_Georgia)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rhigos_RFC" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/KHL_Karlovac" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/VST_Industries" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mostransavto" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Society_of_Exploration_Geophysicists" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/DB_Breweries" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vaqueros_de_Bayam\u00f3n" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Himalaya_Drug_Company" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Old_Guard_(Australia)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Grant_Community_High_School" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Capital_Maharaja" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/St._Charles_Garnier_College" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tasmanian_University_Football_Club" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/NSW_Lotteries" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rodale,_Inc." + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Benco_Dental" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Grupo_Senda" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Roller_Hockey_Premier_League" + } + } + ] + } + } + ], + "entities": [ + { "URI": "http://dbpedia.org/resource/1930", "surface form": "1930" } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/company", + "surface form": "organizations" + }, + { + "URI": "http://dbpedia.org/ontology/foundingYear", + "surface form": "founded" + } + ] + }, + { + "id": "151", + "answertype": "string", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "What is the birth name of Angela Merkel?", + "keywords": "birth name, Angela Merkel" + } + ], + "query": { + "sparql": "SELECT DISTINCT ?string WHERE { <http://dbpedia.org/resource/Angela_Merkel> <http://dbpedia.org/property/birthName> ?string }" + }, + "answers": [ + { + "head": { "vars": ["string"] }, + "results": { + "bindings": [ + { + "string": { + "type": "literal", + "value": "Angela Dorothea Kasner" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Angela_Merkel", + "surface form": "Angela Merkel" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/property/birthName", + "surface form": "birth name" + } + ] + }, + { + "id": "152", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Who has Tom Cruise been married to?", + "keywords": "Tom Cruise, married" + } + ], + "query": { + "sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/spouse> <http://dbpedia.org/resource/Tom_Cruise> }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Katie_Holmes" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nicole_Kidman" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mimi_Rogers" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Tom_Cruise", + "surface form": "Tom Cruise" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/spouse", + "surface form": "married" + } + ] + }, + { + "id": "153", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Which weapons did Heckler & Koch develop?", + "keywords": "Heckler & Koch, develop, weapon" + } + ], + "query": { + "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Weapon> ; <http://dbpedia.org/property/designer> <http://dbpedia.org/resource/Heckler_&_Koch> }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/XM25_CDTE" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Heckler_&_Koch_P2000" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Heckler_&_Koch_G3" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Heckler_&_Koch_G11" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Heckler_&_Koch_AG36" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Heckler_&_Koch_G41" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Heckler_&_Koch_HK_CAWS" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Heckler_&_Koch_AG-C/EGLM" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Heckler_&_Koch_HK417" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/M27_Infantry_Automatic_Rifle" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Heckler_&_Koch_HK69A1" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Heckler_&_Koch_MG4" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Heckler_&_Koch_PSG1" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Heckler_&_Koch", + "surface form": "Heckler & Koch" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/numberOfSeasons", + "surface form": "weapons" + }, + { + "URI": "http://dbpedia.org/ontology/product", + "surface form": "develop" + } + ] + }, + { + "id": "154", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "What is the smallest city by area in Germany?", + "keywords": "smallest, city, Germany" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX skos: <http://www.w3.org/2004/02/skos/core#> PREFIX dbc: <http://dbpedia.org/resource/Category:> PREFIX dct: <http://purl.org/dc/terms/> SELECT ?city WHERE { ?m skos:broader dbc:Cities_in_Germany . ?city dct:subject ?m ; dbo:areaTotal ?area } ORDER BY ?area LIMIT 1" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Eckernf\u00f6rde" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Germany", + "surface form": "Germany" + } + ], + "relations": [ + { "URI": "http://dbpedia.org/ontology/city", "surface form": "city" }, + { "URI": "http://dbpedia.org/property/area", "surface form": "area" } + ] + }, + { + "id": "155", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "What is the ruling party in Lisbon?", + "keywords": "Lisbon, ruling party" + } + ], + "query": { + "sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Lisbon> <http://dbpedia.org/property/leaderParty> ?uri }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Socialist_Party_(Portugal)" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Lisbon", + "surface form": "Lisbon" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/principal", + "surface form": "ruling" + }, + { "URI": "http://dbpedia.org/ontology/party", "surface form": "party" } + ] + }, + { + "id": "156", + "answertype": "number", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "How heavy is Jupiter's lightest moon?", + "keywords": "how heavy, Jupiter, moon, lightest" + } + ], + "query": { + "sparql": "SELECT DISTINCT ?n WHERE { ?uri <http://dbpedia.org/property/satelliteOf> <http://dbpedia.org/resource/Jupiter> ; <http://dbpedia.org/ontology/mass> ?n } ORDER BY ASC(?n) OFFSET 0 LIMIT 1" + }, + "answers": [ + { + "head": { "vars": ["c"] }, + "results": { + "bindings": [{ "c": { "type": "literal", "value": "1100.0" } }] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Jupiter", + "surface form": "Jupiter" + }, + { + "URI": "http://dbpedia.org/resource/Lightest_Supersymmetric_Particle", + "surface form": " lightest moon" + } + ], + "relations": [ + { "URI": "http://dbpedia.org/ontology/fat", "surface form": "heavy" } + ] + }, + { + "id": "157", + "answertype": "number", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "How many employees does IBM have?", + "keywords": "IBM, employees" + } + ], + "query": { + "sparql": "SELECT DISTINCT ?number WHERE { <http://dbpedia.org/resource/IBM> <http://dbpedia.org/ontology/numberOfEmployees> ?number }" + }, + "answers": [ + { + "head": { "vars": ["c"] }, + "results": { + "bindings": [{ "c": { "type": "literal", "value": "377757" } }] + } + } + ], + "entities": [ + { "URI": "http://dbpedia.org/resource/IBM", "surface form": "IBM" } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/numberOfEmployees", + "surface form": "employees" + } + ] + }, + { + "id": "158", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "List all episodes of the first season of the HBO television series The Sopranos!", + "keywords": "HBO, television series, Sopranos, first season, episode" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { ?uri dbo:series res:The_Sopranos ; dbo:seasonNumber 1 }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Isabella_(The_Sopranos)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Meadowlands_(The_Sopranos)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/I_Dream_of_Jeannie_Cusamano" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Legend_of_Tennessee_Moltisanti" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Boca_(The_Sopranos)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nobody_Knows_Anything" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pax_Soprana" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/A_Hit_Is_a_Hit" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Denial,_Anger,_Acceptance" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/College_(The_Sopranos)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/46_Long" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Sopranos_(episode)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Down_Neck" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/The_Sopranos", + "surface form": "Sopranos" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/episodeNumber", + "surface form": "episodes" + }, + { + "URI": "http://dbpedia.org/ontology/seasonNumber", + "surface form": "season" + } + ] + }, + { + "id": "159", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "What does ICRO stand for?", + "keywords": "ICRO, stand for" + } + ], + "query": { + "sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/abbreviation> \"ICRO\" }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Irish_Cave_Rescue_Organisation" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Icrossing_Inc", + "surface form": "ICRO" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/position", + "surface form": "stand" + } + ] + }, + { + "id": "160", + "answertype": "boolean", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Does the new Battlestar Galactica series have more episodes than the old one?", + "keywords": "new BattleStar Galactica series, episodes, more, old Battle Star Galactica series" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> ASK WHERE { <http://dbpedia.org/resource/Battlestar_Galactica_%281978_TV_series%29> dbo:numberOfEpisodes ?x . <http://dbpedia.org/resource/Battlestar_Galactica_%282004_TV_series%29> dbo:numberOfEpisodes ?y FILTER ( ?y > ?x ) }" + }, + "answers": [{ "head": {}, "results": {}, "boolean": false }], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Diana,_Princess_of_Wales", + "surface form": "princess Diana" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/episodeNumber", + "surface form": "episodes" + } + ] + }, + { + "id": "161", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Give me all films produced by Hal Roach.", + "keywords": "film, produce, Hal Roach" + } + ], + "query": { + "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Film> ; <http://dbpedia.org/ontology/producer> <http://dbpedia.org/resource/Hal_Roach> }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_McGuerins_from_Brooklyn" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sprucin'_Up" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bring_Home_the_Turkey" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ring_Up_the_Curtain" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Way_Out_West_(1937_film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Better_Movies" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Grandma's_Boy_(1922_film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Feed_'em_and_Weep" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Below_Zero_(1930_film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/That's_My_Wife_(1929_film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bacon_Grabbers" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Big_Ears" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Brothers_Under_the_Chin" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Giving_Them_Fits" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Our_Gang_Follies_of_1938" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Raggedy_Rose" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Our_Gang_Follies_of_1936" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Little_Mother_(1929_film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Laurel-Hardy_Murder_Case" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/One_Million_B.C." + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jubilo,_Jr." + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Fast_Freight_(film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dog_Days_(1925_film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/His_Only_Father" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/It's_a_Wild_Life" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hey_There!" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Divot_Diggers" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Cobbler_(1923_film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/A_Man_About_Town" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Billy_Blazes,_Esq." + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Shootin'_Injuns" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Do_Detectives_Think%3F" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Smile_Wins" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Pooch" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pardon_Us" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Step_Lively_(1917_film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Broadway_Limited_(film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/His_Royal_Slyness" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Teacher's_Pet_(1930_film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Cow's_Kimona" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Luke_and_the_Mermaids" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/On_the_Front_Page" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Second_Hundred_Years_(film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Why_Pick_on_Me%3F_(1918_film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Buccaneers_(film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Soft_Money_(film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Old_Wallop" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Shiver_My_Timbers" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hear_'Em_Rave" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Never_Touched_Me" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Lucky_Corner" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Spooky_Hooky" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Flirt" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/One_Hour_Married" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/A_Sammy_in_Siberia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/High_and_Dizzy" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Bohemian_Girl_(1936_film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Laughing_Gravy" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Free_Wheeling" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Shivering_Shakespeare" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Oliver_the_Eighth" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Among_Those_Present" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Baby_Clothes" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hi'-Neighbor!" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Spanking_Age" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/A_Lad_an'_a_Lamp" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Just_Nuts" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Their_First_Mistake" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Moan_and_Groan,_Inc." + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Wiggle_Your_Ears" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Zeb_vs._Paprika" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pay_Your_Dues" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Me_and_My_Pal_(1933_film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lonesome_Luke_on_Tin_Can_Alley" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Si,_Senor" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Under_Two_Jags" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Fixer_Uppers" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Along_Came_Auntie" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/July_Days_(film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Buried_Treasure_(1926_film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Be_Big!" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Early_to_Bed_(1928_film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Seein'_Things" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Lamb_(1918_film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hearts_Are_Thumps" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Them_Was_the_Happy_Days!" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Glove_Taps" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Noon_Whistle" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Our_Wife" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Heebee_Jeebees" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Commencement_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Curley_(film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Unaccustomed_As_We_Are" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/He_Leads,_Others_Follow" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Do_You_Love_Your_Wife%3F" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chop_Suey_&_Co." + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Luke_and_the_Bang-Tails" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Derby_Day_(1923_film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Here_Come_the_Girls_(1918_film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Honky_Donkey" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Shivering_Spooks" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sons_of_the_Desert" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Twice_Two" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Captain_Fury" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Fish_Hooky" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Why_Worry%3F" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/County_Hospital_(film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mother's_Joy" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Neighborhood_House_(film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/I_Do_(1921_film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Big_Show_(1923_film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Arbor_Day_(film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Two_Too_Young" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Heap_Big_Chief" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Duck_Soup_(1927_film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Don't_Shove" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bored_of_Education" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Luke's_Lost_Liberty" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tire_Trouble" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Never_Weaken" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Road_Show_(film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Luke's_Speedy_Club_Life" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Frozen_Hearts" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Came_the_Brawn" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cradle_Robbers" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pipe_the_Whiskers" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Are_Crooks_Dishonest%3F" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Fast_Company_(1924_film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Just_Neighbors" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Wide_Open_Spaces_(1924_film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gas_and_Air_(film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ask_Grandma" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Luke,_the_Gladiator" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bouncing_Babies" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/War_Feathers" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Luke's_Shattered_Sleep" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Terribly_Stuck_Up" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Block-Heads" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Count_the_Votes" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/High_Society_(1924_film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Some_Baby" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Topper_Takes_a_Trip" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bumping_into_Broadway" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Thundering_Fleas" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Who_Killed_Doc_Robbin" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Love,_Laughs_and_Lather" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pack_Up_Your_Troubles_(1932_film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Spit-Ball_Sadie" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Near_Dublin" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Brooklyn_Orchid" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Fresh_from_the_Farm" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hustling_for_Health" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Take_a_Chance_(1918_film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hats_Off_(1927_film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Live_Ghost" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Fishy_Tales" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Two_Scrambled" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Crazy_like_a_Fox_(1926_film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/White_Eagle_(1922_serial)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/One_Terrible_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mighty_Like_a_Moose" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Wandering_Papas" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Swat_the_Crook" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/A_Quiet_Street" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Follow_the_Crowd_(film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Beginner's_Luck" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dr._Jack" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Somewhere_in_Turkey" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Yale_vs._Harvard" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Telling_Whoppers" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tanks_a_Million" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/About_Face_(1942_film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Another_Fine_Mess" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/An_Ozark_Romance" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Railroadin'" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/For_Pete's_Sake!" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dogs_of_War_(film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Babes_in_Toyland_(1934_film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/It's_a_Gift_(1923_film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sunday_Calm" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Long_Fliv_the_King" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Framing_Youth" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Love_'Em_and_Feed_'Em" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Midnight_Patrol" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/One_Good_Turn_(1931_film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Stop!_Luke!_Listen!" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mary,_Queen_of_Tots" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rainy_Days_(film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Postage_Due" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Young_Mr._Jazz" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/A_Sailor-Made_Man" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Merrily_We_Live" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Just_Dropped_In" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Towed_in_a_Hole" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Tip" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Pinch_Singer" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lazy_Days_(film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cat,_Dog_&_Co." + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lonesome_Luke_Leans_to_the_Literary" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Anniversary_Trouble" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rushin'_Ballet" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Seeing_the_World" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/A_Pleasant_Journey" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Boxing_Gloves_(film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Beat_It_(film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/What's_the_World_Coming_To%3F" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bear_Facts_(film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Luke,_the_Candy_Cut-Up" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/A_Foozle_at_the_Tee_Party" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Luke's_Preparedness_Preparations" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/One_Wild_Ride" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Eve's_Love_Letters" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Crack_Your_Heels" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bromo_and_Juliet" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mama's_Little_Pirate" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Flying_with_Music" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lonesome_Luke's_Lovely_Rifle" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pups_Is_Pups" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Wanted_\u2013_$5,000" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Your_Own_Back_Yard" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_First_Round-Up" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Wrong_Again" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chicken_Feed" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/At_the_Old_Stage_Door" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Get_Out_and_Get_Under" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/When_the_Wind_Blows_(1930_film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Luke's_Fireworks_Fizzle" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Fourth_Alarm" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ragtime_Snap_Shots" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Fly_My_Kite" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Roamin'_Holiday" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Noisy_Noises" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Putting_Pants_on_Philip" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sic_'Em,_Towser" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Say_It_with_Babies" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Spring_Fever_(1919_film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Baby_Brother" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Be_My_Wife_(1919_film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Swing_Your_Partners" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Scram!" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/An_Eastern_Westerner" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Flying_Elephants" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Boys_to_Board" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hide_and_Shriek" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/School_Begins" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Look_Pleasant,_Please" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Luke_Locates_the_Loot" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Isn't_Life_Terrible%3F" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Luke's_Busy_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Whole_Truth_(1923_film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Should_Tall_Men_Marry%3F" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Great_While_It_Lasted" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/General_Spanky" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Crazy_House_(1928_film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Glorious_Fourth_(film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Short_Kilts" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Dutiful_Dub" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Three_Men_in_a_Tub" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Going_Bye-Bye!" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Why_Girls_Say_No" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Helpmates" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Devil's_Brother" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Nickel-Hopper" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Number,_Please%3F" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lonesome_Luke,_Plumber" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sailors,_Beware!" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Housekeeper's_Daughter" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lodge_Night" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Thicker_than_Water_(1935_film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Good_Cheer" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Whispering_Whoopee" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rainbow_Island" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Big_Business_(1929_film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Every_Man_for_Himself_(1924_film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Off_the_Trolley" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Yanks_Ahoy" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Luke's_Trolley_Troubles" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bliss_(1917_film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Captain_Kidd's_Kids" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Should_Married_Men_Go_Home%3F" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Now_I'll_Tell_One" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Oranges_and_Lemons_(film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Our_Relations" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/That's_Him" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Mysterious_Mystery!" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Scorching_Sands" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Luke's_Washful_Waiting" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Move_On_(1917_film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Luke's_Lost_Lamb" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kicked_Out_(film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/From_Soup_to_Nuts" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dirty_Work_(1933_film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Luke,_Patient_Provider" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Topper_(film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Little_Daddy" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Double_Whoopee" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ask_Father" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Growing_Pains_(1928_film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lonesome_Luke's_Lively_Life" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nothing_but_Trouble_(1918_film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Edison,_Marconi_&_Co." + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/45_Minutes_from_Hollywood" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Fireman_Save_My_Child_(1918_film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Luke,_Rank_Impersonator" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bargain_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Election_Day_(film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lonesome_Luke_Loses_Patients" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Turnabout_(film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Should_Men_Walk_Home%3F" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Luke's_Late_Lunchers" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Pigskin_Palooka" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bear_Shooters" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Spook_Spoofing" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/No_Noise" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/White_Wings" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Two-Gun_Gussie" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Fluttering_Hearts" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pass_the_Gravy" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Helping_Grandma" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kelly_the_Second" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tit_for_Tat_(film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Back_to_the_Woods_(1918_film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lonesome_Luke_Lolls_in_Luxury" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Now_or_Never_(film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Call_of_the_Wild_(1923_film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Two_Knights_from_Brooklyn" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Barnum_&_Ringling,_Inc." + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Save_the_Ship" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/A_Chump_at_Oxford" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Taxi,_Mister" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chickens_Come_Home" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/She_Loves_Me_Not_(1918_film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ten_Years_Old" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Young_Sherlocks" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Playin'_Hookey" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Just_Rambling_Along" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Saturday_Morning_(1922_film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Spanky_(film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Two-Time_Mama" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Their_Purple_Moment" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Choo-Choo!" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tinkering_with_Trouble" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Slipping_Wives" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Berth_Marks" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lonesome_Luke's_Honeymoon" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Love_Business" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Love_My_Dog" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Little_Sinner" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Habeas_Corpus_(1928_film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Stage_Fright_(1923_film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Haunted_Honeymoon" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Holy_Terror_(1929_film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Why_Girls_Love_Sailors" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mush_and_Milk" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Rajah_(film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Leave_'Em_Laughing" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Big_Business_(1924_film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Niagara_Falls_(1941_film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Next_Aisle_Over" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Hoose-Gow" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pete,_the_Pedal_Polisher" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Short_Orders" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nobody's_Baby_(1937_film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/There_Goes_My_Heart_(film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/No_Place_Like_Jail" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bride_and_Gloom_(film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Roughest_Africa" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/I'm_on_My_Way_(film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Smithy_(1924_film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kicking_the_Germ_Out_of_Germany" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Any_Old_Port!" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Fall_In" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pay_as_You_Exit" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bees_in_His_Bonnet" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Luke_Rides_Roughshod" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lonesome_Luke,_Messenger" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Saturday's_Lesson" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Count_Your_Change" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Olympic_Games_(film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Sun_Down_Limited" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Men_O'_War" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Ol'_Gray_Hoss" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Luke_Lugs_Luggage" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pistols_for_Breakfast" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Night_'n'_Gales" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Monkey_Business_(1926_film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Luke_Joins_the_Navy" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Peculiar_Patients'_Pranks" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/They_Go_Boom" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Luke's_Society_Mixup" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Awful_Tooth" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Reunion_in_Rhythm" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Wife_Tamers" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Busy_Bodies" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Be_Your_Age" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lonesome_Luke,_Lawyer" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dogs_is_Dogs" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Small_Talk_(film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Fire_Fighters_(film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Boys_Will_Be_Joys" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Beyond_His_Fondest_Hopes" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Our_Gang_(film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Big_Idea_(1917_film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/It's_a_Bear" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Non-Stop_Kid" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Over_the_Fence_(1917_film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Free_Eats" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Timber_Queen" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Luke,_Crystal_Gazer" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bonnie_Scotland" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kill_or_Cure_(1923_film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mr._Cinderella" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/A_Tough_Winter" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Night_Owls_(1930_film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/A_Mixup_for_Mazie" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bashful_(film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Washee_Ironee" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tired_Business_Men" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Back_Stage_(1923_film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Perfect_Day_(1929_film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Look_Out_Below" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mike_Fright" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Marathon_(film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Yes,_Yes,_Nanette" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Forgotten_Babies" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Let's_Go_(film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Them_Thar_Hills" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lonesome_Luke,_Circus_King" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Luke_Wins_Ye_Ladye_Faire" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nomads_of_the_North" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/We_Faw_Down" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/On_the_Fire" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Blotto_(film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lonesome_Luke's_Wild_Women" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Birthday_Blues" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Haunted_Spooks" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Luke_and_the_Rural_Roughnecks" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Little_Papa" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Liberty_(1929_film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Luke's_Newsie_Knockout" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Uncle_Tom's_Uncle" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/A_Jazzed_Honeymoon" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Luke_Laughs_Last" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Birds_of_a_Feather_(1917_film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bedtime_Worries" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Get_'Em_Young" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Another_Wild_Idea" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_City_Slicker" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Second_Childhood_(film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Angora_Love" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Swiss_Miss_(film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Champeen" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/On_the_Wrong_Trek" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Chimp" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dog_Heaven" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Clubs_Are_Trump" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Call_of_the_Cuckoo" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hook_and_Ladder_(1932_film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/By_the_Sad_Sea_Waves" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Beau_Hunks" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dog_Shy" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Should_Sailors_Marry%3F" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Three_Smart_Boys" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mail_and_Female" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Honorable_Mr._Buggs" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Come_Clean_(film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Canned_Fishing" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hit_Him_Again" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Zenobia_(film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Saps_at_Sea" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sugar_Daddies" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/On_the_Loose_(1931_film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Love_'em_and_Weep" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Teacher's_Beau" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Before_Breakfast" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Readin'_and_Writin'" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Luke's_Movie_Muddle" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Kid_from_Borneo" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ruses,_Rhymes_and_Roughnecks" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Collars_and_Cuffs" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/A_Gasoline_Wedding" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Official_Officers" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rupert_of_Hee_Haw" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Luke_Pipes_the_Pippins" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Wild_Papa" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Music_Box" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Madame_Mystery" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Love_Bug_(1925_film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Safety_Last!" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Battle_of_the_Century" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/All_Aboard_(film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Luke's_Fatal_Flivver" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Going!_Going!_Gone!" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Luke_and_the_Bomb_Throwers" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Why_Men_Work" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pick_and_Shovel" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Fair_and_Muddy" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Two_Tars" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/From_Hand_to_Mouth" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Luke_Foils_the_Villain" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Willie_Runs_the_Park" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Brats" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Finishing_Touch" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Luke's_Double" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pick_a_Star" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bughouse_Bellhops" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hoot_Mon!" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/You're_Darn_Tootin'" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/From_Laramie_to_London" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/School's_Out_(1930_film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Giants_vs._Yanks" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pinched" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Her_Dangerous_Path" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Miss_Polly" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Luke,_the_Chauffeur" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_First_Seven_Years" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Soilers" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Big_Town_(1925_film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Shrimps_for_a_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Circus_Fever" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lonesome_Luke,_Social_Gangster" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Topper_Returns" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Wild_Poses" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hog_Wild_(1930_film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lonesome_Luke,_Mechanic" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/We_Never_Sleep_(film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/With_Love_and_Hisses" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Luke_Does_the_Midway" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Hal_Roach", + "surface form": "Hal Roach" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/numberOfFilms", + "surface form": "films" + }, + { + "URI": "http://dbpedia.org/ontology/wineProduced", + "surface form": "produced" + } + ] + }, + { + "id": "162", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Who played Agent Smith in Matrix?", + "keywords": "played, Agent Smith, Matrix" + } + ], + "query": { + "sparql": "PREFIX res: <http://dbpedia.org/resource/> PREFIX dbp: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Agent_Smith <http://dbpedia.org/ontology/portrayer> ?uri }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hugo_Weaving" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ian_Bliss" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Agent_Smith", + "surface form": "Agent Smith" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/portrayer", + "surface form": "played" + } + ] + }, + { + "id": "163", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Which Greek parties are pro-European?", + "keywords": "Greek party, pro-European" + } + ], + "query": { + "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/PoliticalParty> ; <http://dbpedia.org/ontology/country> <http://dbpedia.org/resource/Greece> ; <http://dbpedia.org/ontology/ideology> <http://dbpedia.org/resource/Pro-Europeanism> }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Union_of_Centrists" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Democratic_Alignment_(2015)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/New_Democracy_(Greece)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Movement_of_Democratic_Socialists" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Radical_Movement_of_Social_Democratic_Alliance" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/PASOK" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Movement_of_Free_Citizens" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Olive_Tree_(Greece)" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Greece", + "surface form": "Greek parties are pro-European" + }, + { + "URI": "http://dbpedia.org/resource/Early_Greek_parties", + "surface form": "Greek parties are pro-European" + } + ], + "relations": [ + { "URI": "http://dbpedia.org/ontology/country", "surface form": "" } + ] + }, + { + "id": "164", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Give me a list of all bandleaders that play trumpet.", + "keywords": "bandleader, play, trumpet" + } + ], + "query": { + "sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/occupation> <http://dbpedia.org/resource/Bandleader> ; <http://dbpedia.org/ontology/instrument> <http://dbpedia.org/resource/Trumpet> }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Terumasa_Hino" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Adam_Taubitz" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jacobo_Rubalcaba" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jimmy_Dorsey" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pacho_Galan" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Abatte_Barihun" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jimmy_Vivino" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Billie_Rogers" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lloyd_Hunter" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hot_Lips_Page" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Wayne_Bergeron" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Clifford_Thornton" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Richard_Maltby,_Sr." + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Doc_Cheatham" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ovie_Alston" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pete_Brown_(jazz_musician)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Don_Albert" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bobby_Hackett" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Charlie_Spivak" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Guy_Barker" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Neil_Yates" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Louis_Prima" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gerald_Wilson" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Willie_Mitchell_(musician)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Orbert_Davis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sean_Jones_(trumpeter)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Henry_Jerome" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Brad_Turner_(musician)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ollie_Mitchell" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Artie_Fields" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ernest_%22Doc%22_Paulin" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mark_Masters_(musician)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Erskine_Hawkins" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jack_Jackson_(British_radio)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gerard_Presencer" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Joe_Wilder" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Doc_Severinsen" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Alan_Silva" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Red_Perkins" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Wingy_Manone" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cleveland_Eaton" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Papa_Celestin" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Danny_Davis_(country_musician)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Maynard_Ferguson" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Theodore_Carpenter" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Marlon_Jordan" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Geraldo_(bandleader)", + "surface form": "bandleaders" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/starring", + "surface form": "play" + }, + { "URI": "http://dbpedia.org/ontology/head", "surface form": "trumpet" } + ] + }, + { + "id": "165", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "What is the second highest mountain on Earth?", + "keywords": "mountain, second highest" + } + ], + "query": { + "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Mountain> ; <http://dbpedia.org/ontology/elevation> ?elevation } ORDER BY DESC(?elevation) OFFSET 1 LIMIT 1" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Y_Ro_Wen" + } + } + ] + } + } + ], + "entities": [ + { "URI": "http://dbpedia.org/resource/Earth", "surface form": "Earth" } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/elevation", + "surface form": "highest mountain" + } + ] + }, + { + "id": "166", + "answertype": "boolean", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Is Egypts largest city also its capital?", + "keywords": "largest city, Egypt, capital" + } + ], + "query": { + "sparql": "ASK WHERE { <http://dbpedia.org/resource/Egypt> <http://dbpedia.org/ontology/largestCity> ?large ; <http://dbpedia.org/ontology/capital> ?capital FILTER ( ?large = ?capital ) }" + }, + "answers": [{ "head": {}, "results": {}, "boolean": false }], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Largest_octopus", + "surface form": "Egypts largest city" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/capital", + "surface form": "capital" + } + ] + }, + { + "id": "167", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Which rockets were launched from Baikonur?", + "keywords": "rockets, launched, Baikonur" + } + ], + "query": { + "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Rocket> ; <http://dbpedia.org/ontology/launchSite> <http://dbpedia.org/resource/Baikonur_Cosmodrome> }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Energia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vostok-2_(rocket)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Soyuz-U2" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Soyuz-2-1v" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Proton_(rocket_family)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sunkar" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Molniya-M" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vostok-K" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Soyuz_(rocket)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/R-7A_Semyorka" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Zenit_(rocket_family)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/N1_(rocket)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rokot" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Soyuz-FG" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vostok-L" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Zenit-3F" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Soyuz-L" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Proton-K" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Buran_programme" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dnepr_(rocket)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vostok_(rocket_family)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Proton-M" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vostok-2M" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Soyuz-U" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Zenit-2" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tsyklon" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sputnik_(rocket)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Strela_(rocket)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Soyuz/Vostok" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Voskhod_(rocket)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tsyklon-2" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Zenit-3SLB" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Soyuz_(rocket_family)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Zenit-2M" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kosmos-3" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kosmos-1" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Polyot_(rocket)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Soyuz-2" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Baikonur_Cosmodrome_Site_109", + "surface form": "Baikonur" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/capital", + "surface form": "rockets" + }, + { + "URI": "http://dbpedia.org/ontology/totalLaunches", + "surface form": "launched" + } + ] + }, + { + "id": "168", + "answertype": "number", + "aggregation": true, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "How many programming languages are there?", + "keywords": "how many, programming languages" + } + ], + "query": { + "sparql": "SELECT (COUNT(DISTINCT ?uri) AS ?c) WHERE { ?uri a <http://dbpedia.org/ontology/ProgrammingLanguage> }" + }, + "answers": [ + { + "head": { "vars": ["c"] }, + "results": { + "bindings": [{ "c": { "type": "literal", "value": "2031" } }] + } + } + ], + "entities": [], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/programmingLanguage", + "surface form": "programming languages" + } + ] + }, + { + "id": "169", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Which Chess players died in the same place they were born in?", + "keywords": "chess players, British earl, die, same, place, born" + } + ], + "query": { + "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/ChessPlayer> ; <http://dbpedia.org/ontology/birthPlace> ?x ; <http://dbpedia.org/ontology/deathPlace> ?y FILTER ( ?x = ?y ) }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Alessandro_Salvio" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Olga_Ignatieva" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Eero_B\u00f6\u00f6k" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Alexandre_Deschapelles" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Alb\u00e9ric_O'Kelly_de_Galway" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Yakov_Estrin" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Alexander_Koblencs" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vladimir_Antoshin" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dragoljub_Jano\u0161evi\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gilles_Andruet" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vitaly_Chekhover" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Anatoly_Lutikov" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Witold_Balcerowski" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Romuald_Grabczewski" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/K\u0101rlis_Kl\u0101sups" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vladimir_Zagorovsky" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Borislav_Mili\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rodolfo_Tan_Cardoso" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Yuri_Razuvaev" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Reuben_Fine" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ernst_Gr\u00fcnfeld" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/G\u00f6sta_Stoltz" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Milan_Matulovi\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Szymon_Winawer" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/P\u00e9ter_Sz\u00e9kely" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Zandor_Nilsson" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Olga_Rubtsova" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lothar_Schmid" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Giorgio_Porreca" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dragoljub_\u010ciri\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Aleksander_Arulaid" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Helmuth_Luik" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Carlos_Torre_Repetto" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Leonid_Yurtaev" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/William_Winter_(chess_player)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/L\u00e1szl\u00f3_Szab\u00f3_(chess_player)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jacek_Bednarski" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tassilo_von_Heydebrand_und_der_Lasa" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Olga_Semenova_Tyan-Shanskaya" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Anna_Jurczy\u0144ska" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Isaac_Lipnitsky" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Yulian_Radulski" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Max_Euwe" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kalju_Pitksaar" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Frederick_Yates" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Karen_Asrian" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Valter_Heuer" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Alexander_Zaitsev_(chess_player)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Alexey_Vyzmanavin" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kurt_Richter" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Francis_Joseph_Lee" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Enrico_Paoli" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Edward_Freeborough" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Alexander_Tolush" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vasily_Smyslov" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mato_Damjanovi\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Adolf_Anderssen" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Reginald_Bonham" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Antonia_Ivanova" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Istv\u00e1n_Bilek" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/J\u00fcri_Randviir" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Raul_Renter" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Thomas_Wilson_Barnes" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Arvid_Kubbel" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bertil_Sundberg" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Paul_Morphy" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hugh_Blandford" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Harry_Golombek" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Levente_Lengyel" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Zbigniew_Doda" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/J\u0101nis_Klov\u0101ns" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Edgard_Colle" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Liu_Wenzhe" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Miroslav_Filip" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/So\u0148a_Pertlov\u00e1" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/James_Grundy_(chess_player)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Igor_Kurnosov" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mikhail_Botvinnik" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Alexander_Lastin" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Louis_Eichborn" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/August_Eller" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hrvoje_Bartolovi\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Max_Lange" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Georgi_Tringov" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Frank_Marshall_(chess_player)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/G\u00e9za_Mar\u00f3czy" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dawid_Przepi\u00f3rka" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Stefan_Witkowski" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Wiktor_Balcarek" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Shukhrat_Safin" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Karl_Robatsch" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Svetozar_Gligori\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dragoljub_Velimirovi\u0107" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Maxwell_Fuller" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nenad_Petrovi\u0107_(chess_composer)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mir_Sultan_Khan" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tony_Miles" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gyula_Sax" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Napoleon_Marache" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gavriil_Veresov" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/\u00c9va_Karakas" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/The_Chess_Players_(film)", + "surface form": "Chess players" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/deathDate", + "surface form": "died" + }, + { "URI": "http://dbpedia.org/ontology/place", "surface form": "place" }, + { + "URI": "http://dbpedia.org/ontology/birthPlace", + "surface form": "born" + } + ] + }, + { + "id": "170", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Who is the owner of Facebook?", + "keywords": "owner, Facebook" + } + ], + "query": { + "sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Facebook> <http://dbpedia.org/ontology/foundedBy> ?uri }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Eduardo_Saverin" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mark_Zuckerberg" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dustin_Moskovitz" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Andrew_McCollum" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chris_Hughes" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Facebook", + "surface form": "Facebook" + } + ], + "relations": [ + { "URI": "http://dbpedia.org/ontology/owner", "surface form": "owner" } + ] + }, + { + "id": "171", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Give me all movies with Tom Cruise.", + "keywords": "movie, Tom Cruise" + } + ], + "query": { + "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Film> ; <http://dbpedia.org/ontology/starring> <http://dbpedia.org/resource/Tom_Cruise> }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/All_the_Right_Moves_(film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Collateral_(film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Interview_with_the_Vampire_(film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Outsiders_(film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Far_and_Away" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Last_Samurai" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Top_Gun" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Risky_Business" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/A_Few_Good_Men" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Color_of_Money" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Mummy_(2017_film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jerry_Maguire" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Legend_(1985_film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vanilla_Sky" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Valkyrie_(film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Knight_and_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lions_for_Lambs" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mission:_Impossible_(film_series)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cocktail_(1988_film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mission:_Impossible_(film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Born_on_the_Fourth_of_July_(film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Magnolia_(film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Firm_(1993_film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Minority_Report_(film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rain_Man" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Losin'_It" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Tom_Cruise", + "surface form": "Tom Cruise" + } + ], + "relations": [ + { "URI": "http://dbpedia.org/ontology/film", "surface form": "movies" } + ] + }, + { + "id": "172", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "In which U.S. state is Fort Knox located?", + "keywords": "Fort Knox, located, U.S. state" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX dbp: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Fort_Knox dbo:location ?uri . ?uri dbo:country res:United_States }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kentucky" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/United_States", + "surface form": "U.S." + }, + { + "URI": "http://dbpedia.org/resource/Fort_Knox", + "surface form": "Fort Knox" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/property/location", + "surface form": "located" + }, + { + "URI": "http://dbpedia.org/ontology/country", + "surface form": "state" + } + ] + }, + { + "id": "173", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Give me all cities in New Jersey with more than 100000 inhabitants.", + "keywords": "New Jersey, city, inhabitants, more than 100000" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX dbp: <http://dbpedia.org/property/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:City ; dbo:isPartOf res:New_Jersey ; dbo:populationTotal ?inhabitants FILTER ( ?inhabitants > 100000 ) }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Newark,_New_Jersey" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jersey_City,_New_Jersey" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Elizabeth,_New_Jersey" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Paterson,_New_Jersey" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/New_Jersey", + "surface form": "New Jersey" + }, + { + "URI": "http://dbpedia.org/resource/100000_(disambiguation)", + "surface form": "100000 inhabitants" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/country", + "surface form": "cities" + } + ] + }, + { + "id": "174", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Which mountains are higher than the Nanga Parbat?", + "keywords": "mountain, higher, Nanga Parbat" + } + ], + "query": { + "sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Nanga_Parbat> <http://dbpedia.org/ontology/elevation> ?elevation . ?uri a <http://dbpedia.org/ontology/Mountain> { ?uri <http://dbpedia.org/ontology/elevation> ?otherelevation } UNION { ?uri <http://dbpedia.org/property/elevationM> ?otherelevation } FILTER ( ?otherelevation > ?elevation ) }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lhotse_Shar" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kangchenjunga" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cho_Oyu" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dhaulagiri" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lhotse" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Makalu" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Manaslu" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/South_Summit_(Mount_Everest)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kings_Peak_(Idaho)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lhotse_Middle" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Y_Ro_Wen" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Nanga_Parbat", + "surface form": "Nanga Parbat" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/elevation", + "surface form": "mountains" + }, + { + "URI": "http://dbpedia.org/ontology/elevation", + "surface form": "higher" + } + ] + }, + { + "id": "175", + "answertype": "string", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Give me all B-sides of the Ramones.", + "keywords": "Ramones, B-sides" + } + ], + "query": { + "sparql": "SELECT DISTINCT ?string WHERE { ?x <http://dbpedia.org/ontology/musicalArtist> <http://dbpedia.org/resource/Ramones> ; <http://dbpedia.org/ontology/bSide> ?string }" + }, + "answers": [ + { + "head": { "vars": ["string"] }, + "results": { + "bindings": [ + { + "string": { + "type": "literal", + "value": "\"No-One Could Ever Love You More\" (Norway)" + } + }, + { "string": { "type": "literal", "value": "\"Babysitter\"" } }, + { "string": { "type": "literal", "value": "Censorshit" } }, + { "string": { "type": "literal", "value": "\"I Don't Care\"" } }, + { + "string": { + "type": "literal", + "value": "\"Go Home Ann\" (12\" only)" + } + }, + { "string": { "type": "literal", "value": "\"Gee Girl\"" } }, + { + "string": { + "type": "literal", + "value": "\"Miss Joan And Mr. Sam\"" + } + }, + { + "string": { + "type": "literal", + "value": "\"Do You Wanna Dance?\"" + } + }, + { + "string": { + "type": "literal", + "value": "\"California Sun\" / \"I Dont Wanna Walk Around With You\" (live)" + } + }, + { + "string": { + "type": "literal", + "value": "\"Daytime Dilemma (Dangers of Love)\"" + } + }, + { + "string": { + "type": "literal", + "value": "\"Saturday Night Out\"" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/The_B-Sides", + "surface form": "B-sides of the Ramones" + } + ], + "relations": [] + }, + { + "id": "176", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "What are the specialities of the UNC Health Care?", + "keywords": "specialities, UNC Health Care" + } + ], + "query": { + "sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/UNC_Health_Care> <http://dbpedia.org/property/speciality> ?uri }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cancer" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Trauma_center" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Traditional_Specialities_Guaranteed", + "surface form": "specialities" + }, + { "URI": "http://dbpedia.org/resource/UNC", "surface form": "UNC" }, + { + "URI": "http://dbpedia.org/resource/Health_care", + "surface form": "Health Care" + } + ], + "relations": [] + }, + { + "id": "177", + "answertype": "date", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "When was Olof Palme shot?", + "keywords": "date, Olof Palme, shot" + } + ], + "query": { + "sparql": "SELECT DISTINCT ?date WHERE { <http://dbpedia.org/resource/Olof_Palme> <http://dbpedia.org/ontology/deathDate> ?date }" + }, + "answers": [ + { + "head": { "vars": ["date"] }, + "results": { + "bindings": [ + { "date": { "type": "literal", "value": "1986-2-28" } }, + { "date": { "type": "literal", "value": "1986-02-28" } } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Olof_Palme", + "surface form": "Olof Palme" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/discharge", + "surface form": "shot" + } + ] + }, + { + "id": "178", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "List the seven kings of Rome.", + "keywords": "kings, Rome" + } + ], + "query": { + "sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/title> <http://dbpedia.org/resource/King_of_Rome> }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tullus_Hostilius" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lucius_Tarquinius_Superbus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Servius_Tullius" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ancus_Marcius" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Romulus_and_Remus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Numa_Pompilius" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lucius_Tarquinius_Priscus" + } + } + ] + } + } + ], + "entities": [ + { "URI": "http://dbpedia.org/resource/Rome", "surface form": "Rome" } + ], + "relations": [ + { "URI": "http://dbpedia.org/ontology/leader", "surface form": "kings" } + ] + }, + { + "id": "179", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Give me all people that were born in Vienna and died in Berlin.", + "keywords": "people, born, Vienna, die, Berlin" + } + ], + "query": { + "sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/birthPlace> <http://dbpedia.org/resource/Vienna> ; <http://dbpedia.org/ontology/deathPlace> <http://dbpedia.org/resource/Berlin> }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Michael_von_Newlinsky" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/John_Reinhardt_(director)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Heinrich_Ehrlich" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Emil_von_Reznicek" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Luise_Begas-Parmentier" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Adolf_Klein" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Michael_Meinecke" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Marie_von_Buelow" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Irene_Prador" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Steffie_Spira" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Alfred_Halm" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Eduard_von_Winterstein" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Edmund_Meisel" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hilde_K\u00f6rber" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Eduard_Peithner_von_Lichtenfels" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Friedrich_Leitner" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tilla_Durieux" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Josef_Rufer" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Therese_Gr\u00fcnbaum" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Fritz_Richard" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hugo_Flink" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Alexander_Meissner" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Grete_von_Zieritz" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Karl_Etlinger" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Karl_Hellmer" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mathilde_Danegger" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Robert_Reinert" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Oscar_Sabo" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rudolf_Walther-Fein" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Willy_Trenk-Trebitsch" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Guido_von_List" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gerda_Laski" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Karoline_Seidler-Wranitzky" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hanna_Berger" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Leo_Mittler" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hans_Fidesser" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jacob_Taubes" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Viktoria_von_Ballasko" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Richard_Thurnwald" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Helene_Weigel" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Johann_Alexander_Hubler-Kahla" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Johann_Strauss_III" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Robert_Bodanzky" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Vienna", + "surface form": "Vienna" + }, + { + "URI": "http://dbpedia.org/resource/Berlin", + "surface form": "Berlin" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/birthPlace", + "surface form": "born" + }, + { "URI": "http://dbpedia.org/ontology/flag", "surface form": "died" } + ] + }, + { + "id": "180", + "answertype": "boolean", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Is Darth Vader Luke\u2019s father?", + "keywords": "Darth Vader, father, Luke" + } + ], + "query": { + "sparql": "ASK WHERE { <http://dbpedia.org/resource/Darth_Vader> <http://dbpedia.org/ontology/child> <http://dbpedia.org/resource/Luke_Skywalker> }" + }, + "answers": [{ "head": {}, "results": {}, "boolean": true }], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Darth_Vader", + "surface form": "Darth Vader Luke\u2019s father" + } + ], + "relations": [] + }, + { + "id": "181", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Show me all the breweries in Australia.", + "keywords": "breweries, Australia" + } + ], + "query": { + "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Brewery> { ?uri <http://dbpedia.org/ontology/location> <http://dbpedia.org/resource/Australia> } UNION { ?uri <http://dbpedia.org/ontology/location> ?x . ?x <http://dbpedia.org/ontology/country> <http://dbpedia.org/resource/Australia> } }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cascade_Brewery" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Copper_Coast_Wines" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Matilda_Bay_Brewing_Company" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Palm_Breweries", + "surface form": "Breweries in Australia" + } + ], + "relations": [ + { "URI": "http://dbpedia.org/ontology/show", "surface form": "show" } + ] + }, + { + "id": "182", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Give me all films produced by Steven Spielberg with a budget of at least $80 million.", + "keywords": "films, producer, Steven Spielberg, production budget, $80 million" + } + ], + "query": { + "sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film> . ?uri <http://dbpedia.org/ontology/director> <http://dbpedia.org/resource/Steven_Spielberg> . ?uri <http://dbpedia.org/ontology/budget> ?b . FILTER( xsd:double(?b) >= 8.0E7 ) }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Adventures_of_Tintin_(film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/A.I._Artificial_Intelligence" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_BFG_(2016_film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Indiana_Jones_(franchise)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Minority_Report_(film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/War_of_the_Worlds_(2005_film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Indiana_Jones_and_the_Kingdom_of_the_Crystal_Skull" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Steven_Spielberg", + "surface form": "Steven Spielberg" + }, + { + "URI": "http://dbpedia.org/resource/Boeing_80", + "surface form": "$80" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/production", + "surface form": "films" + }, + { + "URI": "http://dbpedia.org/ontology/manufacturer", + "surface form": "produced" + }, + { + "URI": "http://dbpedia.org/ontology/budget", + "surface form": "budget" + } + ] + }, + { + "id": "183", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Give me all soccer clubs in Spain.", + "keywords": "Spain, soccer club" + } + ], + "query": { + "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/SoccerClub> { ?uri <http://dbpedia.org/ontology/ground> <http://dbpedia.org/resource/Spain> } UNION { ?uri <http://dbpedia.org/property/ground> ?ground FILTER regex(?ground, \"Spain\") } }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CF_Balaguer" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Villarreal_CF_(youth)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/UD_Los_Palacios" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jumilla_CF" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CD_Teruel" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Club_Ol\u00edmpico_de_Totana" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pego_CF" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CD_Corralejo" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Santa_Pola_CF" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Xota_FS" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/UD_Almer\u00eda" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Zaragoza_CD" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/La_Roda_CF" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Racing_de_Ferrol" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CD_Motril_Atl\u00e9tico" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Valencia_F\u00e9minas_CF" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/M\u00e9rida_AD" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CP_Amanecer" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/FS_Zamora" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/SD_Noja" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Barbate_CF" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CP_Malpartida" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/FC_Barcelona_Futsal" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/AD_Hurac\u00e1n" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CD_Guadalajara_(Spain)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CD_Quintanar_del_Rey" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cand\u00e1s_CF" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Linares_Deportivo" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CD_El_\u00c1lamo" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/SD_Chantada" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Palencia_CF" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/SD_Hullera_Vasco-Leonesa" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Atl\u00e9tico_Tarazona" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CD_River_Ega" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/UD_Horadada" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Santa_Comba_CF" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/SD_San_Pedro" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CD_Varea" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/UE_Rapitenca" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/UD_Gij\u00f3n_Industrial" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CD_Burela_FS" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/ED_Moratalaz" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CD_Berceo" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CD_Cristo_Atl\u00e9tico" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Real_Tapia_CF" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vallecas_CF" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Xerez_FC" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CD_Coria" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bermeo_FT" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CD_Mairena" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CD_Lumbreras" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Utebo_FC" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Manchego_CF" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Club_San_Ignacio" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/UD_Las_Zocas" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Atl\u00e9tico_Arteixo" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/FS_Garc\u00eda" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/UD_Aretxabaleta" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CF_Villanovense" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CD_Arenas_de_Frajanas" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/AD_Torpedo_66" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CD_Brunete" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CD_D\u00edter_Zafra" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CA_Cirbonero" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CD_Nacional_de_Madrid" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CD_Ciempozuelos" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Extremadura_UD_B" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CD_Orientaci\u00f3n_Mar\u00edtima" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Club_Siero" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CD_La_Uni\u00f3n" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CD_Tenerife" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CF_Norma_San_Leonardo" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/AD_Fundaci\u00f3n_Logro\u00f1\u00e9s" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CD_Arnedo" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Deportivo_Pacense" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Zamudio_SD" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CD_Pontejos" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ciudad_de_Lorca_CF" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/FS_Baix_Maestrat" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/AD_Orcasitas" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/FC_Santboi\u00e0" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sestao_Sport_Club" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/UD_Maracena" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Haro_Deportivo" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CD_Lal\u00edn" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Celta_de_Vigo_B" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Motril_CF" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Extremadura_UD" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Meng\u00edbar_CF" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Atl\u00e9tico_Mancha_Real" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ourense_FS" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CD_Banyoles" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Castillo_CF" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Navia_CF" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Alicante_CF" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CD_Linares" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CFS_Bisontes_Castell\u00f3n" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Marino_de_Luanco" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/GCE_Villaralbo" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Polideportivo_Ejido_B" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CE_Alaior" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CD_Ariznabarra" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CD_Actur_Pablo_Iglesias" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Yag\u00fce_CF" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lorca_Deportiva_CF_B" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/O'Parrulo_FS" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CD_Vera_de_Almer\u00eda" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Apurtuarte_Club" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/AE_Prat" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Casino_del_Real_CF" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CD_Idoya" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/BM_Altea" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CD_\u00cdscar" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/SR_Villaverde_Boetticher_CF" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/BM_Alcobendas" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/UDA_Gramenet" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CD_Miajadas" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Caravaca_CF" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Real_\u00c1vila_CF" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CD_Hurac\u00e1n_Z" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Racing_Club_Portuense" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CD_Azkoyen" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/UD_G\u00e1ldar" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/C\u00f3rdoba_CF_B" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Talavera_FS" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/SD_Logro\u00f1\u00e9s" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Xerez_CD" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CD_Alquer\u00edas" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CD_Ourense" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CD_Ensidesa" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Antequera_CF" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sporting_Club_de_Lutxana" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Uni\u00f3n_Estepona_CF" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Atl\u00e8tic_de_Ciutadella" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/UD_Los_Llanos" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/AD_Torrej\u00f3n_CF_(women)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Atl\u00e9tico_de_Lugones_SD" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/UD_Guadalajara_FS" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/F\u00fatbol_Alcobendas_Sport" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/FS_Cartagena" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CV_Tenerife" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CP_Valdivia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Universidad_de_Las_Palmas_CF" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Atl\u00e9tico_Levante_UD" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CDA_Navalcarnero" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/SD_Beasain" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/AD_Almer\u00eda" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/UD_Melilla" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Meir\u00e1s_CF" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Murcia_Deportivo_CF" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/UD_Pav\u00eda" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ribera_Navarra_FS" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CE_Premi\u00e0" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Club_Lemos" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CD_San_Isidro" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gran_Canaria_FS" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CD_Llanes" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/UCAM_Murcia_CF" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/SD_Octavio_Vigo" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Deportivo_Alav\u00e9s_B" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CV_Las_Palmas" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/JD_Arrate" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CD_Sari\u00f1ena" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/UD_Salamanca_B" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CD_Getxo" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Crevillente_Deportivo" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lorca_Atl\u00e9tico_CF" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/C\u00e1diz_CF_B" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Getafe_CF_B" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CD_Covadonga" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CD_Castell\u00f3n_B" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CD_Agoncillo" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Astur_CF" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CA_Osasuna_B" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Santomera_CF" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Zarautz_KE" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Marsanz_FS" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ribadesella_CF" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CD_Fortuna" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CD_M\u00f3stoles" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/UE_Vic" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CD_Tropez\u00f3n" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CD_Palencia_Balompi\u00e9" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Arandina_CF" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Atl\u00e9tico_Saguntino" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CD_Boiro" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/BM_Ciudad_de_Almer\u00eda" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/AD_San_Juan" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/AD_Colmenar_Viejo" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/UE_Vilassar_de_Mar" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/SD_Buelna" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/UE_Sants" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mejorada_FS" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Valencia_FS" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CD_Ronda" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/UB_Conquense" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sporting_de_Gij\u00f3n_B" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CD_Aguilar" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/UD_Tegueste" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/SD_Reoc\u00edn_(women)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Linares_CF" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CD_Beniel" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Athletic_Club_(women)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/SD_Colloto" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CF_Badalona" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/UD_Tacuense" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CD_Barco" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/SCDR_Anaitasuna" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CD_Vigo_FS" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CF_Vimenor" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CD_El_Palo" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CA_Antoniano" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Real_Betis_B" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Villarreal_CF" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CD_Comarca_de_N\u00edjar" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Santo\u00f1a_CF" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kelme_CF" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CD_Soledad" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Conil_CF" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CD_Blanes" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CD_Los_Y\u00e9benes_San_Bruno" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/FC_Benavent" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hell\u00edn_Deportivo" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CD_Meng\u00edbar" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tomelloso_CF" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CD_La_Granja" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CF_Reus_Deportiu" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/UD_Villa_de_Santa_Br\u00edgida_B" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Zamora_CF" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CD_Ciudad_de_V\u00edcar" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CD_Puerta_Bonita" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/UD_Pu\u00e7ol" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CD_Carranque" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/SD_Atl\u00e9tico_Albericia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Callosa_Deportiva_CF" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CD_San_Fernando" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Antiguoko" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/UD_Ibarra" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/UD_Ibiza-Eivissa" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lleida_Esportiu" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/FC_Palafrugell" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CD_La_Muela" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CD_Cieza" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/AD_Cerro_de_Reyes" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/FC_Barcelona_(beach_soccer)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CD_Marianao_Poblet" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CF_Vilanova" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Reus_Deportiu" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/AD_Sabi\u00f1\u00e1nigo" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CD_Legan\u00e9s_B" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CD_Baza" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CD_Ourense_B" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/AD_Torrej\u00f3n_CF" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CD_Tortosa" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CD_Tede\u00f3n_EF" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CE_Const\u00e0ncia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sevilla_FC_C" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CD_Betis_San_Isidro" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Moralo_CP" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/UD_Las_Rozas_Boadilla" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/SD_Ejea" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CF_La_Uni\u00f3n" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/AD_Villaviciosa_de_Od\u00f3n" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/SP_Castilblanco" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CD_As_Pontes" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Uni\u00f3n_SC" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CFS_Jumilla" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/AD_El_Pardo" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/SD_Lemona" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CP_Granada_74" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CD_Condal" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CF_Gandar\u00edo_Sanse" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sangonera_Atl\u00e9tico_CF" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Santiago_Futsal" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Yeclano_Deportivo" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CD_Victoria_(Spain)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Real_Zaragoza" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/SE_Eivissa-Ibiza_B" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/UDC_Txantrea" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Urraca_CF" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Real_Betis_(women)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/SD_\u00d3rdenes" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CA_Bembibre" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Benidorm_CF" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CD_Manchego" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Racing_Club_Vilalb\u00e9s" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CF_Ribamont\u00e1n_al_Mar" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gal\u00e1ctico_Pegaso" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mazarr\u00f3n_CF" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Universidad_de_Las_Palmas_CF_B" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/BM_Puerto_Sagunto" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Monta\u00f1eros_CF" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Atl\u00e9tico_Valdemoro" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CD_Uni\u00f3n_Criptanense" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Betanzos_CF" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CE_Manresa" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Granada_Atl\u00e9tico_CF" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CD_Numancia_B" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Imperio_de_M\u00e9rida_CP" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CFS_Bilbao" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/HC_Liceo_La_Coru\u00f1a" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sporting_Villanueva_Promesas" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/UC_La_Estrella" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CD_Marchamalo" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ribarroja_CF" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/FC_Asc\u00f3" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Villarrubia_CF" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ruta_Leonesa_FS" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CD_Cudillero" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sevilla_Atl\u00e9tico" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Palam\u00f3s_CF" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Logro\u00f1\u00e9s_CF" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/SD_Ciudad_de_Santiago" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/RSD_Santa_Isabel" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/UE_Vilaju\u00efga" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CD_Santurtzi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Torrellano_CF" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CD_Bezana" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CD_Praviano" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CD_Cobeja" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CD_Madridejos" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CF_Jacetano" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/UD_Alzira" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/UD_Lanzarote" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/V\u00e9lez_CF" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Unionistas_de_Salamanca_CF" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CD_Lealtad" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/SD_Navarro_CF" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/UD_Los_Barrios" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lorca_FC" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CD_Laredo" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nar\u00f3n_BP" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Igualada_HC" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/ElPozo_Murcia_FS" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pe\u00f1a_Sport_FC" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/UD_Logro\u00f1\u00e9s" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CD_Tineo" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/SD_Negreira" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CD_Colmenar_de_Oreja" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CD_Bin\u00e9far" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Deportivo_Rayo_Cantabria" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Unami_Club_Polideportivo" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CD_Pe\u00f1a_Azagresa" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/UD_Tijarafe" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/La_Gineta_CF" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Salamanca_AC" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CAV_Murcia_2005" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CD_Cobe\u00f1a" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/UE_Alc\u00fadia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Athletic_Bilbao_Juvenil" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CD_Ferriolense" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/UD_Fuerteventura" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Villanueva_CF" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/C\u00e9ltiga_FC" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Orihuela_Deportiva_CF" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CD_Arenteiro" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Alhaur\u00edn_de_la_Torre_CF" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Catarroja_CF" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Real_Uni\u00f3n" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/UD_Poblense" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dos_Hermanas_CF" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Zalla_UC" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CE_Sant_Gabriel_(women)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/UD_Llanera" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CD_Alfaro" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/UD_Somozas" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gran_Pe\u00f1a_FC" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sevilla_FC_(women)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Atl\u00e9tico_Boadilla_FS" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/DAV_Santa_Ana" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/ACD_San_Marcial" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/AD_Las_Palas" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/UE_Castelldefels" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/SD_O_Val" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CD_Fuencarral" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CD_Lagun_Onak" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pinatar_CF" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gimn\u00e1stica_Segoviana_CF" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/UD_P\u00e1jara_Playas_de_Jand\u00eda" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ver\u00edn_CF" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/AD_Casar_de_C\u00e1ceres" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Alcobendas_CF" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Caja_Segovia_FS" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chiclana_CF" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Puerto_Real_CF" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Real_Madrid_Castilla" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CF_Figueruelas" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CA_Marbella" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CD_Zuera" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CCD_Alberite" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CF_Trival_Valderas" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Real_Valladolid_B" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/UD_Villa_de_Santa_Br\u00edgida" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/UD_Santa_Marta" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CD_Estradense" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CD_Cuarte" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CD_Elgoibar" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Club_Nal\u00f3n" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CA_Pinto" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/AD_Uni\u00f3n_Adarve" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/UD_Socu\u00e9llamos" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CP_La_Felguera" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CD_Vic\u00e1lvaro" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CD_Alcoyano" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CP_Calasancio" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/RSD_Alcal\u00e1" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jerez_FS" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/N\u00e1xara_CD" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/UD_Realejos" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CD_Cenicero" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CF_Molina" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CD_Chozas_de_Canales" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CD_Marino" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CD_Teguise" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Xerez_DFC_F\u00fatbol_Sala" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CD_Tur\u00f3n" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CD_Santa_Amalia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/AF_Calahorra" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Club_Portugalete" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/UD_Barbad\u00e1s" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CD_Montu\u00efri" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CD_Torrevieja" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CD_Roquetas" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rayo_Vallecano_B" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CF_Venta_de_Ba\u00f1os" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/SD_Eibar_B" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CD_D\u00e9nia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mar_Menor_CF" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CD_Bupolsa" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CF_Pobla_de_Mafumet" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Real_Uni\u00f3n_de_Tenerife_Club_de_F\u00fatbol" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/SD_Reoc\u00edn" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CD_Gri\u00f1\u00f3n" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Atl\u00e9tico_Madrid_(youth)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Internacional_de_Madrid_CF" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CP_Almer\u00eda" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CD_Mall\u00e9n" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Velarde_CF" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mislata_CF" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CF_Ardoi_FE" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CD_Altorric\u00f3n" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/AD_Ceut\u00ed_Atl\u00e9tico" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CD_Colunga" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/SD_Leioa" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Granada_74_CF" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/SD_Sporting_Sada" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ciudad_de_M\u00f3stoles_FS" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/SD_Salvatierra" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Real_Murcia_Imperial" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/UA_Horta" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tolosa_CF" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Racing_de_Sama" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CD_Tenerife_B" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/C.F._Lorca_Deportiva" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Getafe_Deportivo" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CE_J\u00fapiter" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/SD_Textil_Escudo" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CD_Onda" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lucena_CF" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/SD_Amorebieta" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CD_Quintanar" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/\u00c1guilas_FC" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/C\u00f3rdoba_CF" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Union_Sport_San_Vicente" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/FC_Jove_Espa\u00f1ol_San_Vicente" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Atl\u00e9tico_Madrid_C" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CE_Handbol_Mar\u00edtim" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CD_Vitoria" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/M\u00e1laga_CF_(women)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/UD_Marinaleda" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/FC_Vilafranca" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CD_Villanueva" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hurac\u00e1n_Valencia_CF" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CF_Gand\u00eda" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Torredonjimeno_CF" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CD_Azuqueca" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CF_Borriol" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CB_Torrevieja" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ordizia_KE" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Real_Oviedo_Vetusta" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/ACD_Ciudad_de_C\u00e1ceres" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/SD_Lagunak" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CF_Riudellots" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CF_Monta\u00f1esa" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CD_Plus_Ultra" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CD_Guijuelo" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CD_Laguna_de_Tenerife" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CD_San_Roque_de_Lepe" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CF_Rayo_Majadahonda" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/SD_Ponferradina_B" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/UD_Salamanca" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CD_Tudelano" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Villarreal_CF_C" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ja\u00e9n_FS" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Portonovo_SD" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/AD_Sagrada_Cena" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/SD_Tenisca" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Castro_FC" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CAP_Ciudad_de_Murcia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CE_Vilassar_de_Dalt" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/UE_T\u00e0rrega" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Luarca_CF" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/RCD_Espanyol_B" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CD_Choco" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CD_Aoiz" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/SDC_Galicia_Mugardos" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/SD_Barreda_Balompi\u00e9" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/AEC_Manlleu" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CE_Campos" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CD_Eg\u00fc\u00e9s" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CA_Deva" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CD_Coslada" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CD_Humanes" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CD_Santa_Eugenia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CP_Olivenza" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/AD_Parla" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CCD_Cerceda" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CD_Valdefierro" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CD_Santa_Marta" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CD_M\u00f3stoles_URJC" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sevilla_FC_(youth)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CD_Oberena" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Selaya_FC" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CD_Arguinegu\u00edn" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mora_CF" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Viveiro_CF" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/UP_Plasencia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/FS_M\u00f3stoles" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Torrellano_Illice_CF" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CE_L'Hospitalet" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Alca\u00f1iz_CF" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CD_M\u00e1laga" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CD_Villegas" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CD_Illescas" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/\u00c9cija_Balompi\u00e9" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Burgos_CF_(I)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/R\u00edas_Baixas_FS" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/UD_Cass\u00e0" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CD_Aurrer\u00e1_de_Vitoria" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/AD_Sala_10" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Atl\u00e9tico_Granadilla" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CD_Colonia_Ofigevi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/AD_Super_Sego_FS" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/UD_San_Sebasti\u00e1n_de_los_Reyes" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/SCR_Pe\u00f1a_Deportiva" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pumar\u00edn_CF" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CF_Trujillo" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Girona_FC" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/AD_Gu\u00edxols" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Toledo_BM" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/R\u00e1pido_de_Bouzas" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CP_Chinato" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/M\u00e9rida_UD" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/ED_L\u00e1ncara" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Real_Madrid_C.F._(youth)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Las_Rozas_CF" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CD_Piedrabuena" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CD_Logro\u00f1o" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CD_Miguelturre\u00f1o" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CD_Guarnizo" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CA_River_Ebro" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CD_Bala_Azul" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/SD_Tarazona" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mule\u00f1o_CF" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/UD_Collerense" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/UE_Lleida" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Atl\u00e9tico_Madrid_F\u00e9minas" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Levante_UD" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sporting_Plaza_de_Argel" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CD_Burguillos" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Granada_CF_(women)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CD_Tuilla" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gernika_Club" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CD_Mensajero" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CD_Alhaurino" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CD_Anguiano" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/UC_Ceares" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/UD_San_Lorenzo_de_Flumen" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CF_S\u00f3ller" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CD_Santany\u00ed" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Talavera_CF" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Racing_de_Santander_B" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Daimiel_CF" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CE_Europa" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CD_San_Roque" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Atl\u00e9tico_Monz\u00f3n" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Real_Tit\u00e1nico" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Carnicer_Torrej\u00f3n_FS" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CA_Almer\u00eda" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Alicante_CF_B" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Deportivo_de_La_Coru\u00f1a_B" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/UD_Barbastro" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rayo_Vallecano_(women)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Astorga_FS" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CP_Sanvicente\u00f1o" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Manzanares_CF" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/UM_Escobedo" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Solares_SD" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CF_Talavera_de_la_Reina" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CD_Giner_Torrero" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CD_Loeches" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CD_Aviaci\u00f3n" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/L'Entregu_CF" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pinto_FS" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/UD_Pomar" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/UE_Olot" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CD_Moa\u00f1a" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Atl\u00e9tico_Esquivias_CF" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/UE_Sant_Andreu" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gurutzeta_KFT" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CD_Margaritense" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/UD_Arenal" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CE_Andratx" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Villalonga_FC" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/UD_Altea" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Puertollano_FS" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Atl\u00e9tico_Tordesillas" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/San_Fernando_CD" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CF_Fuenlabrada" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Loja_CD" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CD_Mendi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/UE_Avi\u00e0" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CD_Alcal\u00e1" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CD_Becerril" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Laracha_CF" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CD_Don_Benito" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ciudad_de_Murcia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Real_Valladolid_(women)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Novelda_CF" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/UD_Talavera" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hu\u00e9rcal-Overa_CF" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/UD_Fraga" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Albacete_Balompi\u00e9_B" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CA_Candeleda" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/UD_Las_Palmas_Atl\u00e9tico" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/AD_Cartaya" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CD_Cebrere\u00f1a" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CF_La_Nuc\u00eda" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CFJ_Mollerussa" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CD_Brea" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/UD_Mutilvera" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Segovia_Futsal" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/SD_Lenense" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Calasparra_FC" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CD_Broll\u00f3n" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Uni\u00f3n_Tres_Cantos_FS" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/AD_Sagard\u00eda" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CD_Cala_d'Or" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CU_Collado_Villalba" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CD_Huarte" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/AD_Adra" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/SCD_Durango" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/AgD_Ceuta" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Moratalla_CF" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Amurrio_Club" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CD_Tauste" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Leis_26_Pontevedra_FS" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Arroyo_CP" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Orihuela_CF" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CE_Manacor" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/EF_Concepci\u00f3n" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CF_Peralada" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CD_Mosconia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CD_Izarra" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jerez_Industrial_CF" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CD_Orellana" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Villajoyosa_CF" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Real_Madrid_C" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Real_Avil\u00e9s_B" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Marbella_FC" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CD_Valdelacalzada" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pe\u00f1arroya_CF" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Muro_CF" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/SD_Almaz\u00e1n" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/SD_Retuerto_Sport" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/C.F._Lorca_Deportiva_(1969)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Arenas_CD" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lorca_Deportiva_CF" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Castilla-La_Mancha_FS" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Real_Aranjuez_CF" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Maspalomas_FS" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Coria_CF" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CD_Roces" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/H\u00e9rcules_CF_B" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Recreativo_de_Huelva_B" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/UD_Juventud_Barrio_del_Cristo" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CD_Aluvi\u00f3n" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/UD_Almansa" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/And\u00e9s_CF" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/SD_Oyonesa" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CD_Laudio" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Real_Sociedad_B" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Racing_Lerme\u00f1o" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CF_Atl\u00e9tico_Ciudad" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mondariz_FC" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CDF_Lakua_de_Vitoria" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ciudad_de_Plasencia_CF" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/UE_Figueres" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/FC_Puente_Tocinos" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Condal_Club" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CD_Binissalem" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Berganti\u00f1os_FC" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CA_Pulpile\u00f1o" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CD_Manchego_Ciudad_Real" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CE_Art\u00e0" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CD_Masnou" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Valencia_CF_(youth)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CD_Pozoblanco" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sestao_River_Club" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CD_Torrijos" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Atl\u00e9tico_Astorga_FC" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Atl\u00e9tico_Calatayud" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/SD_Indautxu" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Deportivo_Arag\u00f3n" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CD_Zarramonza" + } + } + ] + } + } + ], + "entities": [ + { "URI": "http://dbpedia.org/resource/Spain", "surface form": "Spain" } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/clubsRecordGoalscorer", + "surface form": "soccer clubs" + } + ] + }, + { + "id": "184", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Who produced films starring Natalie Portman?", + "keywords": "produce, film, starring, Natalie Portman" + } + ], + "query": { + "sparql": "SELECT DISTINCT ?uri WHERE { ?film a <http://dbpedia.org/ontology/Film> ; <http://dbpedia.org/ontology/starring> <http://dbpedia.org/resource/Natalie_Portman> ; <http://dbpedia.org/ontology/producer> ?uri }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mike_Nichols" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nicolas_Blanc" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/David_McFadzean" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Marc_E._Platt" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Wachowskis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Michael_Tapuah" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Scott_Stuber" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Laurence_Mark" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nancy_Grant" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rick_McCallum" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ram_Bergman" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Natalie_Portman" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Laurent_Truchot" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Patrice_Ledoux" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Susan_Cartsonis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Saul_Zaentz" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Shoja_Azari" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Joel_Silver" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ryan_Kavanaugh" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Richard_N._Gladstein" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Doug_Magallon,_Greg_Strom" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sigurj\u00f3n_Sighvatsson" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Wong_Kar-wai" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kevin_Feige" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sarah_Green_(film_producer)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Robert_Greenhut" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/John_Calley" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Larry_J._Franco" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tim_Burton" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Matt_Williams_(TV_producer)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dan_Halsted" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Alison_Owen" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Michael_De_Luca" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gary_Gilbert" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Grant_Hill_(producer)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Spencer_Susser" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Natalie_Portman", + "surface form": "produced films films starring Natalie Portman" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/wineProduced", + "surface form": "produced" + } + ] + }, + { + "id": "185", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Give me all breeds of the German Shepherd dog.", + "keywords": "breed, German Shepherd dog" + } + ], + "query": { + "sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/breed> <http://dbpedia.org/resource/German_Shepherd> }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mancs_(dog)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Appollo_(dog)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Blondi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lucca_(dog)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lightning_(dog)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Antis_(dog)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Strongheart" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nemo_A534" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Germany", + "surface form": "German Shepherd dog" + }, + { + "URI": "http://dbpedia.org/resource/German_Shepherd", + "surface form": "German Shepherd dog" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/genre", + "surface form": "breeds" + }, + { "URI": "http://dbpedia.org/ontology/country", "surface form": "" } + ] + }, + { + "id": "186", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Who is the heaviest player of the Chicago Bulls?", + "keywords": "heaviest player, Chicago Bulls" + } + ], + "query": { + "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Person> ; <http://dbpedia.org/ontology/weight> ?num { ?uri <http://dbpedia.org/property/team> <http://dbpedia.org/resource/Chicago_Bulls> } UNION { ?uri <http://dbpedia.org/property/draftTeam> <http://dbpedia.org/resource/Chicago_Bulls> } UNION { ?uri <http://dbpedia.org/ontology/draftTeam> <http://dbpedia.org/resource/Chicago_Bulls> } } ORDER BY DESC(?num) OFFSET 0 LIMIT 1" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Roberto_Due\u00f1as" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Chicago_Bulls", + "surface form": "Chicago Bulls" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/coach", + "surface form": "heaviest player" + } + ] + }, + { + "id": "187", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Which languages are spoken in Estonia?", + "keywords": "language, spoken, Estonia" + } + ], + "query": { + "sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/spokenIn> <http://dbpedia.org/resource/Estonia> }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Laiuse_Romani_language" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Estonian_Sign_Language" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Seto_dialect" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Russian_Sign_Language" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Baltic_Romani" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/V\u00f5ro_language" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Estonian_language" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Modern_Swedish" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Estonia", + "surface form": "Estonia" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/language", + "surface form": "languages" + }, + { + "URI": "http://dbpedia.org/ontology/spokenIn", + "surface form": "spoken" + } + ] + }, + { + "id": "188", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "What is the largest country in the world?", + "keywords": "largest country, world" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Country ; dbo:areaTotal ?n } ORDER BY DESC(?n) OFFSET 0 LIMIT 1" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Organization_for_Security_and_Co-operation_in_Europe" + } + } + ] + } + } + ], + "entities": [], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/areaTotal", + "surface form": "largest country" + } + ] + }, + { + "id": "189", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "What is the largest city in america?", + "keywords": "largest, city, america" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?lcity WHERE { dbr:United_States dbo:largestCity ?lcity }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/New_York_City" + } + } + ] + } + } + ], + "entities": [], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/largestCity", + "surface form": "largest city" + }, + { + "URI": "http://dbpedia.org/ontology/province", + "surface form": "america" + } + ] + }, + { + "id": "190", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Who was the pope that founded the Vatican Television?", + "keywords": "pope, founded, Vatican Television" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT ?uri WHERE { ?uri rdf:type dbo:Pope . res:Vatican_Television_Center dbo:foundedBy ?uri }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pope_John_Paul_II" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Vatican_Television_Center", + "surface form": "Vatican Television" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/material", + "surface form": "pope" + }, + { + "URI": "http://dbpedia.org/ontology/leader", + "surface form": "founded" + } + ] + }, + { + "id": "191", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Who discovered Ceres?", + "keywords": "discoverer, Ceres" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Ceres_(dwarf_planet)> dbo:discoverer ?uri }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Giuseppe_Piazzi" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Ceres_(dwarf_planet)", + "surface form": "Ceres" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/discoverer", + "surface form": "discovered" + } + ] + }, + { + "id": "192", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Who is the king of the Netherlands?", + "keywords": "king, the Netherlands" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { res:Netherlands dbo:leader ?uri . ?uri rdf:type dbo:Royalty }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Willem-Alexander_of_the_Netherlands" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Netherlands", + "surface form": "Netherlands" + } + ], + "relations": [ + { "URI": "http://dbpedia.org/ontology/leader", "surface form": "king" } + ] + }, + { + "id": "193", + "answertype": "boolean", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Is Cola a beverage?", + "keywords": "Cola, beverage" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> ASK WHERE { res:Cola rdf:type dbo:Beverage }" + }, + "answers": [{ "head": {}, "results": {}, "boolean": true }], + "entities": [ + { "URI": "http://dbpedia.org/resource/Cola", "surface form": "Cola" } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/strength", + "surface form": "beverage" + } + ] + }, + { + "id": "194", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "What is the alma mater of the chancellor of Germany Angela Merkel?", + "keywords": "Angela Merkel" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?Almamater WHERE { dbr:Angela_Merkel dbo:almaMater ?Almamater }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Leipzig_University" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Angela_Merkel", + "surface form": "Germany Angela Merkel" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/almaMater", + "surface form": "alma mater" + }, + { + "URI": "http://dbpedia.org/ontology/chancellor", + "surface form": "chancellor" + } + ] + }, + { + "id": "195", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Who wrote the book Les Piliers de la terre?", + "keywords": "wrote, book, The pillars of the Earth" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:The_Pillars_of_the_Earth dbo:author ?uri }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ken_Follett" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/La_Terre", + "surface form": "book Les Piliers de la terre" + } + ], + "relations": [ + { "URI": "http://dbpedia.org/ontology/author", "surface form": "wrote" } + ] + }, + { + "id": "196", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Which airports does Yeti Airlines serve?", + "keywords": "airports, Yeti Airlines" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Yeti_Airlines dbo:targetAirport ?uri }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pokhara" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bhairahawa" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Biratnagar" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Yeti_Airlines", + "surface form": "Yeti Airlines" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/hubAirport", + "surface form": "airports" + }, + { "URI": "http://dbpedia.org/ontology/colour", "surface form": "serve" } + ] + }, + { + "id": "197", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Where is the birthplace of Goethe?", + "keywords": "Goethe" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?Goethe WHERE { dbr:Johann_Wolfgang_von_Goethe dbo:birthPlace ?Goethe }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Holy_Roman_Empire" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Frankfurt" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Frankfurt-am-Main" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Goethe_Prize", + "surface form": "Goethe" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/birthPlace", + "surface form": "birthplace" + } + ] + }, + { + "id": "198", + "answertype": "boolean", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Was the Cuban Missile Crisis earlier than the Bay of Pigs Invasion?", + "keywords": "Cuban Missile Crisis, earlier, Bay of Pigs Invasion" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> ASK WHERE { res:Cuban_Missile_Crisis dbo:date ?x . res:Bay_of_Pigs_Invasion dbo:date ?y FILTER ( ?x < ?y ) }" + }, + "answers": [{ "head": {}, "results": {}, "boolean": false }], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Cuba", + "surface form": "Cuban Missile Crisis " + }, + { + "URI": "http://dbpedia.org/resource/Cuban_Missile_Crisis", + "surface form": "Cuban Missile Crisis " + }, + { + "URI": "http://dbpedia.org/resource/Bay_of_Pigs_Invasion", + "surface form": " the Bay of Pigs Invasion" + } + ], + "relations": [ + { "URI": "http://dbpedia.org/ontology/date", "surface form": "when" }, + { "URI": "http://dbpedia.org/ontology/country", "surface form": "" } + ] + }, + { + "id": "199", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Which ingredients do I need for carrot cake?", + "keywords": "carrot cake, ingredients" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Carrot_cake dbo:ingredient ?uri }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Egg_(food)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Carrots" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Flour" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Almonds" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Baking_powder" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sugar" + } + } + ] + } + } + ], + "entities": [ + { "URI": "http://dbpedia.org/resource/I", "surface form": "I" }, + { + "URI": "http://dbpedia.org/resource/Carrot_cake", + "surface form": "carrot cake" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/ingredient", + "surface form": "ingredients" + } + ] + }, + { + "id": "200", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Who created Wikipedia?", + "keywords": "Wikipedia, created" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Wikipedia dbo:author ?uri }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jimmy_Wales" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Larry_Sanger" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Wikipedia", + "surface form": "Wikipedia" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/author", + "surface form": "created" + } + ] + }, + { + "id": "201", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "What is the highest mountain in Saxony Germany?", + "keywords": "highest, mountain, Saxony, Germany" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?m WHERE { ?m dbo:mountainRange dbr:Ore_Mountains ; dbo:elevation ?height } ORDER BY DESC(?height) LIMIT 1" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Fichtelberg" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Frankenstein,_Saxony", + "surface form": "Saxony Germany" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/elevation", + "surface form": "highest mountain" + } + ] + }, + { + "id": "202", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Who is the current federal minister of finance in Germany?", + "keywords": "federal minister of finance, germany" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> SELECT ?leader WHERE { <http://dbpedia.org/resource/Federal_Ministry_of_Finance_(Germany)> dbo:leader ?leader }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Wolfgang_Sch\u00e4uble" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Current_prime_minister_of_Canada", + "surface form": "current federal minister" + }, + { + "URI": "http://dbpedia.org/resource/Germany", + "surface form": "Germany" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/operator", + "surface form": "finance" + } + ] + }, + { + "id": "203", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "In which country is Mecca located?", + "keywords": "country, located, Mecca" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Mecca dbo:country ?uri }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Saudi_Arabia" + } + } + ] + } + } + ], + "entities": [ + { "URI": "http://dbpedia.org/resource/Mecca", "surface form": "Mecca" } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/country", + "surface form": "country" + }, + { + "URI": "http://dbpedia.org/ontology/locatedInArea", + "surface form": "located" + } + ] + }, + { + "id": "204", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Who played Gus Fring in Breaking Bad?", + "keywords": "play, Gus Fring, Breaking Bad" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Gus_Fring dbo:portrayer ?uri }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Giancarlo_Esposito" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Gus_Fring", + "surface form": "Gus Fring" + }, + { + "URI": "http://dbpedia.org/resource/Breaking_Bad", + "surface form": "Breaking Bad" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/portrayer", + "surface form": "played" + } + ] + }, + { + "id": "205", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "In which country does the Nile start?", + "keywords": "Nile, start, country" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Nile dbo:sourceCountry ?uri }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rwanda" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ethiopia" + } + } + ] + } + } + ], + "entities": [ + { "URI": "http://dbpedia.org/resource/Nile", "surface form": "Nile" } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/country", + "surface form": "country" + }, + { "URI": "http://dbpedia.org/ontology/source", "surface form": "start" } + ] + }, + { + "id": "206", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "In which state Penn State University is located?", + "keywords": "Penn State University" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?s WHERE { dbr:Pennsylvania_State_University dbo:state ?s }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pennsylvania" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Pennsylvania_State_University", + "surface form": "Penn State University" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/position", + "surface form": "located" + } + ] + }, + { + "id": "207", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "What is the biggest stadium in Spain?", + "keywords": "biggest stadium, Spain" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Stadium ; dbo:location res:Spain ; dbo:seatingCapacity ?n } ORDER BY DESC(?n) OFFSET 0 LIMIT 1" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vicente_Calder\u00f3n_Stadium" + } + } + ] + } + } + ], + "entities": [ + { "URI": "http://dbpedia.org/resource/Spain", "surface form": "Spain" } + ], + "relations": [ + { + "URI": "http://dbpedia.org/property/stadium", + "surface form": "biggest stadium" + } + ] + }, + { + "id": "208", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Who is the coach of Ankara's ice hockey team?", + "keywords": "coach, ice hockey team, Ankara" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { ?x dbo:city res:Ankara ; dbo:league res:Turkish_Ice_Hockey_First_League ; dbo:coach ?uri }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/\u0130brahim_O\u011fuz" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Ankara", + "surface form": "Ankara" + }, + { + "URI": "http://dbpedia.org/resource/Greece_national_ice_hockey_team", + "surface form": " ice hockey team" + } + ], + "relations": [ + { "URI": "http://dbpedia.org/ontology/coach", "surface form": "coach" } + ] + }, + { + "id": "209", + "answertype": "number", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "How large is the area of UK?", + "keywords": "area, UK" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?area WHERE { dbr:United_Kingdom dbo:areaTotal ?area }" + }, + "answers": [ + { + "head": { "vars": ["c"] }, + "results": { + "bindings": [{ "c": { "type": "literal", "value": "2.42495e+11" } }] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/United_Kingdom", + "surface form": "UK" + } + ], + "relations": [ + { "URI": "http://dbpedia.org/ontology/area", "surface form": "area" } + ] + }, + { + "id": "210", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Who created Batman?", + "keywords": "Batman, creator" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Batman dbo:creator ?uri }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bob_Kane" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bill_Finger" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Batman", + "surface form": "Batman" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/creator", + "surface form": "created" + } + ] + }, + { + "id": "211", + "answertype": "boolean", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Was Sigmund Freud married?", + "keywords": "Sigmund Freud, married" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> ASK WHERE { dbr:Sigmund_Freud dbo:spouse ?uri }" + }, + "answers": [{ "head": {}, "results": {}, "boolean": true }], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Sigmund_Freud", + "surface form": "Sigmund Freud married" + } + ], + "relations": [] + }, + { + "id": "212", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Who are the developers of DBpedia?", + "keywords": "developers, DBpedia" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:DBpedia dbo:developer ?uri }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/University_of_Mannheim" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Leipzig_University" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/OpenLink_Software" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/DBpedia", + "surface form": "DBpedia" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/developer", + "surface form": "developers" + } + ] + }, + { + "id": "213", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Give me all movies directed by Francis Ford Coppola.", + "keywords": "movie, direct, Francis Ford Coppola" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Film ; dbo:director res:Francis_Ford_Coppola }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Rain_People" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Godfather_Part_III" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/One_from_the_Heart" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Outsiders_(film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Terror_(1963_film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Godfather_Part_II" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Twixt_(film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Cotton_Club_(film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tonight_for_Sure" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Peggy_Sue_Got_Married" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bram_Stoker's_Dracula" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Conversation" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rumble_Fish" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Apocalypse_Now_Redux" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Godfather" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Youth_Without_Youth_(film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Finian's_Rainbow_(film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dementia_13" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tucker:_The_Man_and_His_Dream" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gardens_of_Stone" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Rainmaker_(1997_film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/You're_a_Big_Boy_Now" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tetro" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/New_York_Stories" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Godfather_Saga" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Godfather_(film_series)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Battle_Beyond_the_Sun" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Bellboy_and_the_Playgirls" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jack_(1996_film)" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Francis_Ford_Coppola", + "surface form": "Francis Ford Coppola" + } + ], + "relations": [ + { "URI": "http://dbpedia.org/ontology/film", "surface form": "movies" }, + { + "URI": "http://dbpedia.org/ontology/president", + "surface form": "directed" + } + ] + }, + { + "id": "214", + "answertype": "boolean", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Are tree frogs a type of amphibian?", + "keywords": "tree frog, amphibian" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> ASK WHERE { res:Hylidae dbo:class res:Amphibian }" + }, + "answers": [{ "head": {}, "results": {}, "boolean": false }], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Amphibian", + "surface form": "amphibian" + } + ], + "relations": [ + { "URI": "http://dbpedia.org/ontology/family", "surface form": "tree" }, + { "URI": "http://dbpedia.org/property/gross", "surface form": "frogs" }, + { "URI": "http://dbpedia.org/ontology/type", "surface form": "type" } + ] + }, + { + "id": "215", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "What is the location of the Houses of Parliament?", + "keywords": "location, Houses of Parliament" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT ?uri WHERE { res:Palace_of_Westminster dbo:location ?uri }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/London" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/City_of_Westminster" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Palace_of_Westminster", + "surface form": "Houses of Parliament" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/location", + "surface form": "location" + } + ] + }, + { + "id": "216", + "answertype": "number", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "how much is the elevation of D\u00fcsseldorf Airport ?", + "keywords": "D\u00fcsseldorf Airport" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?ele WHERE { dbr:D\u00fcsseldorf_Airport dbo:elevation ?ele } LIMIT 1" + }, + "answers": [ + { + "head": { "vars": ["c"] }, + "results": { + "bindings": [{ "c": { "type": "literal", "value": "44.8" } }] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/D\u00fcsseldorf_Airport", + "surface form": "D\u00fcsseldorf Airport" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/elevation", + "surface form": "elevation" + } + ] + }, + { + "id": "217", + "answertype": "number", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "How much is the population of mexico city ?", + "keywords": "mexico city" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?Mexico_City WHERE { dbr:Mexico_City dbo:populationTotal ?Mexico_City }" + }, + "answers": [ + { + "head": { "vars": ["c"] }, + "results": { + "bindings": [{ "c": { "type": "literal", "value": "8918653" } }] + } + } + ], + "entities": [], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/country", + "surface form": "population" + }, + { + "URI": "http://dbpedia.org/ontology/municipality", + "surface form": "mexico city" + } + ] + }, + { + "id": "218", + "answertype": "date", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "when was the founding date of french fifth republic?", + "keywords": "french fifth republic" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?ff WHERE { dbr:French_Fifth_Republic dbo:foundingDate ?ff }" + }, + "answers": [ + { + "head": { "vars": ["date"] }, + "results": { + "bindings": [ + { "date": { "type": "literal", "value": "1958-10-04" } } + ] + } + } + ], + "entities": [], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/institution", + "surface form": "founding" + }, + { + "URI": "http://dbpedia.org/ontology/channel", + "surface form": "french" + }, + { + "URI": "http://dbpedia.org/ontology/state", + "surface form": "republic" + } + ] + }, + { + "id": "219", + "answertype": "resource", + "aggregation": false, + "onlydbo": false, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Who was the first King of England?", + "keywords": "first King of England" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX yago: <http://dbpedia.org/class/yago/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Royalty ; rdf:type yago:WikicatEnglishMonarchs ; dbo:activeYearsStartYear ?date } ORDER BY ASC(?date) OFFSET 0 LIMIT 1" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Harold_Godwinson" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/List_of_English_monarchs", + "surface form": "King of England" + } + ], + "relations": [] + }, + { + "id": "220", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Who is the editor of Forbes?", + "keywords": "Forbes, editor" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Forbes dbo:editor ?uri }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Steve_Forbes" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Forbes", + "surface form": "Forbes" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/editor", + "surface form": "editor" + } + ] + }, + { + "id": "221", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Which awards did Douglas Hofstadter win?", + "keywords": "Douglas Hofstadter, award" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Douglas_Hofstadter dbo:award ?uri }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/American_Academy_of_Arts_and_Sciences" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Book_Award" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pulitzer_Prize" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Douglas_Hofstadter", + "surface form": "Douglas Hofstadter" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/award", + "surface form": "awards" + }, + { "URI": "http://dbpedia.org/ontology/award", "surface form": "win" } + ] + }, + { + "id": "222", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Who is the youngest Darts player?", + "keywords": "Darts player, youngest" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:DartsPlayer ; dbo:birthDate ?date } ORDER BY DESC(?date) OFFSET 0 LIMIT 1" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Max_Hopp" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Andrew_Gilding", + "surface form": "Darts player" + } + ], + "relations": [] + }, + { + "id": "223", + "answertype": "boolean", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Is horse racing a sport?", + "keywords": "horse racing, sport" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> ASK WHERE { dbr:Horse_racing rdf:type dbo:Sport }" + }, + "answers": [{ "head": {}, "results": {}, "boolean": true }], + "entities": [], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/raceHorse", + "surface form": "horse" + }, + { + "URI": "http://dbpedia.org/ontology/position", + "surface form": "racing" + }, + { "URI": "http://dbpedia.org/ontology/sport", "surface form": "sport" } + ] + }, + { + "id": "224", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Which river does the Brooklyn Bridge cross?", + "keywords": "river, cross, Brooklyn Bridge" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Brooklyn_Bridge dbo:crosses ?uri }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/East_River" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Brooklyn_Bridge", + "surface form": "Brooklyn Bridge" + } + ], + "relations": [ + { "URI": "http://dbpedia.org/ontology/river", "surface form": "river" }, + { + "URI": "http://dbpedia.org/ontology/crosses", + "surface form": "cross" + } + ] + }, + { + "id": "225", + "answertype": "number", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "How many people live in Poland?", + "keywords": "How many people, Poland" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Poland dbo:populationTotal ?uri }" + }, + "answers": [ + { + "head": { "vars": ["c"] }, + "results": { + "bindings": [{ "c": { "type": "literal", "value": "38483957" } }] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Poland", + "surface form": "Poland" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/residence", + "surface form": "live" + } + ] + }, + { + "id": "226", + "answertype": "date", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "When was the last episode of the TV series Friends aired?", + "keywords": "last episode, Friends Tv show" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?date WHERE { dbr:Friends dbo:completionDate ?date }" + }, + "answers": [ + { + "head": { "vars": ["date"] }, + "results": { + "bindings": [ + { "date": { "type": "literal", "value": "2004-05-06" } } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Tv_test_pattern", + "surface form": "TV" + }, + { + "URI": "http://dbpedia.org/resource/Thomas_&_Friends_(series_18)", + "surface form": "series Friends" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/type", + "surface form": "episode" + }, + { + "URI": "http://dbpedia.org/property/firstAired", + "surface form": "aired" + } + ] + }, + { + "id": "227", + "answertype": "boolean", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Is the wife of president Obama called Michelle?", + "keywords": "Obama, president, wife, called, Michelle" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> ASK WHERE { res:Barack_Obama dbo:spouse ?spouse . ?spouse rdfs:label ?name FILTER regex(?name, \"Michelle\") }" + }, + "answers": [{ "head": {}, "results": {}, "boolean": true }], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Barack_Obama", + "surface form": "Obama" + } + ], + "relations": [ + { "URI": "http://dbpedia.org/property/spouse", "surface form": "wife" }, + { "URI": "http://dbpedia.org/ontology/guest", "surface form": "called" } + ] + }, + { + "id": "229", + "answertype": "string", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Who is 8th president of US?", + "keywords": "8th President, USA" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbp: <http://dbpedia.org/property/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?name WHERE { dbr:8th_President_of_the_United_States dbo:wikiPageRedirects ?link . ?link dbp:name ?name }" + }, + "answers": [ + { + "head": { "vars": ["string"] }, + "results": { + "bindings": [ + { "string": { "type": "literal", "value": "Martin Van Buren" } }, + { "string": { "type": "literal", "value": "Van Buren" } } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/United_States", + "surface form": "US" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/leader", + "surface form": "8th president" + } + ] + }, + { + "id": "230", + "answertype": "number", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "how much is the total population of european union?", + "keywords": "european union" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?europop WHERE { dbr:European_Union dbo:populationTotal ?europop }" + }, + "answers": [ + { + "head": { "vars": ["c"] }, + "results": { + "bindings": [{ "c": { "type": "literal", "value": "510056011" } }] + } + } + ], + "entities": [], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/totalPopulation", + "surface form": "total population" + }, + { + "URI": "http://dbpedia.org/ontology/league", + "surface form": "european union" + } + ] + }, + { + "id": "231", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Give me all launch pads operated by NASA.", + "keywords": "launch pad, operate, NASA" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:LaunchPad ; dbo:operator res:NASA }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mid-Atlantic_Regional_Spaceport_Launch_Pad_0" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Keweenaw_Rocket_Range" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Spaceport_Florida_Launch_Complex_36" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Wallops_Flight_Facility_Launch_Area_3" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Broglio_Space_Centre" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kennedy_Space_Center_Launch_Complex_39" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cape_Canaveral_Air_Force_Station_Launch_Complex_13" + } + } + ] + } + } + ], + "entities": [ + { "URI": "http://dbpedia.org/resource/NASA", "surface form": "NASA" } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/institution", + "surface form": "launch" + }, + { + "URI": "http://dbpedia.org/ontology/operatedBy", + "surface form": "pads operated" + } + ] + }, + { + "id": "232", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Who developed the video game World of Warcraft?", + "keywords": "video game, World of Warcraft, develop" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:World_of_Warcraft dbo:developer ?uri }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Blizzard_Entertainment" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/World_of_Warcraft", + "surface form": "video game World of Warcraft" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/developer", + "surface form": "developed" + } + ] + }, + { + "id": "233", + "answertype": "string", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "What is the birth name of Adele?", + "keywords": "Adele" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?bn WHERE { dbr:Adele dbo:birthName ?bn }" + }, + "answers": [ + { + "head": { "vars": ["string"] }, + "results": { + "bindings": [ + { + "string": { + "type": "literal", + "value": "Adele Laurie Blue Adkins" + } + } + ] + } + } + ], + "entities": [ + { "URI": "http://dbpedia.org/resource/Adele", "surface form": "Adele" } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/birthName", + "surface form": "birth name" + } + ] + }, + { + "id": "234", + "answertype": "number", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "What is the population of Cairo?", + "keywords": "population, Cairo" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?pop WHERE { dbr:Cairo dbo:populationTotal ?pop }" + }, + "answers": [ + { + "head": { "vars": ["c"] }, + "results": { + "bindings": [{ "c": { "type": "literal", "value": "10230350" } }] + } + } + ], + "entities": [ + { "URI": "http://dbpedia.org/resource/Cairo", "surface form": "Cairo" } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/populationTotal", + "surface form": "population" + } + ] + }, + { + "id": "235", + "answertype": "boolean", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Is Frank Herbert still alive?", + "keywords": "Frank Herbert, alive" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> ASK WHERE { OPTIONAL { res:Frank_Herbert dbo:deathDate ?date } FILTER ( ! bound(?date) ) }" + }, + "answers": [{ "head": {}, "results": {}, "boolean": false }], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Frank_Herbert", + "surface form": "Frank Herbert" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/deathDate", + "surface form": "alive" + } + ] + }, + { + "id": "236", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "What is the last work of Dan Brown?", + "keywords": "last work, Dan Brown" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbp: <http://dbpedia.org/property/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?book WHERE { { ?book dbo:author dbr:Dan_Brown . ?book dbp:releaseDate ?date } UNION { ?book dbo:author dbr:Dan_Brown . ?book dbo:publicationDate ?date} } ORDER BY DESC(xsd:date(?date)) LIMIT 1" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Inferno_(Brown_novel)" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Dan_Brown", + "surface form": "Dan Brown" + } + ], + "relations": [ + { "URI": "http://dbpedia.org/ontology/battle", "surface form": "work" } + ] + }, + { + "id": "237", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Where is Sungkyunkwan University?", + "keywords": "Sungkyunkwan, University" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT DISTINCT ?country WHERE { dbr:Sungkyunkwan_University dbo:city ?city ; dbo:country ?country }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/South_Korea" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Sungkyunkwan_University", + "surface form": "Sungkyunkwan University" + } + ], + "relations": [] + }, + { + "id": "238", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Who is the author of the interpretation of dreams?", + "keywords": "Interpretation of Dreams, Author" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?Author WHERE { dbr:The_Interpretation_of_Dreams dbo:author ?Author }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sigmund_Freud" + } + } + ] + } + } + ], + "entities": [], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/author", + "surface form": "author" + }, + { + "URI": "http://dbpedia.org/ontology/meaning", + "surface form": "interpretation" + }, + { + "URI": "http://dbpedia.org/ontology/picture", + "surface form": "dreams" + } + ] + }, + { + "id": "239", + "answertype": "date", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "When was the death of Shakespeare?", + "keywords": "Shakespeare" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?x WHERE { dbr:William_Shakespeare dbo:deathDate ?x } LIMIT 1" + }, + "answers": [ + { + "head": { "vars": ["date"] }, + "results": { + "bindings": [ + { "date": { "type": "literal", "value": "1616-04-23" } } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/William_Shakespeare", + "surface form": "Shakespeare" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/deathDate", + "surface form": "death" + } + ] + }, + { + "id": "241", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Who developed Slack?", + "keywords": "developer, Slack" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?uri dbo:product <http://dbpedia.org/resource/Slack_(software)> }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Slack_Technologies" + } + } + ] + } + } + ], + "entities": [ + { "URI": "http://dbpedia.org/resource/Slack", "surface form": "Slack" } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/developer", + "surface form": "developed" + } + ] + }, + { + "id": "242", + "answertype": "uri", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Where is the origin of Carolina reaper?", + "keywords": "Carolina reaper" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/>PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?uri WHERE { dbr:Carolina_Reaper dbo:origin ?uri}" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Fort_Mill,_South_Carolina" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Carolina_Reaper", + "surface form": "Carolina reaper" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/origin", + "surface form": "origin" + } + ] + }, + { + "id": "243", + "answertype": "number", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "In which year was Rachel Stevens born?", + "keywords": "year, born, Rachel Stevens" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Rachel_Stevens dbo:birthYear ?uri }" + }, + "answers": [ + { + "head": { "vars": ["c"] }, + "results": { + "bindings": [{ "c": { "type": "literal", "value": "1978" } }] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Rachel_Stevens", + "surface form": "Rachel Stevens" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/birthYear", + "surface form": "born" + } + ] + }, + { + "id": "244", + "answertype": "number", + "aggregation": true, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "How often did Jane Fonda marry?", + "keywords": "Jane Fonda, marry, how often" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT (COUNT(DISTINCT ?uri) AS ?c) WHERE { res:Jane_Fonda dbo:spouse ?uri }" + }, + "answers": [ + { + "head": { "vars": ["c"] }, + "results": { + "bindings": [{ "c": { "type": "literal", "value": "3" } }] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Jane_Fonda", + "surface form": "Jane Fonda" + } + ], + "relations": [ + { "URI": "http://dbpedia.org/ontology/spouse", "surface form": "marry" } + ] + }, + { + "id": "245", + "answertype": "boolean", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Was the wife of president Lincoln called Mary?", + "keywords": "Lincoln, president, wife, called, Mary" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> ASK WHERE { res:Abraham_Lincoln dbo:spouse ?spouse . ?spouse rdfs:label ?name FILTER regex(?name, \"Mary\") }" + }, + "answers": [{ "head": {}, "results": {}, "boolean": true }], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Abraham_Lincoln", + "surface form": "Lincoln" + } + ], + "relations": [ + { "URI": "http://dbpedia.org/property/spouse", "surface form": "wife" }, + { + "URI": "http://dbpedia.org/property/nickname", + "surface form": "called" + } + ] + }, + { + "id": "246", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Which cities does the Weser flow through?", + "keywords": "Weser, flow through, city" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Weser dbo:city ?uri }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Fulda_(river)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kassel" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hamelin" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Minden" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bremen" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bremerhaven" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hann._M\u00fcnden" + } + } + ] + } + } + ], + "entities": [ + { "URI": "http://dbpedia.org/resource/Weser", "surface form": "Weser" } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/country", + "surface form": "cities" + }, + { + "URI": "http://dbpedia.org/ontology/discharge", + "surface form": "flow" + } + ] + }, + { + "id": "247", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "In which programming language is GIMP written?", + "keywords": "GIMP, programming language" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:GIMP dbo:programmingLanguage ?uri }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/C_(programming_language)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/GTK+" + } + } + ] + } + } + ], + "entities": [ + { "URI": "http://dbpedia.org/resource/GIMP", "surface form": "GIMP" } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/programmingLanguage", + "surface form": "programming language" + }, + { + "URI": "http://dbpedia.org/ontology/writer", + "surface form": "written" + } + ] + }, + { + "id": "248", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Which university did Angela Merkel attend?", + "keywords": "university, Angela Merkel" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?university WHERE { res:Angela_Merkel dbo:almaMater ?university }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Leipzig_University" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Angela_Merkel", + "surface form": "Angela Merkel" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/university", + "surface form": "university" + }, + { "URI": "http://dbpedia.org/ontology/show", "surface form": "attend" } + ] + }, + { + "id": "249", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "List all the musicals with music by Elton John.", + "keywords": "musicals, music by, Elton John" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Musical ; dbo:musicBy res:Elton_John }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Lion_King_(musical)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Lion_King_Jr_(musical)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Billy_Elliot_the_Musical" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lestat_(musical)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Aida_(musical)" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Elton_John", + "surface form": "Elton John" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/property/musicals", + "surface form": "musicals" + }, + { + "URI": "http://dbpedia.org/ontology/musicalBand", + "surface form": "music" + } + ] + }, + { + "id": "250", + "answertype": "number", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "How many Aldi stores are there?", + "keywords": "own, Aldi" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?number WHERE { res:Aldi dbo:numberOfLocations ?number }" + }, + "answers": [ + { + "head": { "vars": ["c"] }, + "results": { + "bindings": [{ "c": { "type": "literal", "value": "9600" } }] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Aldi", + "surface form": "Aldi stores" + } + ], + "relations": [] + }, + { + "id": "251", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "What is the longest river in the world?", + "keywords": "longest river, world" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT ?uri WHERE { ?uri rdf:type dbo:BodyOfWater ; dbo:length ?length } ORDER BY DESC(?length) LIMIT 1" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Irtysh_River" + } + } + ] + } + } + ], + "entities": [], + "relations": [ + { "URI": "http://dbpedia.org/ontology/river", "surface form": "river" } + ] + }, + { + "id": "252", + "answertype": "date", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "When was John Adams born?", + "keywords": "John Adams, born" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?date WHERE { res:John_Adams dbo:birthDate ?date }" + }, + "answers": [ + { + "head": { "vars": ["date"] }, + "results": { + "bindings": [ + { "date": { "type": "literal", "value": "1735-10-19" } }, + { "date": { "type": "literal", "value": "1735-10-30" } } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/John_Adams", + "surface form": "John Adams" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/birthDate", + "surface form": "born" + } + ] + }, + { + "id": "253", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Which companies produce hovercrafts?", + "keywords": "companies, produce, hovercrafts" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Company ; dbo:product res:Hovercraft }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Saunders-Roe" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hanjin_Heavy_Industries" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/British_Hovercraft_Corporation" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Companies_listed_on_the_New_York_Stock_Exchange_(J)", + "surface form": "companies" + }, + { + "URI": "http://dbpedia.org/resource/Hovercraft", + "surface form": "Hovercrafts" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/producer", + "surface form": "produce" + } + ] + }, + { + "id": "254", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Who was the wife of U.S. president Lincoln?", + "keywords": "U.S. president, Lincoln, wife" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Abraham_Lincoln dbo:spouse ?uri }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mary_Todd_Lincoln" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Abraham_Lincoln", + "surface form": "Lincoln" + } + ], + "relations": [ + { "URI": "http://dbpedia.org/ontology/spouse", "surface form": "wife" } + ] + }, + { + "id": "255", + "answertype": "string", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Which species does an elephant belong?", + "keywords": "species, elephant" + } + ], + "query": { + "sparql": "PREFIX dbr: <http://dbpedia.org/resource/> PREFIX dbp: <http://dbpedia.org/property/> SELECT ?species WHERE { dbr:Elephant dbp:species ?species }" + }, + "answers": [ + { + "head": { "vars": ["string"] }, + "results": { + "bindings": [ + { "string": { "type": "literal", "value": "Proboscidea" } } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Elephant", + "surface form": "Elephant" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/species", + "surface form": "species" + }, + { + "URI": "http://dbpedia.org/ontology/animal", + "surface form": "belong" + } + ] + }, + { + "id": "256", + "answertype": "number", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "How many people live in the capital of Australia?", + "keywords": "Australia, capital, people, live" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?num WHERE { res:Australia dbo:capital ?x . ?x dbo:populationTotal ?num }" + }, + "answers": [ + { + "head": { "vars": ["c"] }, + "results": { + "bindings": [{ "c": { "type": "literal", "value": "381488" } }] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Australia", + "surface form": "Australia" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/populationTotal", + "surface form": "live" + }, + { + "URI": "http://dbpedia.org/ontology/capital", + "surface form": "capital" + } + ] + }, + { + "id": "257", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "In which ancient empire could you pay with cocoa beans?", + "keywords": "ancient empire, pay, cocoa beans" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { ?uri dbo:currency res:Cocoa_bean }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Aztec_Empire" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Cocoa_bean", + "surface form": "cocoa beans" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/country", + "surface form": "ancient empire" + }, + { "URI": "http://dbpedia.org/ontology/currency", "surface form": "pay" } + ] + }, + { + "id": "258", + "answertype": "number", + "aggregation": true, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "How many theories did Albert Einstein come up with?", + "keywords": "theories, Albert Einstein, come up" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT (COUNT(?uri) AS ?count) WHERE { dbr:Albert_Einstein dbo:knownFor ?uri }" + }, + "answers": [ + { + "head": { "vars": ["c"] }, + "results": { + "bindings": [{ "c": { "type": "literal", "value": "12" } }] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Theories_of_cloaking", + "surface form": "theories" + }, + { + "URI": "http://dbpedia.org/resource/Albert_Einstein", + "surface form": "Albert Einstein" + } + ], + "relations": [] + }, + { + "id": "259", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Who composed the soundtrack for Cameron's Titanic?", + "keywords": "compose, soundtrack, Cameron's Titanic" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Titanic_(1997_film)> dbo:musicComposer ?uri }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/James_Horner" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Soundtrack_for_a_Revolution", + "surface form": "soundtrack" + }, + { + "URI": "http://dbpedia.org/resource/Cameron", + "surface form": "Cameron" + }, + { + "URI": "http://dbpedia.org/resource/Titanic_(1953_film)", + "surface form": " Titanic" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/musicComposer", + "surface form": "composed" + } + ] + }, + { + "id": "260", + "answertype": "number", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Give me the runtime of Toy Story.", + "keywords": "runtime, Toy Story" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?runtime WHERE { res:Toy_Story dbo:runtime ?runtime }" + }, + "answers": [ + { + "head": { "vars": ["c"] }, + "results": { + "bindings": [{ "c": { "type": "literal", "value": "4860.0" } }] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Toy_Story", + "surface form": "Toy Story" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/runtime", + "surface form": "runtime" + } + ] + }, + { + "id": "262", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "With how many countries Iran has borders?", + "keywords": "Iran, borders" + } + ], + "query": { + "sparql": "PREFIX dbr: <http://dbpedia.org/resource/> PREFIX dbp: <http://dbpedia.org/property/> SELECT ?border WHERE { dbr:Geography_of_Iran dbp:borders ?border } LIMIT 8" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pakistan" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Turkey" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Afghanistan" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Land_borders" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Turkmenistan" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Iraq" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Armenia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Azerbaijan" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Low_Countries", + "surface form": "countries Iran" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/division", + "surface form": "borders" + } + ] + }, + { + "id": "263", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Which electronics companies were founded in Beijing?", + "keywords": "electronics companies, founded, Beijing" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Company ; dbo:industry res:Electronics ; dbo:foundationPlace res:Beijing }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lenovo" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Novak_Electronics", + "surface form": "electronics companies" + }, + { + "URI": "http://dbpedia.org/resource/Beijing", + "surface form": "Beijing" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/property/founder", + "surface form": "founded" + } + ] + }, + { + "id": "264", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Who was the successor of John F. Kennedy?", + "keywords": "John F. Kennedy, successor" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:John_F._Kennedy dbo:successor ?uri }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Benjamin_A._Smith_II" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lyndon_B._Johnson" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tip_O'Neill" + } + } + ] + } + } + ], + "entities": [ + { "URI": "http://dbpedia.org/resource/F", "surface form": "F" }, + { + "URI": "http://dbpedia.org/resource/John_F._Kennedy", + "surface form": "John Kennedy" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/successor", + "surface form": "successor" + } + ] + }, + { + "id": "265", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Who is the mayor of Paris?", + "keywords": "mayor of Paris" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Paris dbo:mayor ?uri }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Anne_Hidalgo" + } + } + ] + } + } + ], + "entities": [ + { "URI": "http://dbpedia.org/resource/Paris", "surface form": "Paris" } + ], + "relations": [ + { "URI": "http://dbpedia.org/ontology/mayor", "surface form": "mayor" } + ] + }, + { + "id": "266", + "answertype": "boolean", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Did Arnold Schwarzenegger attend a university?", + "keywords": "Arnold Schwarzenegger, attend, university" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> ASK WHERE { res:Arnold_Schwarzenegger dbo:almaMater ?x . ?x rdf:type dbo:University }" + }, + "answers": [{ "head": {}, "results": {}, "boolean": true }], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Arnold_Schwarzenegger", + "surface form": "Arnold Schwarzenegger" + } + ], + "relations": [ + { "URI": "http://dbpedia.org/ontology/show", "surface form": "attend" }, + { + "URI": "http://dbpedia.org/ontology/university", + "surface form": "university" + } + ] + }, + { + "id": "267", + "answertype": "boolean", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Is James Bond married?", + "keywords": "James Bond, married" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> ASK WHERE { res:James_Bond dbo:spouse ?uri }" + }, + "answers": [{ "head": {}, "results": {}, "boolean": false }], + "entities": [ + { + "URI": "http://dbpedia.org/resource/James_Bond", + "surface form": "James Bond" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/spouse", + "surface form": "married" + } + ] + }, + { + "id": "268", + "answertype": "boolean", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Does the Isar flow into a lake?", + "keywords": "Isar, flow, lake" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> ASK WHERE { ?x dbo:inflow res:Isar ; rdf:type dbo:Lake }" + }, + "answers": [{ "head": {}, "results": {}, "boolean": true }], + "entities": [ + { "URI": "http://dbpedia.org/resource/Isar", "surface form": "Isar" } + ], + "relations": [ + { "URI": "http://dbpedia.org/property/float", "surface form": "flow" }, + { "URI": "http://dbpedia.org/ontology/lake", "surface form": "lake" } + ] + }, + { + "id": "269", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Which Indian company has the most employees?", + "keywords": "Indian company, the most employees" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Company ; dbo:location res:India ; dbo:numberOfEmployees ?n } ORDER BY DESC(?n) OFFSET 0 LIMIT 1" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Railway_Board" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/India", + "surface form": "Indian company" + }, + { + "URI": "http://dbpedia.org/resource/SPIC_(Indian_company)", + "surface form": "Indian company" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/numberOfEmployees", + "surface form": "employees" + }, + { "URI": "http://dbpedia.org/ontology/country", "surface form": "" } + ] + }, + { + "id": "270", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Who was John F. Kennedy's vice president?", + "keywords": "John F. Kennedy, vice president" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:John_F._Kennedy dbo:vicePresident ?uri }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lyndon_B._Johnson" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/John_F._Kennedy", + "surface form": "John F. Kennedy" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/vicePresident", + "surface form": "vice president" + } + ] + }, + { + "id": "271", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Which country does the creator of Miffy come from?", + "keywords": "Miffy, creator, country" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Miffy dbo:creator ?x . ?x dbo:nationality ?uri }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Netherlands" + } + } + ] + } + } + ], + "entities": [ + { "URI": "http://dbpedia.org/resource/Miffy", "surface form": "Miffy" } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/country", + "surface form": "country" + }, + { + "URI": "http://dbpedia.org/ontology/creator", + "surface form": "creator" + } + ] + }, + { + "id": "273", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "In what city is the Heineken brewery?", + "keywords": "city, Heineken brewery" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Heineken dbo:manufacturer ?x . ?x dbo:locationCity ?uri }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Amsterdam" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Rosmalen_Grass_Court_Championships", + "surface form": "Heineken brewery" + } + ], + "relations": [ + { "URI": "http://dbpedia.org/ontology/city", "surface form": "city" } + ] + }, + { + "id": "274", + "answertype": "boolean", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Is Barack Obama a democrat?", + "keywords": "Barack Obama, democrat" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> ASK WHERE { res:Barack_Obama dbo:party <http://dbpedia.org/resource/Democratic_Party_(United_States)> }" + }, + "answers": [{ "head": {}, "results": {}, "boolean": true }], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Barack_Obama", + "surface form": "Barack Obama" + } + ], + "relations": [] + }, + { + "id": "275", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "List the children of Margaret Thatcher.", + "keywords": "Margaret Thatcher, child" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Margaret_Thatcher dbo:child ?uri }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Carol_Thatcher" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mark_Thatcher" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Margaret_Thatcher", + "surface form": "Margaret Thatcher" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/child", + "surface form": "children" + } + ] + }, + { + "id": "276", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "From which region is the Melon de Bourgogne?", + "keywords": "region, Melon de Bourgogne" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Melon_de_Bourgogne dbo:wineRegion ?uri }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Southern_Ontario" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Loire_Valley_(wine)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Oregon" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Washington_(U.S._state)" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Melon_de_Bourgogne", + "surface form": "Melon de Bourgogne" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/region", + "surface form": "region" + } + ] + }, + { + "id": "278", + "answertype": "number", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "how big is the total area of North Rhine- Westphalia?", + "keywords": "Nord Rhine Westphalia" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?tarea WHERE { dbr:North_Rhine-Westphalia dbo:areaTotal ?tarea }" + }, + "answers": [ + { + "head": { "vars": ["c"] }, + "results": { + "bindings": [{ "c": { "type": "literal", "value": "3.40841e+10" } }] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/North_Rhine-Westphalia", + "surface form": "North Rhine- Westphalia" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/areaTotal", + "surface form": "total area" + } + ] + }, + { + "id": "279", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Which city has the most inhabitants?", + "keywords": "city, the most inhabitants" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:City ; dbo:populationTotal ?pop } ORDER BY DESC(?pop) OFFSET 0 LIMIT 1" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Carei" + } + } + ] + } + } + ], + "entities": [], + "relations": [ + { "URI": "http://dbpedia.org/ontology/city", "surface form": "city" }, + { + "URI": "http://dbpedia.org/ontology/country", + "surface form": "inhabitants" + } + ] + }, + { + "id": "280", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "What is Donald Trump's main business?", + "keywords": "Donald Trump's, business" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?owner WHERE { ?owner dbo:owner dbr:Donald_Trump }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Trump_Hotel_Las_Vegas" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Trump_World_Tower" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Trump_Building" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Trump_Organization" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Donald_Trump", + "surface form": "Donald Trump" + }, + { + "URI": "http://dbpedia.org/resource/The_Main_Monkey_Business", + "surface form": " main business" + } + ], + "relations": [] + }, + { + "id": "281", + "answertype": "date", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "When will start the final match of the football world cup 2018?", + "keywords": "football world cup 2018" + } + ], + "query": { + "sparql": "PREFIX dbr: <http://dbpedia.org/resource/> PREFIX dbp: <http://dbpedia.org/property/> SELECT ?Date WHERE { dbr:2018_FIFA_World_Cup dbp:date ?Date } ORDER BY DESC(?Date) LIMIT 1" + }, + "answers": [ + { + "head": { "vars": ["date"] }, + "results": { + "bindings": [ + { "date": { "type": "literal", "value": "2018-07-15" } } + ] + } + } + ], + "entities": [], + "relations": [ + { "URI": "http://dbpedia.org/ontology/head", "surface form": "start" }, + { + "URI": "http://dbpedia.org/ontology/rival", + "surface form": "final match" + }, + { + "URI": "http://dbpedia.org/ontology/trainer", + "surface form": "football" + }, + { + "URI": "http://dbpedia.org/ontology/title", + "surface form": "cup 2018" + } + ] + }, + { + "id": "282", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Which films did Stanley Kubrick direct?", + "keywords": "film, Stanley Kubrick, direct" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { ?uri dbo:director res:Stanley_Kubrick }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Day_of_the_Fight" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Barry_Lyndon" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/A_Clockwork_Orange_(film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/2001:_A_Space_Odyssey_(film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Shining_(film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Fear_and_Desire" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Killing_(film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Paths_of_Glory" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Flying_Padre" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Eyes_Wide_Shut" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Full_Metal_Jacket" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Killer's_Kiss" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dr._Strangelove" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Seafarers" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Spartacus_(film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lolita_(1962_film)" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Stanley_Kubrick", + "surface form": "Stanley Kubrick direct" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/numberOfFilms", + "surface form": "films" + } + ] + }, + { + "id": "283", + "answertype": "number", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "how much is the population Iraq?", + "keywords": "Iraq" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?pIraq WHERE { dbr:Iraq dbo:populationTotal ?pIraq }" + }, + "answers": [ + { + "head": { "vars": ["c"] }, + "results": { + "bindings": [{ "c": { "type": "literal", "value": "37056169" } }] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Population", + "surface form": "population Iraq" + } + ], + "relations": [] + }, + { + "id": "284", + "answertype": "number", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "How many inhabitants does the largest city in Canada have?", + "keywords": "inhabitants, largest city, Canada" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?num WHERE { res:Canada dbo:largestCity ?city . ?city dbo:populationTotal ?num }" + }, + "answers": [ + { + "head": { "vars": ["c"] }, + "results": { + "bindings": [{ "c": { "type": "literal", "value": "2615060" } }] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Canada", + "surface form": "Canada" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/property/country", + "surface form": "inhabitants" + }, + { + "URI": "http://dbpedia.org/ontology/largestCity", + "surface form": "largest city" + } + ] + }, + { + "id": "285", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Who is the mayor of the capital of French Polynesia?", + "keywords": "mayor, capital, French Polynesia" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:French_Polynesia dbo:capital ?x . ?x dbo:mayor ?uri }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Michel_Buillard" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/France", + "surface form": "French Polynesia" + }, + { + "URI": "http://dbpedia.org/resource/French_Polynesia", + "surface form": "French Polynesia" + } + ], + "relations": [ + { "URI": "http://dbpedia.org/ontology/mayor", "surface form": "mayor" }, + { + "URI": "http://dbpedia.org/ontology/capital", + "surface form": "capital" + }, + { "URI": "http://dbpedia.org/ontology/country", "surface form": "" } + ] + }, + { + "id": "286", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Give me all actors starring in movies directed by William Shatner.", + "keywords": "actor, starring, movie, direct, William Shatner" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { ?x dbo:director res:William_Shatner ; dbo:starring ?uri }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tom_Towles" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Brenda_Bakke" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/William_Shatner" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/George_Takei" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/John_Prosky" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Duane_Whitaker" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dick_Van_Patten" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Amy_Acker" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Leonard_Nimoy" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rickey_Medlocke" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Walter_Koenig" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/DeForest_Kelley" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dan_Martin_(actor)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chuck_Williams_(actor)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/J.T._Colosa" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/James_Doohan" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dan_Gauthier" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nichelle_Nichols" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/William_Shatner", + "surface form": "William Shatner" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/artist", + "surface form": "actors" + }, + { + "URI": "http://dbpedia.org/ontology/starring", + "surface form": "starring" + }, + { "URI": "http://dbpedia.org/ontology/film", "surface form": "movies" }, + { + "URI": "http://dbpedia.org/property/directedby", + "surface form": "directed" + } + ] + }, + { + "id": "287", + "answertype": "number", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "How tall is Claudia Schiffer?", + "keywords": "Claudia Schiffer, tall" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?height WHERE { res:Claudia_Schiffer dbo:height ?height }" + }, + "answers": [ + { + "head": { "vars": ["c"] }, + "results": { + "bindings": [{ "c": { "type": "literal", "value": "1.81" } }] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Claudia_Schiffer", + "surface form": "Claudia Schiffer" + } + ], + "relations": [ + { "URI": "http://dbpedia.org/ontology/height", "surface form": "tall" } + ] + }, + { + "id": "288", + "answertype": "number", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "how much is the population densty rank of germany?", + "keywords": "Germany" + } + ], + "query": { + "sparql": "PREFIX dbr: <http://dbpedia.org/resource/> PREFIX dbp: <http://dbpedia.org/property/> SELECT ?rank WHERE { dbr:Germany dbp:populationDensityRank ?rank }" + }, + "answers": [ + { + "head": { "vars": ["c"] }, + "results": { + "bindings": [{ "c": { "type": "literal", "value": "58" } }] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/RANK", + "surface form": "population densty rank" + }, + { + "URI": "http://dbpedia.org/resource/Germany", + "surface form": "germany" + } + ], + "relations": [] + }, + { + "id": "289", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "What is the highest mountain in Italy?", + "keywords": "highest, mountain, Italy" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Mountain ; dbo:locatedInArea res:Italy ; dbo:elevation ?num } ORDER BY DESC(?num) OFFSET 0 LIMIT 1" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mont_Blanc" + } + } + ] + } + } + ], + "entities": [ + { "URI": "http://dbpedia.org/resource/Italy", "surface form": "Italy" } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/elevation", + "surface form": "highest mountain" + } + ] + }, + { + "id": "290", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "List all games by GMT.", + "keywords": "game, GMT" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { ?uri dbo:publisher res:GMT_Games }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Washington's_War" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Fields_of_Fire_(game)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Commands_&_Colors:_Ancients" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/A_World_At_War" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sword_of_Rome" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Twilight_Struggle" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Paths_of_Glory_(board_game)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chandragupta_(board_game)" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Generic_Mapping_Tools", + "surface form": "GMT" + } + ], + "relations": [ + { "URI": "http://dbpedia.org/ontology/games", "surface form": "games" } + ] + }, + { + "id": "291", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "What is the official language of Suriname?", + "keywords": "Suriname, official language" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Suriname dbo:officialLanguage ?uri }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dutch_language" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Suriname", + "surface form": "Suriname" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/officialLanguage", + "surface form": "official language" + } + ] + }, + { + "id": "292", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "In which city did Nikos Kazantzakis die?", + "keywords": "city, Nikos Kazantzakis, die" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { res:Nikos_Kazantzakis dbo:deathPlace ?uri . ?uri rdf:type dbo:Town }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Freiburg_im_Breisgau" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Nikos_Kazantzakis", + "surface form": "Nikos Kazantzakis" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/deathPlace", + "surface form": "die" + } + ] + }, + { + "id": "293", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "What is in a chocolate chip cookie?", + "keywords": "ingredients, chocolate chip cookie" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Chocolate_chip_cookie dbo:ingredient ?uri }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chocolate_chip" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Margarine" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Butter" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Egg_(food)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Baking_soda" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Flour" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Salt" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Brown_sugar" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vanilla" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sugar" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Chocolate_chip_cookie", + "surface form": "chocolate chip cookie" + } + ], + "relations": [] + }, + { + "id": "294", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "In which country is the Limerick Lake?", + "keywords": "Limerick Lake, country" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Limerick_Lake dbo:country ?uri }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Canada" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Limerick_Lake", + "surface form": "Limerick Lake" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/country", + "surface form": "country" + } + ] + }, + { + "id": "295", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Give me all video games published by Mean Hamster Software.", + "keywords": "video game, publish, Mean Hamster Software" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:VideoGame ; dbo:publisher res:Mean_Hamster_Software }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Crossbow_(video_game)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Riven" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Mean_Hamster_Software", + "surface form": "Mean Hamster Software" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/film", + "surface form": "video games" + }, + { + "URI": "http://dbpedia.org/ontology/publisher", + "surface form": "published" + } + ] + }, + { + "id": "296", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Give me all members of Prodigy.", + "keywords": "member, Prodigy" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:The_Prodigy dbo:bandMember ?uri }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Maxim_(musician)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Liam_Howlett" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Keith_Flint" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/The_Prodigy", + "surface form": "Prodigy" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/bandMember", + "surface form": "members" + } + ] + }, + { + "id": "297", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "In which time zone is Rome?", + "keywords": "time zone, Rome" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Rome dbo:timeZone ?uri }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Central_European_Time" + } + } + ] + } + } + ], + "entities": [ + { "URI": "http://dbpedia.org/resource/Rome", "surface form": "Rome" } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/timeZone", + "surface form": "time zone" + } + ] + }, + { + "id": "298", + "answertype": "number", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "How high is the lighthouse in Colombo?", + "keywords": "high, lighthouse in Colombo" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?num WHERE { res:Colombo_Lighthouse dbo:height ?num }" + }, + "answers": [ + { + "head": { "vars": ["c"] }, + "results": { + "bindings": [{ "c": { "type": "literal", "value": "15.0" } }] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Colombo_Lighthouse", + "surface form": "Lighthouse in Colombo" + } + ], + "relations": [ + { "URI": "http://dbpedia.org/ontology/height", "surface form": "high" } + ] + }, + { + "id": "299", + "answertype": "string", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Who are the writers of the Wall album of Pink Floyd?", + "keywords": "the wall, pink floyd" + } + ], + "query": { + "sparql": "PREFIX dbr: <http://dbpedia.org/resource/> PREFIX dbp: <http://dbpedia.org/property/> SELECT ?writers WHERE { dbr:The_Wall dbp:writer ?writers }" + }, + "answers": [ + { + "head": { "vars": ["string"] }, + "results": { + "bindings": [ + { "string": { "type": "literal", "value": "Gilmour," } }, + { "string": { "type": "literal", "value": "Gilmour" } }, + { "string": { "type": "literal", "value": "Waters," } }, + { "string": { "type": "literal", "value": "Waters, Ezrin" } }, + { "string": { "type": "literal", "value": "Waters" } } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Pink_Floyd_\u2013_The_Wall", + "surface form": "Wall album of Pink Floyd" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/writer", + "surface form": "writers" + } + ] + }, + { + "id": "300", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Who is the mayor of Rotterdam?", + "keywords": "mayor, Rotterdam" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Rotterdam dbo:leaderName ?uri }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ahmed_Aboutaleb" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Rotterdam", + "surface form": "Rotterdam" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/leaderName", + "surface form": "mayor" + } + ] + }, + { + "id": "301", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "What is the largest city in Australia?", + "keywords": "Australia, largest city" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Australia dbo:largestCity ?uri }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sydney" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Australia", + "surface form": "Australia" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/largestCity", + "surface form": "largest city" + } + ] + }, + { + "id": "302", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Who was married to president Chirac?", + "keywords": "married to, president Chirac" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Jacques_Chirac dbo:spouse ?uri }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bernadette_Chirac" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Jacques_Chirac", + "surface form": "president Chirac" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/spouse", + "surface form": "married" + } + ] + }, + { + "id": "303", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "What form of government is found in South Africa?", + "keywords": "form, government, South Africa" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?uri WHERE { dbr:South_Africa dbo:governmentType ?uri }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Unitary_state" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/South_Africa", + "surface form": "South Africa" + } + ], + "relations": [ + { "URI": "http://dbpedia.org/ontology/type", "surface form": "form" }, + { + "URI": "http://dbpedia.org/ontology/government", + "surface form": "government" + } + ] + }, + { + "id": "304", + "answertype": "number", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "How high is the Yokohama Marine Tower?", + "keywords": "height, Yokohama Marine Tower" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?num WHERE { res:Yokohama_Marine_Tower dbo:height ?num }" + }, + "answers": [ + { + "head": { "vars": ["c"] }, + "results": { + "bindings": [{ "c": { "type": "literal", "value": "106.07" } }] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Yokohama_Marine_Tower", + "surface form": "Yokohama Marine Tower" + } + ], + "relations": [ + { "URI": "http://dbpedia.org/ontology/height", "surface form": "high" } + ] + }, + { + "id": "305", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Which holidays are celebrated around the world? test2", + "keywords": "holidays, celebrated, world" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Holiday }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Sorry_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Independence_Day_(Grenada)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Reed_Arts_Week" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/En_prison" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Day_to_Praise" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mbaba_belo_selambar" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Crime_Victims'_Rights_Week" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Epulum_Jovis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Thinla_(month)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gurpurb" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Twelfth_Night_(holiday)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Khordad" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/White_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Aban_(month)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Public_holidays_in_Haiti" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bundle_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Harh" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/International_Students'_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Independence_Day_(Israel)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Fat_Thursday" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kanamara_Matsuri" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kumquat_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lent" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pakistan_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sovereignty_Day_(Slovenia)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Konsertti_Tampereella" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/International_Pixel-Stained_Technopeasant_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Family_Day_(Canada)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Peter_and_the_Magic_Egg" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Line-crossing_ceremony" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sussex_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Independence_Day_(Belarus)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/\u010cung\u0101x\u030c" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Subway_party" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ugadi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Twelfth" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Burns_supper" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/World_Cancer_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Martyred_Intellectuals_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lakshmi_Puja" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Panchayati_Raj_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rottela_Panduga" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Saint_George's_Day_in_England" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bara_Din" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/European_Day_of_Remembrance_for_Victims_of_Stalinism_and_Nazism" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Twelve_Days_of_Christmas" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ianuarius" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Falles" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Parintins_Folklore_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Mobility_Awareness_Month" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bathukamma" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Harvest_festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Maritime_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chaula_(month)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Remembrance_days_in_Slovakia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/St_John's_Day_(Estonia)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Yanla_(month)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Panquetzaliztli" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Frimaire" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Reclaiming_Our_Heritage" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Cancer_Survivors_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rotuma_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Statehood_Day_(Croatia)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Alexandrian_Rite" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/International_Book_Year" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Commercium" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Willkakuti" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Green_week" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Shemini_Atzeret" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tisha_B'Av" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rosh_Hashanah" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sechsel\u00e4uten" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Texas_Independence_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Teeyan" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Super_Bowl_Sunday" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pok\u00e9mon:_Tenth_Anniversary" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mahavir_Jayanti" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ashwin_(Nepali_calendar)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pan_American_Aviation_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/World_Animal_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Labor_Day_Carnival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Minor_American_Revolution_holidays" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kamada_Ekadashi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Constitution_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Reunification_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Week_anniversary_of_Trujillo_Municipality" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vat_Purnima" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Global_Love_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kason" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Golu" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Drive_Electric_Week" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Birth_of_Bah\u00e1'u'll\u00e1h" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Maryland_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Principal_Holy_Day_(Anglicanism)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Eucharist_in_the_Catholic_Church" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Shraavana" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Prince_K\u016bhi\u014d_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Library_Week" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cuti_bersama" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ludi_Piscatorii" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Marathwada_Liberation_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Presentation_of_Mary" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Haitian_Heritage_Month" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hanuman_Jayanti" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Buhe" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Foundation_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kwanzaa" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pchum_Ben" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cassinga_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pooram" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/World_Chocolate_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/West_Country_Carnival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Godaan_Express" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gion_Matsuri" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/P\u00f3voa_de_Varzim_Holiday" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mohani" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Newark_Days" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Madison_Pride_and_MAGIC_Picnic" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dossabhoy_Muncherji_Raja" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/World_Toilet_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chhapra_Express" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Midsummer_in_New_York_City" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Day_of_Conception" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Walpurgis_Night" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kartik_(Nepali_calendar)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gasparilla_Pirate_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Honeymoon" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/International_Day_of_Non-Violence" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Independence_Day_(Bosnia_and_Herzegovina)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ratha_Saptami" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Anti-Fascist_Struggle_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/PUP_Centennial_Year" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rajab" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tartan_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Neptunalia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/All_Saints'_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Niv\u00f4se" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/World_Health_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Minden_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Liberation_Day_of_Korea" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/June_10th_Movement" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/10_Kislev" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Punctuation_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Recreation_Day_holiday" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Heritage_Open_Days" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nakba_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Zombie_Bike_Ride" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/140th_Year_Anniversary_Celebration_of_the_Emancipation_Proclamation" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Oxfordshire_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nabanna" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Flag_Day_(United_Arab_Emirates)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Oktoberfest_\u2013_La_Crosse,_Wisconsin" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Carnivals_of_Iztapalapa" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Veneralia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sweetest_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Heritage_Day_(South_Africa)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/World_Oral_Health_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Festa_Junina" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Silla_(month)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Yald\u0101_Night" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Auckland_Anniversary_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hueymiccaihuitl" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/\u015amigus-Dyngus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Work_and_Family_Month" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tibb's_Eve" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Day_of_the_German-speaking_Community" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Koningsdag" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Arba'een" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Life_is_a_Big_Holiday_for_Us" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Liberation_Day_(Lebanon)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/\u01e6wayay" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Etzalcualiztli" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Native_American_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Commemoration_(Anglicanism)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mercedonius" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Religious_Freedom_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Je\u00fbne_genevois" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Presentation_of_Jesus_at_the_Temple" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vaccination_Week_In_The_Americas" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lee\u2013Jackson\u2013King_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Memorial_Day_(South_Korea)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Flor\u00e9al" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/1907_in_New_Zealand" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Juneteenth" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Songkran" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Midsummer" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Reich_Harvest_Thanksgiving_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bounty_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hybristica" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tir_(month)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sadar_(festival)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Khrop_khru" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hobo_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Oregon_Bach_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hera_Panchami" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Candlemas" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Georgia_Train_and_Equip_Program" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Day_of_Reconciliation" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Primrose_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tozoztontli" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Public_holidays_in_the_United_Kingdom" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Intersex_Day_of_Remembrance" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sai\u014d_Matsuri" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Unity_Day_(Yemen)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Muharram" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Carmentalia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kandali_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sultan_Yazidis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chaitra_(Nepali_calendar)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Administrative_Professionals'_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Evelio_Javier_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Falgun" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Heroes'_Day_(Kenya)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Evacuation_Day_(New_York)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Limelight_Awards" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Republic_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kwahu_Easter" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Saitopolemos" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/World_Day_to_Combat_Desertification_and_Drought" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Italian_unification" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Aboriginal_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kaula_(month)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/World_Islam_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/World_Book_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Public_Lands_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rang_Panchami" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ludi_Romani" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kumauni_Holi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Initiation" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gelbis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Beverley_Folk_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nativity_of_St_John_the_Baptist" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Feast_of_Our_Lady_of_the_Hens" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Teotleco" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/International_Nurses_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/1999_in_Malaysia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Icelandic_National_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kamehameha_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kartik_Poornima" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pohela_(month)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Party_Foundation_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Baccalaureate_service" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Thevar_Jayanthi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Oak_Apple_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Amordadegan_festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ferragosto" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/1991_in_Malaysia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/1995_in_Malaysia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Memorial_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hody_(Moravia)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Philadelphia_Polish_American_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sajibu_nongma_panba" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/World_Asthma_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rashtriya_Ekta_Diwas" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/International_Museum_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mercuralia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Go_Skateboarding_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/International_Year_of_Biodiversity" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Emperor's_Birthday" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Battle_of_Saragarhi__Day__1" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hinamatsuri" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Paper_Airplane_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Public_holidays_in_Uruguay" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Zamalek_SC_Centennial" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ickey_Shuffle" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tihar_(festival)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/World_Press_Freedom_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Amalaka_Ekadashi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ganesh_Jayanti" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Valla_Sadhya" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Seward's_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Black_History_Month" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/International_Volunteer_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Phool_Walon_Ki_Sair" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dinamulag_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dhanteras" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Fiestas_Patrias_(Peru)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Quds_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Asexual_Awareness_Week" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/World_Day_for_Cultural_Diversity_for_Dialogue_and_Development" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Memorial_Day_of_the_Exiles_and_Foibe" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Darwin_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ohi_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Public_holidays_in_Paraguay" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ratcatcher's_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Zaffa" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Coming_of_Age_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/NY_Green_Fest" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Australian_Citizenship_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Christmas_Sunday" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sangkhalok_ceramic_ware" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Cat_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Independence_Day_(Bahrain)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Victory_Day_over_Nazism_in_World_War_II" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Singles'_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/WAY_79" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Christmas_and_holiday_season" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Constitution_Day_(Ukraine)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Royal_Geelong_Show" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Charro_Days" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Translation_of_the_Relics_of_Saint_Nicholas_from_Myra_to_Bari" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ayudha_Puja" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Collar_day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ramadan_(calendar_month)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rabi'_al-awwal" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Handsel_Monday" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Language_Movement_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mangsir" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Entrance_(liturgical)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Federal_holiday" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Higan" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jefferson's_Birthday" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Antigua_Carnival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rito_della_Nivola" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nevada_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Leif_Erikson_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Day_of_the_Sun" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jana_Baha_Dyah_Jatra_(chariot_festival)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/LGBT_History_Month" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Khet_partug" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Feast_of_the_Immaculate_Conception" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/California_Admission_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Courir_de_Mardi_Gras" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Feast_of_Lanterns" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mehr_(month)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hallmark_holiday" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Qatar_National_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Olivia_Spencer_Bower_award" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tuli_(rite)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/World_Water_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Michigan_Technological_University's_Winter_Carnival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Awukudae_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/International_Day_of_Innocent_Children_Victims_of_Aggression" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Patriot_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Health_and_Sports_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Duanwu_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pi_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Inthakin" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Onam" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Child_Abuse_Prevention_Month" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Unification_Day_(Bulgaria)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Day_of_Remembrance_of_the_Victims_of_Political_Repressions" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/12-13_Tammuz" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hakata_Gion_Yamakasa" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Fast_of_Nineveh" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chrysotriklinos" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Day_(Cameroon)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Public_holidays_in_Vietnam" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Residential_Drug_Abuse_Program" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/May_3rd_Constitution_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gandhi_Jayanti" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lesser_Festival_(Anglicanism)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/World_Communion_Sunday" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Karthikai_Deepam" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Julotta" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vent\u00f4se" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Light's_Golden_Jubilee" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/International_Mother_Language_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Fiesta_Nacional_de_Espa\u00f1a" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Thanksgiving_(Canada)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Motherhood_and_Beauty_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/International_Sweater_Vestival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Science_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Georgia_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Meshir" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/F\u00eate_de_la_Musique" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Sanitation_Day_(Ghana)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/L\u012bnd\u0259i" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sandugo_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Festa_della_Repubblica" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Client's_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Festival_Nacional_de_la_Quenepa" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/High-level_Political_Forum_on_Sustainable_Development" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gargee'an" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Festa_da_Uva" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Saya_(folklore)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Umoja_Karamu" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nunavut_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Samasrayana" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/State_Patty's_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vaikuntha_Chaturdashi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Small_Business_Week" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Shavuot" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Republic_Day_(Niger)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Philippine_Debut" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/International_Holocaust_Remembrance_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/First_National_Government" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pre\u0161eren_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/International_Polar_Bear_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Mexican_Rite" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Corndog_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Orange_Blossom_Carnival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Heroes_Day_(Indonesia)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Coming_Out_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Earth_Day_Sunday" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Freedom_Day_(South_Africa)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cheese_Days" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Tap_Dance_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/World_Hijab_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Miyamairi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Samiljeol" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kanya_Puja" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Festival_of_Lights_(Hawaii)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Helsinki-p\u00e4iv\u00e4" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hanukkah" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Oregon_Centennial" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/International_Tiger_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cow_Harbor_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/World_Red_Cross_and_Red_Crescent_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Hugging_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Autism_Sunday" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Memorial_of_the_Holy_Guardian_Angels" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/World_Scout_Collectors_Meeting" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chinese_New_Year" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Philadelphia_Aurora" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Elgar_Birthplace_Museum" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Machad_Mamangam" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Baby_jumping" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Azores_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Angam_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Columbus_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Coconut_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/UnFreedom_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Festivals_of_P\u00f3voa_de_Varzim" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ashadha" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Holidays_for_Sale" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mid-Pentecost" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Baranger_Studios" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/UN_Russian_Language_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Acid_erosion" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/White_Sunday" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pompa_circensis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/LGBTI_Health_Summit" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/World_Freedom_Day_(United_States)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Apple_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Presidents'_Day_(Botswana)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Opposite_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/International_Anti-Corruption_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Russia_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/World_Compassion_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dhu_al-Qi'dah" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Davao_City_Torotot_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Labor_Thanksgiving_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sam_Collins_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Wray_(month)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/T\u1ebft" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Brumaire" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Bourbon_Heritage_Month" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Yipao" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Independence_Day_of_Republic_of_Moldova" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Friendship_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bal_Diwas" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Seaforth,_Queensland" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/World_Population_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Haitian_Carnival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/In_town,_without_my_car!" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/World_Tuberculosis_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Intersex_Awareness_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Masonic_funerals" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/March_1st_Movement" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sinulog" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/International_Dance_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/International_Translation_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Los_Angeles_Tofu_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Trafalgar_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hari_Merdeka" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Women's_Equality_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Day_of_the_Armed_Forces_of_Azerbaijan" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ballarat_Show" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Evacuation_Day_(Syria)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Parents'_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Magh_(Bengali_calendar)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Volkstrauertag" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Illuminated_procession" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jyeshtha_(month)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/International_Missing_Children's_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Le_Pays_de_la_Sagouine" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Snow_Day/Holiday_Road" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/United_Nations'_International_Day_of_Persons_with_Disabilities" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tirumala_Shanivaralu" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Week_of_Prayer_for_Christian_Unity" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/K\u014dreisai" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Independence_Day_(Djibouti)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Thai_Pongal" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Catandungan_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/African-American_Music_Appreciation_Month" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Victory_Day_(9_May)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Armenian_Genocide_Remembrance_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Public_holidays_in_Guam" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lammas" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Western_Australia_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sunday_within_the_Octave_of_Christmas" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Unity_Day_(United_States)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/September" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Senegal_Music_Awards" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/H\u014dnen_Matsuri" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Defender_of_the_Fatherland_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Boukout" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bon_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Manisola" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Day_(United_Arab_Emirates)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Sanctity_of_Human_Life_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Premio_Lo_Nuestro_2004" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Premio_Lo_Nuestro_2003" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Timkat" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mardi_Gras_in_Mobile,_Alabama" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/International_Day_Against_Homophobia,_Transphobia_and_Biphobia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Odunde_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/International_Day_of_Radiology" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pana_Sankranti" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tycho_Brahe_days" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Qixi_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jamhuri_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Public_Gardens_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Independence_Day_(Pakistan)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pelican_Drop" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Subbotnik" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Feast_of_Saints_Peter_and_Paul" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/2004_in_Malaysia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/1993_in_Malaysia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vente_de_Agosto" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Giubiana" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Primitive_Scottish_Rite" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/German-American_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nostalgia_Night" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Canada_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/World_Food_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/\u00deorl\u00e1ksmessa" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nag_Panchami" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/New_Year's_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Arrhephoria" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dano_(Korean_festival)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/International_Day_to_End_Impunity_for_Crimes_Against_Journalists" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Navratri" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Hispanic_Heritage_Month" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sonepur_Cattle_Fair" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Day_of_the_Walloon_Region" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rebild_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Espousals_of_the_Blessed_Virgin_Mary" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lui_Ngai_Ni" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/San_Jacinto_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/American_Business_Women's_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Consualia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Title_36_of_the_United_States_Code" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sombrero_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Liberation_Day_(Italy)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bhadro" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hangul_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tecuilhuitontli" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tawthalin" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Trinity_Arts_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Robert_E._Lee_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hungarian_Opera_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Choitro" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Zatra" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/International_Romani_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mar\u01e7\u016bmay" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Malcolm_X_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mickey's_Magical_Party" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pulaski_Days" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ratification_Day_(United_States)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Fiesta_patronal" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ave_Maria_church" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bhadon" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Guanacaste_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cesar_Chavez_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/World_Marriage_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Public_holidays_in_Hong_Kong" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Newspaper_holiday" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Station_days" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/2017_in_Malaysia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ten_Days_of_Repentance" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chuseok" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lal_Loi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Advent_Sunday" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/La_Vijanera" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tangihanga" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mandi_Shivaratri_Fair" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Isru_chag" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mattu_Pongal" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Atemoztli" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dinagyang" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Defence_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Passover" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cambodian_New_Year" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Persons_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/No_Smoking_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Day_of_the_Flemish_Community" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Guru_Ravidass_Jayanti" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Europe_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Malaysia_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Great_Union_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Highland_2007" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Burmese_Martyrs'_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gawai_Dayak" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Recovery_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/2011_in_Malaysia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Akita_Kant\u014d" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tirgan" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tobata_Gion_Yamagasa_festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Pearl_Harbor_Remembrance_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pasni_(celebration)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Civic_Holiday" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Global_Handwashing_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vijayadashami" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Carnival_of_Madeira" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dey_(month)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sham_el-Nessim" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Defense_Transportation_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pioneer_Day_(Utah)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/2009_in_Malaysia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/HarvestMoon_Music_and_Arts_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/2007_in_Malaysia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gymnopaedia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hathor_(month)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lyndon_Baines_Johnson_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Varuthini_Ekadashi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Day_of_Catalonia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sha'ban" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lemuria_(festival)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Remembrance_Day_of_Journalists_Killed_in_the_Line_of_Duty" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Brazilica_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mid-Sha'ban" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Independence_Day_(Eritrea)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Memorial_Ride" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Feast_of_the_Most_Precious_Blood" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Maghar_(month)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Scandinavian_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Music_of_Ghanaian_Origin" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mid-Autumn_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Celebrate_Your_Name_Week" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kullu_Dussehra" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jhulan_Purnima" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Av" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Australia_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Weatherperson's_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Srabon" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bucyrus_Bratwurst_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Independence_Day_(Cyprus)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Veterans_Day_(South_Korea)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Thout" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sso_(rite)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Wedding_anniversary" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Idaho_Human_Rights_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Republic_Day_(Kazakhstan)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Blessing_(Roman_Catholic_Church)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Magha_Puja" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bataan_Memorial_Death_March" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Federal_Day_of_Thanksgiving,_Repentance_and_Prayer" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Higalaay_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Arctic_Winter_Games" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/2003_in_Malaysia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/St_Joseph's_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_LGBTI_Day_(Nepal)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Republic_Day_(India)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Revolution_and_Solidarity_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Operation_Matateh" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/\u00derett\u00e1ndinn" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Saint_Nicholas_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/UK_Music_Video_Awards" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vaisakh" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Coronation_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Christmas_in_Poland" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mother's_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Traditional_Ambrosian_Rite" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/World_Vegan_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Basant_Kite_Festival_(Punjab)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Diamond_jubilee" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tsagaan_Sar" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Obama_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Germinal_(French_Republican_Calendar)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Feria_de_Artesan\u00edas_de_Ponce" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Medieval_Festival_of_Elx" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Celebrate_Freedom_Week" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/International_Men's_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Boishakh" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/April" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Festa_do_Ros\u00e1rio" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Double_Ninth_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mole_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Armilustrium" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Martyrs'_Day_(Lebanon_and_Syria)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sansculottides" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sh\u00edyu\u00e8" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kislev" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nalukulangara_Pooram" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Foot_washing" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Coast_Guard_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Durga_Puja_in_Odisha" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Feast_of_the_Most_Holy_Redeemer" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Beltane" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Seokjeon_Daeje" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Enkutatash" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Quecholli" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Fastnacht_(Pennsylvania_Dutch)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Allambie_Reception_Centre" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Aliturgical_days" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Memorial_Day_(Newfoundland_and_Labrador)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Bison_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Siblings_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Public_holidays_in_Ethiopia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Autumnal_Equinox_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/World_Storytelling_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Martin_Luther_King_Jr._Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Revolution_Day_(Mexico)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bicentennial" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/JoJo_Maman_B\u00e9b\u00e9" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Defender_of_Ukraine_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/World_Kindness_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Calle_Ocho_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Star_Wars_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bataan_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Liberation_Day_(Hong_Kong)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/World_Malaria_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Landing_of_the_33_Patriots_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sepand\u0101rmazg\u0101n" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Day_of_Revenge" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nemontemi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/School_Day_of_Non-violence_and_Peace" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/UST_Neo-Centennial_Celebration" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/D\u00eda_de_la_Altagracia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/2007_Langerado_Music_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Azar" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hoo_Hoo_Monument" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dearborn_Homecoming_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Non-Fiction_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Cherry_Blossom_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Summer_Festival,_Albania" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Montana_Pride" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/International_No_Diet_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Geography_of_Halloween" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Amerindian_Heritage_Month_(Guyana)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vishu" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Brooklyn-Queens_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Diwali" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Peshwai_Procession" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Concurso_de_Cante_Jondo" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Loving_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Youth_Art_Month" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vijay_Diwas_(India)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Overshoot_(microwave_communication)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Statehood_Day_(Serbia)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/International_Migrants_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kalabukay_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/International_Literacy_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/State_holidays_in_New_Jersey" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Festivus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lughnasadh" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ghost_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/World_Poetry_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/French_Rite" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Victory_day_of_Bangladesh" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/American_Heart_Month" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Finnish_Swedish_Heritage_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Culture_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Peter_and_Fevronia_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/2014_Arctic_Winter_Games" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tu_BiShvat" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/International_Day_of_No_Prostitution" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Parinirvana_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bodhi_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Shayani_Ekadashi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hosay" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Independence_Day_of_Trujillo" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Benque_fiesta" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Global_Information_Governance_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Federal_holidays_in_the_United_States" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Holy_Week_in_Mexico" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/World_Contact_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Soviet_Occupation_Day_(Georgia)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Regifugium" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Makar_Sankranti" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/April_Fools'_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Elul" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Saudi_National_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/\u0141\u00f3d\u017a_Biennale" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Feast_of_Christ_the_Priest" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/International_Francophonie_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Whit_Tuesday" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Sovereignty_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/International_Workers'_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Shakambhari_Purnima" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Constitution_Day_(Denmark)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Unity_Day_(Russia)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Radom_Air_Show" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Toxcatl" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pioneer_Days_(Chico,_California)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/World_AIDS_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/World_Day_for_Audiovisual_Heritage" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Christmas" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ascolia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nabakalebara_2015" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Feasts_of_Jesus_Christ" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Labour_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/All_Souls'_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Islam_Day_(Hawaii)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Meal_Monday" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lord_of_Huaman_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hola_Mohalla" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/2006_in_Malaysia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/D\u00eda_Mundial_de_Ponce" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Weihnachten" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Public_holidays_in_the_Soviet_Union" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Republic_Day_(Philippines)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Limassol_Carnival_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Great_Locomotive_Chase_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Day_of_the_Little_Candles" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/International_Youth_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Name_days_in_Bulgaria" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Celebrate_Bisexuality_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sigd" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Phalguna" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Freedom_to_Marry_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Grand_Review_of_the_Armies" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gustavus_Adolphus_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/8_Days_of_Christmas_(song)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Holy_Week_in_Zamora" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kargil_Vijay_Diwas" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Subaru_Cherry_Blossom_Festival_of_Greater_Philadelphia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Martius_(month)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sedantag" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Works_Art_&_Design_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/January" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Public_holidays_in_Argentina" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Famine_Commemoration_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mandela_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/International_Day_of_United_Nations_Peacekeepers" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Whit_Monday" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Radonitsa" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vesak" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nickanan_Night" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Virginia_Gold_Cup" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dhodha" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Independence_Day_(Somalia)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/International_Day_for_Tolerance" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sacred_Defence_Week" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Motorcade" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/NZ_Rail_150" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Fraternal_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gibraltar_Diamond_Jubilee_Flotilla" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hardware_Freedom_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Autistic_Pride_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sankashti_Chaturthi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Boxing_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Sovereignty_and_Children's_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Samhain" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Holy_Week_in_Popay\u00e1n" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Shrove_Tuesday" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Winter_solstice" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mesori" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Union_Dissolution_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kottiyoor_Vysakha_Mahotsavam" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Flag_Day_(Australia)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Fast_of_Esther" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Independence_Day_(Somaliland)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kali_Puja" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Eagle_Scout_Service_Project" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/DNA_day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Epip" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Feast_of_Saint_George" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vidovdan" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/H\u014donk\u014d" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/\u0110ur\u0111evdan" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sheriff's_March" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Quinquatria" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Saba_Saba_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Anant_Chaturdashi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Education_and_Sharing_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Waterloo_Air_Terminal" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Independence_Day_(Uzbekistan)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Eid_il-Burbara" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chatar_jatra" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Holika_Dahan" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Errol_Barrow_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ambedkar_Jayanti" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Diamond_Jubilee_of_Elizabeth_II" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dundee_Fortnight" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/African_Liberation_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cry_of_Dolores" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bhadra_(month)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Public_holidays_in_Greece" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Adloyada" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Casimir_Pulaski_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Madeira_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Katak" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ratu_Sir_Lala_Sukuna_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Loyalty_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Irreechaa" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Student_Day_(Iran)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tu_B'Av" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Russefeiring" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ask_a_Stupid_Question_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Red_Hand_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Occupation_of_the_Latvian_Republic_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Varalakshmi_Vratam" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Congregation_of_the_Servants_of_the_Paraclete" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Holidays_in_Wales" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Remembrance_Day_(Marshall_Islands)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rafe_Hernandez" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Independence_Day_of_Ukraine" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Aadi_Perukku" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Wasshoi_Hyakuman_Natsumatsuri" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rite_of_Adoption" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mesha_Sankranti" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Guru_Nanak_Gurpurab" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hong_Kong_New_Year_Countdown_Celebrations" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nettlemas" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Unity_Day_(Philadelphia)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dragobete" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/1_Kislev" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rosh_Hashanah_LaBehema" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rama_Navami" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Racial_Justice_Sunday" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vaikuntha_Ekadashi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nanomonestotse" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kiev_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/World_Immunization_Week" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Independence_Day_(Turkmenistan)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Holy_day_of_obligation" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/2007_Claxton_Shield" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Wa\u01f5ay" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Poy_Sang_Long" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Public_holidays_in_the_United_States" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Evacuation_Day_(Massachusetts)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pluvi\u00f4se" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rishi_Panchami" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lincoln_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mokshada_Ekadashi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chithirai_Thiruvizha" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Concord_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Curwood_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Day_of_Songun" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Queene's_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/1994_in_Malaysia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Greeley_Stampede" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/St._Knut's_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Portugal_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Public_holidays_in_Moldova" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/World_Humanitarian_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Heroes'_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/American_Sports_Holiday" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rite_of_Strict_Observance" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Remembrance_of_the_Dead" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Air_Force_Day_(Pakistan)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bahram-e_Pazhdo" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Public_holidays_in_Laos" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cloughtoberfest" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rite_of_Braga" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Feast_of_the_Seven_Fishes" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/T'anta_Raymi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Silicon_Valley_Pride" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/New_Beer's_Eve" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ndadaye_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/International_Chess_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Punjabi_Cinema_Golden_Honours" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Public_holidays_in_Syria" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Assumption_of_Mary" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Indigenous_Peoples'_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ganga_puja" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Helen_Keller_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Silver_Jubilee_of_King_Jigme_Singye_Wangchuck" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Alaska_Folk_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Buergbrennen" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lupercalia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Saint_David's_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Marian_feast_days" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/International_Year_of_Astronomy" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Festa_de_l'Unit\u00e0" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Fiestas_Patrias_(Chile)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/RRI_1" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Opiconsivia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Youth_Day_(India)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/World_Philosophy_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/West_Virginia_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/December_2009_Kurdish_protests_in_Turkey" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/World_Turtle_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/1981_Handsworth_riots" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rabi'_al-thani" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Walk_to_Work_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Aviation_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Quintilis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Salw\u0101\u01e7a" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Day_of_Mourning_(Canadian_observance)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Shahrivar" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Buddha's_Birthday" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gurdwara_Baba_Atal" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Paremhat" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/International_Day_in_Support_of_Victims_of_Torture" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Procrastination_Week" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Calan_Mai" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tobi_(month)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kupala_Night" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Okuyi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Youth_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Victoria_Day_(Scotland)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_event_of_Ghadir_Khumm" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/VEISHEA" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tenth_of_Tevet" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mahamastakabhisheka" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Discovery_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Fast_day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Passover_Seder" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bonalu" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Public_holidays_in_the_Cook_Islands" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Public_holidays_in_Italy" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vaisakhi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Festival_of_Jewish_Culture_in_Warsaw" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mullivaikkal_Remembrance_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vaisakha" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Eid_al-Adha" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Christmas_in_Hawaii" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ganesh_Chaturthi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chilla_(month)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sanja_Matsuri" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bhairava_Ashtami" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/World_Development_Information_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/World_UFO_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Day_of_Sweden" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Floralia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Public_holidays_in_Ukraine" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Democracy_250" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Spencerville_Fair" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Malvinas_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Festa_della_Sensa" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/300th_anniversary_of_the_Romanov_dynasty" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Magh_(Sikh_calendar)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Puthandu" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gangamma_Jatara" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hallett_Cove_School" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Day_of_the_Young_Combatant" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/White_Cane_Safety_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Thingyan" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/St_Kilda_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Independence_Day_(Poland)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Shevat" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sadeh" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Misteri_di_Trapani" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bu\u00df-_und_Bettag" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gaecheonjeol" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Federal_Territory_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/2011\u201312_Austrian_Football_Championship" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hornbill_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Copenhagen_Distortion" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Marmot_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ozmas" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Harvey_Milk_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/August" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Arattupuzha_Pooram" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Novruz_in_Azerbaijan" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chet_(month)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Summer_vacation" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Adar" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lincoln's_Birthday" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Manicktalla_Chaltabagan_Lohapatty_Durga_Puja" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Outfly" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Move_Your_Domain_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mischief_Night" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Public_holidays_in_Canada" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Student_Day_(South_Korea)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Africa_Oy\u00e9" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Yom_Kippur" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Susan_B._Anthony_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/2009_Claxton_Shield" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Losar" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/CPM_S30V_steel" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Oktoberfest_celebrations" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/1997_in_Malaysia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Victory_Day_(United_States)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Oktoberfest" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lopez_Jaena_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Constitution_Day_(United_States)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gumboot_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Christmas_(Don_McLean_album)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/UN_Spanish_Language_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Meskel" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Social_Media_Giving_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/World_Religion_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Cashew_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/2000_in_Malaysia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lebanese_Independence_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Music_Day_in_Azerbaijan" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Racial_Harmony_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Afghan_Independence_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Statehood_Day_(Slovenia)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Festum_Ovorum" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Christmas_(Jaci_Velasquez_album)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Towel_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Christopher_Street_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dancing_procession_of_Echternach" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Shravana_Putrada_Ekadashi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sukkot" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Transfer_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Republic_Day_(Turkey)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pulaski_Day_Parade" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Aesthetica_Short_Film_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bank_holidays_in_India" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Marine_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/\u01e6bargolay" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bird_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jeth" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jewish_American_Heritage_Month" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Adae_Kese_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Von_Steuben_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Trizna" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Japanese_New_Year" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Candidacy" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Buy_Nothing_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Festival_of_Mountain_and_Plain" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Shawwal" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/2010_Arctic_Winter_Games" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dev_Deepawali_(Varanasi)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nisan" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Communion_under_both_kinds" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/\u00c7\u00fck" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Greenery_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Galungan" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Public_Domain_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Good_Governance_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/International_Fetish_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Distaff_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lifetime_reserve_days" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ashvin" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/October" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Seventeenth_of_Tammuz" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ear_Candy_for_the_Headphone_Trippers" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/K\u014denji_Awa_Odori" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/L'Escalade" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tachhala_(month)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Nothing_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Fermentation_Fest" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pausha_Putrada_Ekadashi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Small_Business_Saturday" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nemoralia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Founders_Day_(South_Africa)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Defenders_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Our_Lady_of_Meritxell" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jerusalem_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Purushottam_Maas" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/1913_Sligo_Dock_strike" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Norwegian_Constitution_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bagroiser" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nenmara_Vallanghy_Vela" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tammuz_(Hebrew_month)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Deepothsavam" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dongzhi_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hippika_gymnasia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Women's_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Happiest_Homecoming_on_Earth" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Independence_Day_(Sri_Lanka)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Wagaung" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Giving_Tuesday" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Papal_Concert_to_Commemorate_the_Shoah" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Black_Friday_(shopping)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/World_Radio_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ely_Eel_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vasant_Panchami" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Durga_Ashtami" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Corporate_anniversary" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kansas_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Zamenhof_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Saint_Lucy's_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Commemoration_Day_of_Fallen_Soldiers" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Poh" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/World_Hello_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Indiana_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/International_Day_of_Forests" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cincinnati_Pride" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Intercession_of_the_Theotokos" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/D\u00edas_Patrios_(Guatemala)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gay_Blue_Jeans_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Arbor_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pohela_Boishakh" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Day_of_Arafah" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Saint_John's_Eve" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ottawa_Irish_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kishiwada_Danjiri_Matsuri" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/International_Beer_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Collector_Car_Appreciation_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Klozum" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Yorke_Peninsula_Field_Days" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ickwell_May_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rectified_Scottish_Rite" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kosa_(folklore)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/V\u00e4lkommen_hem_(song)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/T\u0259la" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Public_holiday" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Platinum_jubilee" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/International_Bacon_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Manitoba_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vernal_Equinox_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dhanu" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Public_holidays_in_Tuvalu" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Heroes'_Day_(South_Africa)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jump-up_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cavalcade" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Flag_of_Canada_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pakta" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Leon_Day_(holiday)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Annunciation" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Yom_Hazikaron" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Water_rite" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Frozen_Dead_Guy_Days" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lantern_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Charak_Puja" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Peace_Officers_Memorial_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Waterloo_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_11-day_weekend" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Father's_Day_(United_States)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Totensonntag" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Public_holidays_in_Kiribati" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Fordicidia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tirupati_Ganga_Jatara" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mifflin_Street_Block_Party" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Senshusei_course" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Blacks_and_Whites'_Carnival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/War_Victims_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Armed_Forces_Day_(South_Korea)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Reactions_to_Innocence_of_Muslims" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/San_Francisco_Jazz_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Festival_Folcl\u00f3rico_y_Reinado_Nacional_del_Bambuco" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Golden_Jubilee_of_Elizabeth_II" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dissolution_of_the_Parliament_of_the_United_Kingdom" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tazaungmon" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Wash-up_period" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dragon_Boat_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Melon_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Golden_Week_(Japan)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Maslenitsa" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Independence_Day_(Republic_of_Macedonia)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tableround" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nayrouz" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/American_Family_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Honey_Bee_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Fructidor" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Day_of_Remembrance_(Cambodia)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Data_Privacy_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Koninkrijksdag" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Krishna_Janmashtami" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Yukka_Nu_Hii" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Turkey_shoot" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Loi_Krathong" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Honey_Month" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Independence_Day_(Estonia)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/An_Leabhar_M\u00f2r" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Afro-Colombian_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Armed_Forces_Day_(United_Kingdom)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Korean_New_Year" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/International_Day_of_the_Disappeared" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cassette_Store_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Feast_of_the_Holy_Name_of_Jesus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/World_Art_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Slava" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sawan" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sh\u016bsen-kinenbi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kachhala_(month)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rogation_days" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kashmir_Solidarity_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sirimanothsavam" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kshamavani" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Purim" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mimouna" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Raksha_Bandhan" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Cornbread_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Liberty_Weekend" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sharad_Purnima" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/International_Civil_Aviation_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Yenya" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Good_Friday" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Qhapaq_hucha" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Martyrs'_Day_(Panama)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Torch_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mixed_Race_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sinhalese_New_Year" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Canadian_Centennial" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Feast_of_the_Prayer_of_Christ" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Aberri_Eguna" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sivan" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Prince_Rainier_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ardee_Baroque_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Boxing_Week" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Victory_Day_(Croatia)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/World_Blood_Donor_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/International_Day_of_Solidarity_with_the_Palestinian_People" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Patriots'_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Evolution_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/World_Space_Week" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Commemoration_of_Atat\u00fcrk,_Youth_and_Sports_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Melbourne_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pyatho" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/White_House_Iftar_dinner" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dilla_(month)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Piatra_Ro\u0219ie_Dacian_fortress" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Guy_Fawkes_Night" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cold_Food_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/International_Talk_Like_a_Pirate_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Postal_holiday" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kingston_Canadian_Film_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Culture_Freedom_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Typing_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Feralia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Juicy_Couture" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/St._Stephen's_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Voters'_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Festival_of_Lights_(Lyon)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Golden_jubilee" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mucenici" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/French_Community_Holiday" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Honor_America_Days" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Spanish_Radio_Academy" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Galician_Literature_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Birthday_of_the_Monkey_God" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Candlemas_(disambiguation)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tynwald_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Water_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Qingming_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Flag_Day_in_Mexico" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Makan_bajamba" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jumada_al-Thani" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Festa_della_Santissima_Piet\u00e0" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Azad_Kashmir_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Royal_Hobart_Regatta" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Windsor\u2013Detroit_International_Freedom_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Feriae_Latinae" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mehregan" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Karamu_(feast)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Zmaray" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Puritan_Sabbatarianism" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cinco_de_Mayo" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bhai_Phonta" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Angarki_Sankashti_Chaturthi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ruby_jubilee" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Oddfest" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Magh_(Nepali_calendar)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/International_Transgender_Day_of_Visibility" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Day_of_the_Vow" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Music_For_People_&_Thingamajigs_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Coral_Triangle_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Maithili_New_Year" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/2012_Arctic_Winter_Games" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Binirayan_festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Koliada" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/St_Mark's_Eve" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Education_Day_(India)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Berchtoldstag" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/St_Piran's_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Royal_Toowoomba_Show" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lei_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Passiontide" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Little_Christmas" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/International_Purple_Hijab_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/2005_NCAA_Division_I_Women's_Volleyball_Tournament" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/International_Yoga_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Babinden" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pittsburgh_Folk_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Africa_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/St._Andrew's_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Zh\u0113ngyu\u00e8" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Be\u00f1esmen" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/1934_Centenary_of_Melbourne" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Truman_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cyrus_the_Great_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Puente_(holiday)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Independence_Day_(Myanmar)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/60th_Anniversary_Celebrations_of_Bhumibol_Adulyadej's_Accession" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Independence_Day_(Croatia)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Old_Cows_Days/The_Days_of_the_Brindled_Cow" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jefferson\u2013Jackson_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Muslim_holidays" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Aprilis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Trinidad_and_Tobago_Carnival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Saturnalia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Repatriation_tax_holiday" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Public_holidays_in_Liberia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ice_Cream_for_Breakfast_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Simchat_Torah" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/COPD_Awareness_Month" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jewish_holidays" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Igue_festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cedar_Fest" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/International_Day_of_Charity" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vinalia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Festa_de_S\u00e3o_Jo\u00e3o_do_Porto" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Holy_Week_in_the_Philippines" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Fixed_feast" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Beer_Day_(United_States)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Universal_Day_of_Culture" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mandali_Puja" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Feast_of_the_Circumcision_of_Christ" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/La_Tomatina" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Peerla_Panduga" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Special_Shabbat" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pope_John_Paul_II_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Random_Acts_of_Kindness_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/2007\u201308_S\u00fcper_Lig" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Day_of_the_National_Flag_(Ukraine)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Annual_Customs_of_Dahomey" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Independence_Day_(Botswana)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Airborne_March" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Veterans_Day_(Sweden)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gokarna_Aunsi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Classical_tradition" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Public_holidays_in_the_Republic_of_Ireland" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cheti_Chand" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bachhala_(month)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Indian_Day_(Brazil)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Time_Machine_50th_Anniversary_Tour" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mourning_of_Muharram" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/International_Astrology_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Castile_and_Le\u00f3n_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ratha-Yatra" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gai_Jatra" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nepal_Sambat" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Glasgow_Fair" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/East-Central_Minnesota_Pride" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chaturmas" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Trndez" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/St._Clement's_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tammuz_(Babylonian_calendar)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Februarius" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Moi_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Laylat_al-Qadr" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sitalsasthi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Christmas_lights_in_Medell\u00edn" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Employee_Appreciation_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lath_mar_Holi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Principal_Feast" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sweden_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Paoni" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Democracy_Day_(Nigeria)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Laskiainen" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Phagun_(Nepali_calendar)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Qinhuai_Lantern_Fair" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/New_York_State_government_holidays" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/M\u0103r\u021bi\u0219or" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mainz_carnival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hong_Kong_Special_Administrative_Region_Establishment_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Oprah_Winfrey's_Legends_Ball" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Procession_of_the_Holy_Blood" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Missouri_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Thermidor" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ashura" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Takanakuy" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bus\u00f3j\u00e1r\u00e1s" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Global_Day_of_Action_on_Military_Spending" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Transgender_Day_of_Remembrance" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/International_Day_of_Happiness" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Koiak" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Viking_tour" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/International_Chocolate_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Paynauen_Duyan_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Iqbal_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/First_Night" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/F\u00eate_du_Vodoun" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Police_Day_(Egypt)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Udhauli" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Professional_learning_community" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Independence_Day_(Philippines)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Day_(Vietnam)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lity_(Orthodox_Vespers)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Statehood_Day_(Lithuania)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gunla" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Statehood_Day_(Montenegro)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Maaveerar_Naal" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sumidagawa_Fireworks_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Easter_Friday" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Michaelmas" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Commemoration_of_the_Passion_of_Christ" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/World_Smile_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Arts_First" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Centennial" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jamaica_Independence_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Black_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/1996_in_Malaysia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/1998_in_Malaysia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Victoria_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Abaca_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Garifuna_Settlement_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Roanoke_Arts_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Triduum" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/World_Environment_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Guam_Discovery_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Bouncy" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Za_kri\u017een" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Independence_Day_(Finland)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Warriors'_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Saint-Jean-Baptiste_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sarawak_Self-government_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Airborne_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cancer_Control_Month" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Geologists_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Public_holidays_in_Libya" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Matronalia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Super_Saturday" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chaharshanbe_Suri" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Photo_op" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Limba_noastr\u0103_(public_holiday)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Festival_(Anglicanism)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Woodward_Dream_Cruise" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Weiya" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Arifana" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/World_Freedom_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Godiva_Procession" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Christmas_in_Ireland" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/North_Carolina_Watermelon_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Festival_of_Fantastic_Films" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mujahideen_Victory_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Abacost" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Melbourne_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Daeboreum" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Armistice_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Postcards_(TV_series)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Huey_Tozoztli" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Julebord" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Day_(Singapore)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tlaxochimaco" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Halloween" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Midsumma_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Maha_Shivaratri" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/King's_Feast" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cyber_Monday" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/George's_Day_in_Autumn" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Paopi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Banian,_Iran" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Plough_Sunday" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/America's_Got_Talent_(season_10)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tatiana_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hakata_Dontaku" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tom_Thumb_Gallery" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Pet_Month" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Albanian_Flag_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Thadingyut_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Spring_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kollam_Pooram" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vrishchikam" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dhanu_jatra" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Blessed_Rainy_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Heroes'_Day_(Namibia)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cotswold_Olimpick_Games" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Founder's_Day_(Ghana)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ronald_Reagan_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Komos" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Opening_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Deliberation_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Day_of_Missile_Forces_and_Artillery" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pan_American_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Amphidromia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Carnaval_de_Ponce" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Emergency_Rescuer's_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Record_Store_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/San_Jos\u00e9_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Journal_of_Rudolph_Friederich_Kurz" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mordad" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/420_(cannabis_culture)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gibraltar_National_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chhath" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Old_New_Year" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Flag_Day_(United_States)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Carl_Garner_Federal_Lands_Cleanup_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bastille_Day_military_parade" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Day_of_Neutrality" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kha_b-Nisan" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ugly_Way" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Iunius_(month)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Remembrance_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Martyrs'_Day_(Albania)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Asian_Pacific_American_Heritage_Month" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ponce_Jazz_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/HumanLight" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Good_Neighbor_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Canberra_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Relick_Sunday" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Independence_and_Unity_Day_(Slovenia)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/U.P._Centennial_Year" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rosalia_(festival)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Edge_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/World_Rak\u0131_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nowruz" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Fractio_panis_(liturgy)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Thadingyut" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Guide_Dog_Month" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/World_Osteoporosis_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dahi_Handi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Balipratipada" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Stratford_Shakespeare_Festival_production_history" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/School_holidays_in_the_United_States" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Freedom_Day_(Belarus)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lane_County_Fair" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bibi-Ka-Alam" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bark_Mitzvah" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Royal_Launceston_Show" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Volunteer_Week" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/22_Shvat" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Women_of_Aviation_Worldwide_Week" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sizdah_Be-dar" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Independence_Day_(India)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Alabama_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Independence_Day_(Brazil)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Bird-Feeding_Month" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Royal_Ploughing_Ceremony" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Earth_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Annaprashana" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gudi_Padwa" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Guavaween" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Now_Is_the_Month_of_Maying" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chaiti_Festival,_Rayagada" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Serfs_Emancipation_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ulcinj_Municipality_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Whuppity_Scoorie_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Constitution_Week" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Native_American_Heritage_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Annapolis_Valley_Apple_Blossom_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ulwaluko" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Urs" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bhadra_(Nepali_calendar)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dominican_Rite" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Public_holidays_in_Taiwan" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sekrenyi_festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kharchi_puja" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/May" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Software_Freedom_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Quincea\u00f1era" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Anzac_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vulcan_(mythology)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Potlatch" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Adae_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Sleepy_Head_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Feast_of_the_Swans" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Saint_Catherine's_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bob_Halloran" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Holi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Joishtho" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Payna" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/2004_PDC_World_Darts_Championship" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bradford_Mela" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Menstrual_hygiene_day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Caristia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Suna_Besha" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bourne_Free" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Dairy_Goat_Awareness_Week" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Baishakh" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rizal_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bhogi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lohri" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Supra_(feast)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ho'olaule'a" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Scarlet_Sails_(tradition)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sama_Chakeva" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Boomsday" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Meditrinalia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Day_of_Commemoration" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Deadly_Awards" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Thanksgiving" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Clean_Monday" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Surin_Elephant_Round-up" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Agonalia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Baci" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Yuri's_Night" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tazaungdaing_festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nane_Nane_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Brush_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Setsubun" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ancient_and_Primitive_Rite" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Day_of_Remembrance_for_all_Victims_of_Chemical_Warfare" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Freedom_Day_(Malta)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Alaverdoba" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Public_holidays_in_Vatican_City" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Khamis_el_sakara" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bunga_Dyah_Jatra_(chariot_festival)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ottawa_Fringe_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/International_Day_of_the_Girl_Child" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/World_Day_Against_Child_Labour" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Maand_van_het_Spannende_Boek" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jidai_Matsuri" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Thanksgiving_(United_States)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/World_Egg_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Calends" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cistercian_Rite" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/World_Oceans_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sourest_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Expectation_of_the_Blessed_Virgin_Mary" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rite_of_Memphis-Misraim" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Christmas_Eve" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chaitra" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/International_Day_of_Remembrance_of_the_Victims_of_Slavery_and_the_Transatlantic_Slave_Trade" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Irish-American_Heritage_Month" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Grandparents_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/International_Co-operative_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Statehood_Day_(Hawaii)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Independence_Day_(Algeria)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/H\u00f9ng_Kings'_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cemetery_Sunday" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/2013_in_Malaysia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Liberation_Day_(Jersey)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Slametan" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Heroes_Day_(Saint_Kitts_and_Nevis)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Alaska_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Regifting_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/\u00d3lavs\u00f8ka" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Remembrance_Sunday" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Respect_for_the_Aged_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vimy_Ridge_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Constitution_Day_(India)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Day_of_Reason" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Majuba_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/100th_Anniversary_of_the_Independence_of_Albania" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Peach_Drop_(Atlanta,_Georgia)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Decoration_Day_(Canada)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Datta_Jayanti" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/International_Day_of_Older_Persons" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Land_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/June" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Patriots'_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/November" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/World_Vegetarian_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Catfish_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Royal_Hobart_Show" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Imperial_hunt_of_the_Qing_dynasty" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Freedom_and_Democracy_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Public_holidays_in_Togo" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jivitputrika" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Keipi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mamankam_festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Remembrance_Day_(Sri_Lanka)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Grammar_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Filipino_American_History_Month" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Day_of_Victory_in_the_Great_Fatherland_Liberation_War" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Labour_Day_(Singapore)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Agrahayana" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/United_Nations_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Veterans_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Farvardin" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jumada_al-awwal" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Aldersgate_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Square_Root_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/11_Nissan" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Family_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/October_is_the_Kindest_Month" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Shichi-Go-San" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Foso_(feast)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/System_Administrator_Appreciation_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Savitri_Brata" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ogrohayon" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Constitution_Day_(South_Korea)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Christmas_in_Romania" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sh\u014dwa_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ndut_initiation_rite" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vision_quest" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/West_Syrian_Rite" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Atla_Tadde" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Armed_Forces_Day_(Bangladesh)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Magha_(month)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/International_Day_of_Democracy" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/2001_in_Malaysia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/2005_in_Malaysia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Yoga_Month" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Saint_Patrick's_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sakela" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Boss's_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lee\u2013Jackson_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Shinj\u014d_Matsuri" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/World_Statistics_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Campbell_Live" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jestha_(Nepali_calendar)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/\u00d6skudagur" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Commemoration_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/World_Wildlife_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Panoply_Arts_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Belgian_National_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Baraat" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Darwin_Centennial_Celebration_(1959)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Revolution_Day_(Egypt)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Naraka_Chaturdashi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nine_Emperor_Gods_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/European_Day_of_the_Righteous" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Virgen_de_los_Angeles" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lauderdale_County_Tomato_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Picnic_Day_(Australian_holiday)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Single_rider" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Veterans'_Day_(Netherlands)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Moveable_feast_(observance_practice)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rash_guard" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Feast_of_the_First_Fruits_of_Wine" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Okinawa_Memorial_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Independence_Day_(Niger)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pregnancy_and_Infant_Loss_Remembrance_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Biikebrennen" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Baltic_Freedom_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Confederate_Memorial_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Contraband_Days" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Resistive_touchscreen" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sette_Giugno" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/J\u00f3nsmessa" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Satyanath" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Independence_Day_(Georgia)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Public_holidays_in_Botswana" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Assu" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Folk_Festival_(Australia)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Feast_of_Saint_George_(Palestine)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Friendship_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jacksonville_Jazz_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Saviours'_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Prairial" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/International_Solidarity_Day_of_Azerbaijanis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/College_Scholastic_Ability_Test_(South_Korea)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Day_of_Encouragement" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dashain" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/St._George_Melkite_Catholic_Church" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rhein_in_Flammen" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Children's_Day_(Japan)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Byzantine_Rite" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dree_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Savior_of_the_Apple_Feast_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Victory_in_Europe_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Harriet_Tubman_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Armed_Forces_Day_(Poland)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/North_Borneo_Self-government_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nadaw" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Geek_Pride_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/White_House_Hanukkah_Party" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ab-Zohr" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vend\u00e9miaire" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Floral_City_Heritage_Days" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/United_States_federal_observances" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Train_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Transgender_Awareness_Week" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dokopiny_Ziemniaka" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/We_Are_One:_The_Obama_Inaugural_Celebration_at_the_Lincoln_Memorial" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Delivery_month" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Philippine_Independence_Day_Parade" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Yom_HaAliyah" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Man's_Day_and_Woman's_Day_(Iceland)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Victory_over_Japan_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Day_of_the_People's_Republic_of_China" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ravindra_Mhatre" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/New_Orleans_Jazz_&_Heritage_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sammakka_Saralamma_Jatara" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/D\u00eda_Nacional_de_Galicia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Asharh" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Nine_Days" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Republic_Day_(Republic_of_Macedonia)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pusn\u00e2" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rite_of_passage" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Victory_Day_(Malta)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Yomari_punhi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Epiphany_(holiday)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/People's_Sunday" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Wrestling_shoe" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Eid_al-Fitr" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Day_of_Remembrance_for_Truth_and_Justice" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Martyrs'_Day_(India)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Thursday_of_the_Dead" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/UN_Chinese_Language_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/First_Day_of_Summer" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Fiesta_Nacional_de_la_Danza" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Amburbium" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gita_Jayanti" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ashanti_Yam_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mothering_Sunday" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/100_years_of_women_in_transport_campaign" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jongmyo_jerye" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ochpaniztli" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Norbertine_Rite" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/World_Intellectual_Property_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Greek_festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Christmas_in_the_Philippines" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tax_amnesty" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ferrymead_125" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Manabasa_Gurubara" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pokemon20" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Yule" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dormition_of_the_Mother_of_God" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/H\u0131d\u0131rellez" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Access_to_Information_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Carmelite_Rite" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Panay_Liberation_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/2002_in_Malaysia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Attrition_(dental)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nirjala_Ekadashi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bank_holiday" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Christmas_tree_plundering" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Stuttering_Awareness_Week" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Cleavage_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Talabukon_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Holy_Week_in_Spain" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Confederate_History_Month" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Asian_Excellence_Awards" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Carlyle_Holiday" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ramadan" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nayon" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Blood_wings" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Shakrain" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Law_Day_(United_States)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Carnival_in_Belize" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Micareta" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Siyum_HaShas" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Batik_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Fossil_Fools_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Eighth_(United_States)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/\u014cmisoka" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Guru_Purnima" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chandeshwori_Jatra" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Monkey_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sami_National_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Teej" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Songkran_(Thailand)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Ayatollah_(football_celebration)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Washington's_Birthday" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Flag_Day_(Argentina)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sangken" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Radio_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Darwin_2009:_A_Pittsburgh_Partnership" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Renn_Fayre" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hadaka_Matsuri" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/1983\u201384_British_Home_Championship" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ambrosian_Rite" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jumu'atul-Wida" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/International_Day_of_Peace" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/March" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lancashire_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Akwasidae_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/DNA_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Parade" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Repentance_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/New_Year's_Eve" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Pizza_Month" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Holiday_of_the_City_of_Miskolc" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Blasphemy_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/LePox'a" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/List_of_observances_in_the_United_States_by_presidential_proclamation" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jewel_of_Russia_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/World_Teachers'_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Child_Health_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cosmonautics_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hillbilly_Days" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Umchwasho" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pintados-Kasadyaan" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Roodmas" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mummer's_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chalica" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rita_Angus_Residency" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ambarvalia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Karnataka_Rajyotsava" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Willka_Raymi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Luminato" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pesach_Sheni" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tom_and_Jerry:_A_Nutcracker_Tale" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Shrawan_(Nepali_calendar)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Father's_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rare_Disease_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Prabodhini_Ekadashi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Anti-Bullying_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Giant_Lantern_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Maharashtra_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Day_of_the_Sun" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Unification_Day_(Cameroon)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/World_Hepatitis_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/World_Usability_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bastille_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Safar" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Akshaya_Tritiya" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/L\u00e0yu\u00e8" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Aztec_New_Year" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Leeds_Pride" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Huey_Tecuilhuitl" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Workers'_Memorial_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/UN_French_Language_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ashadh_(Nepali_calendar)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/D\u00eda_del_Mar" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Independence_Day_(Bangladesh)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Maius" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Laba_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sahasra_purna_chandrodayam" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Navy_Day_(Chile)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Day_of_the_Republic_of_China" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Imbolc" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Palm_Sunday" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/SumBingTik_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/\u015eeva_Zistan\u00ea" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Independence_Day_(United_States)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Wide_World_Over" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/International_Women's_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pain_Awareness_Month" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mother's_Day_(United_States)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Messidor" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Bike_Month" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vivaha_Panchami" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Fenakiwi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Whitsundays_(disambiguation)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/La_Ceiba_Carnival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Fiestas_patronales_in_Puerto_Rico" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rakhri" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/White_Lotus_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/World_Prematurity_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bennington_Battle_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bhau-beej" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pitru_Paksha" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lychee_and_Dog_Meat_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Entrepreneurs'_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rat_trick" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Se\u00f1orita_Panam\u00e1_2002" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/World_No_Tobacco_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Funeral_procession" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/International_Day_against_Nuclear_Tests" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rabindra_Jayanti" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Singles_Awareness_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Winter_carnival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Maifest" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sikmogil" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Srivari_Brahmotsavam" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Human_Rights_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Peace_Jubilee" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ati-Atihan_festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Jaanip\u00e4ev" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/World_Breastfeeding_Week" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Waso" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Spiritual_Baptist/Shouter_Liberation_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dengaku" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/1992_in_Malaysia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Fifty_Grand_for_Christmas" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tabodwe" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pride_Fest_(Bismarck_and_Mandan,_North_Dakota)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Commonwealth_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/La\u1e5bam" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Fast_of_the_Firstborn" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bloomsday" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Public_holidays_in_Mongolia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Feast_of_Our_Lady_of_Ransom" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Youm-e-Takbir" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/International_Day_of_Zero_Tolerance_to_Female_Genital_Mutilation" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lekhah_Dodi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/World_Mosquito_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ririe_Days" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mobad" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bermuda_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/International_Colour_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Triumph_of_the_Revolution" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Green_Monday" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Comedy_festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Woodstock_Jazz_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Prathamastami" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/General_Pulaski_Memorial_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hobbit_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hoshana_Rabbah" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Baba_Marta_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/German_Unity_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Constitution_Memorial_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/October_Holiday" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Liverpool_Shakespeare_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Thaipusam" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Poush" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sacrament" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Stephen_Foster_Memorial_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Birkat_Hachama" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Brooklyn_Hip-Hop_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Silver_jubilee" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/UN_Arabic_Language_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mha_Puja" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Accession_Day_(Jammu_and_Kashmir)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Victory_dance_(sports)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Day_of_Prayer" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Fast_of_Gedalia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Las_Ma\u00f1anitas_(celebration)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/July" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tagu" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Samjinnal" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/NAIDOC_Week" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Fajr_decade" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Children's_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/White_River,_Mpumalanga" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lag_BaOmer" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Do\u017cynki" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Veterans_Day_(Norway)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Edinburgh's_Hogmanay" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Agrasen_Jayanti" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/International_Sculpture_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Public_holidays_in_Singapore" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/GlobalFest" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Shoppable_Windows" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Terminalia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/February" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Groundhog_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Liberation_Day_(Netherlands)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Labor_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Thrissur_Pooram" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mawlid" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Forefathers'_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Poetry_Month" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/2008_National_Year_of_Reading" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Saint_George's_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Reformation_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Port_Eliot_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kadayawan_Festival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Karva_Chauth" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/UN_English_Language_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Songkran_(Lao)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ninoy_Aquino_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Malanka" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Blue_Mass" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Waitangi_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kanda_Matsuri" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/2008_in_Malaysia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Day_of_the_Dead" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Afghan_wedding" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Leonese_Language_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Eucharist" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ordibehesht" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/International_Lefthanders_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Act_Zluky" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Fiestas_de_Santa_Fe" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Samavartanam" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Swiss_National_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sat_Thai" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Rosa_Parks_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Survivors_of_Suicide_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Global_Money_Week" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tepeilhuitl" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nagoba_Jatara" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Parmouti" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Archbishop_of_Erbil" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cultural_depictions_of_Augustus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/American_Civil_War_Centennial" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ivy_Day_(Ireland)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Women's_History_Month" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Newspaper_Carrier_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bihu" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ambubachi_Mela" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pausha" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Retrocession_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Indian_Arrival_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Madaraka_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Secular_Games" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Puerto_Rico_Constitution_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Svensk_Hyllningsfest" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Black_Friday_(partying)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Fiji_Week" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ngoenyang" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Yhyakh" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Khordad_Sal" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Agila_Social_and_Economic_Carnival" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/National_Veterans'_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/World_Students'_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nyepi" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Grand_Duke's_Official_Birthday" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Valentine's_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nuakhai" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Falles_of_Alzira" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/19_Kislev" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Store_Bededag" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Free_Comic_Book_Day" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Durga_Puja" + } + } + ] + } + } + ], + "entities": [ + { "URI": "http://dbpedia.org/resource/Testa", "surface form": "test2" } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/feastDay", + "surface form": "holidays" + }, + { + "URI": "http://dbpedia.org/ontology/party", + "surface form": "celebrated" + } + ] + }, + { + "id": "306", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Who is the tallest basketball player?", + "keywords": "tallest, basketball player" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:BasketballPlayer ; dbo:height ?num } ORDER BY DESC(?num) OFFSET 0 LIMIT 1" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Thijs_Vermeulen" + } + } + ] + } + } + ] + }, + { + "id": "307", + "answertype": "number", + "aggregation": true, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "How many languages are spoken in Turkmenistan?", + "keywords": "languages, Turkmenistan" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT (COUNT(DISTINCT ?x) AS ?c) WHERE { res:Turkmenistan dbo:language ?x }" + }, + "answers": [ + { + "head": { "vars": ["c"] }, + "results": { + "bindings": [{ "c": { "type": "literal", "value": "2" } }] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Turkmenistan", + "surface form": "Turkmenistan" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/language", + "surface form": "languages" + }, + { + "URI": "http://dbpedia.org/ontology/spokenIn", + "surface form": "spoken" + } + ] + }, + { + "id": "308", + "answertype": "boolean", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Did Che Guevara have children?", + "keywords": "children, Che Guevara" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> ASK WHERE { res:Che_Guevara dbo:child ?uri }" + }, + "answers": [{ "head": {}, "results": {}, "boolean": true }], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Che_Guevara", + "surface form": "Che Guevara" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/child", + "surface form": "children" + } + ] + }, + { + "id": "309", + "answertype": "boolean", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Did Kaurism\u00e4ki ever win the Grand Prix at Cannes?", + "keywords": "Kaurism\u00e4ki, winner, Grand Prix at Cannes" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> ASK WHERE { res:Aki_Kaurism\u00e4ki dbo:award <http://dbpedia.org/resource/Grand_Prix_(Cannes_Film_Festival)> }" + }, + "answers": [{ "head": {}, "results": {}, "boolean": false }], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Aki_Kaurism\u00e4ki", + "surface form": "Kaurism\u00e4ki" + }, + { + "URI": "http://dbpedia.org/resource/Grand_Prix_(Cannes_Film_Festival)", + "surface form": "Grand Prix at Cannes" + } + ], + "relations": [ + { "URI": "http://dbpedia.org/ontology/award", "surface form": "win" } + ] + }, + { + "id": "310", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "To which party does the mayor of Paris belong?", + "keywords": "party, mayor of Paris, belong" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Paris dbo:mayor ?x . ?x dbo:party ?uri }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Socialist_Party_(France)" + } + } + ] + } + } + ], + "entities": [ + { "URI": "http://dbpedia.org/resource/Paris", "surface form": "Paris" } + ], + "relations": [ + { "URI": "http://dbpedia.org/ontology/party", "surface form": "party" }, + { "URI": "http://dbpedia.org/ontology/mayor", "surface form": "mayor" }, + { "URI": "http://dbpedia.org/ontology/date", "surface form": "belong" } + ] + }, + { + "id": "311", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Who is the Formula 1 race driver with the most races?", + "keywords": "Formula 1, race driver, races, most" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:FormulaOneRacer ; dbo:races ?x } ORDER BY DESC(?x) OFFSET 0 LIMIT 1" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Michael_Schumacher" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Race_Driver:_Create_&_Race", + "surface form": "Formula 1 race driver" + } + ], + "relations": [ + { "URI": "http://dbpedia.org/ontology/races", "surface form": "races" } + ] + }, + { + "id": "312", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "What country is Sitecore from?", + "keywords": "country, Sitecore" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Sitecore dbo:foundationPlace ?uri }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Denmark" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Sitecore", + "surface form": "Sitecore" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/country", + "surface form": "country" + } + ] + }, + { + "id": "313", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Give me the birth place of Frank Sinatra.", + "keywords": "birth place, Frank Sinatra" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?place WHERE { res:Frank_Sinatra dbo:birthPlace ?place }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hoboken,_New_Jersey" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Frank_Sinatra", + "surface form": "Frank Sinatra" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/birthPlace", + "surface form": "birth place" + } + ] + }, + { + "id": "314", + "answertype": "boolean", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Is Christian Bale starring in Velvet Goldmine?", + "keywords": "Christian Bale, starring, Velvet Goldmine" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> ASK WHERE { res:Velvet_Goldmine dbo:starring res:Christian_Bale }" + }, + "answers": [{ "head": {}, "results": {}, "boolean": true }], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Christian_Bale", + "surface form": "Christian Bale" + }, + { + "URI": "http://dbpedia.org/resource/Velvet_Goldmine", + "surface form": "Velvet Goldmine" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/starring", + "surface form": "starring" + } + ] + }, + { + "id": "315", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Who is the son of Sonny and Cher?", + "keywords": "son, Sonny and Cher" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { ?uri dbo:parent res:Cher ; dbo:parent res:Sonny_Bono }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chaz_Bono" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Cher", + "surface form": "Sonny and Cher" + }, + { + "URI": "http://dbpedia.org/resource/Sonny_Bono", + "surface form": "Sonny and Cher" + } + ], + "relations": [ + { "URI": "http://dbpedia.org/ontology/child", "surface form": "son" } + ] + }, + { + "id": "316", + "answertype": "number", + "aggregation": true, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "How many ethnic groups live in Slovenia?", + "keywords": "how many, ethnic groups, Slovenia" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT (COUNT(DISTINCT ?uri) AS ?c) WHERE { res:Slovenia dbo:ethnicGroup ?uri }" + }, + "answers": [ + { + "head": { "vars": ["c"] }, + "results": { + "bindings": [{ "c": { "type": "literal", "value": "4" } }] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Slovenia", + "surface form": "Slovenia" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/ethnicGroup", + "surface form": "ethnic" + }, + { + "URI": "http://dbpedia.org/ontology/populationTotal", + "surface form": "live" + } + ] + }, + { + "id": "317", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "What is the capital of Cameroon?", + "keywords": "capital, Cameroon" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Cameroon dbo:capital ?uri }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Yaound\u00e9" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Cameroon", + "surface form": "Cameroon" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/capital", + "surface form": "capital" + } + ] + }, + { + "id": "318", + "answertype": "boolean", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Was Natalie Portman born in the United States?", + "keywords": "Natalie Portman, born, United States" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> ASK WHERE { res:Natalie_Portman dbo:birthPlace ?city . ?city dbo:country res:United_States }" + }, + "answers": [{ "head": {}, "results": {}, "boolean": false }], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Natalie_Portman", + "surface form": "Natalie Portman" + }, + { + "URI": "http://dbpedia.org/resource/United_States", + "surface form": "United States" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/birthPlace", + "surface form": "born" + } + ] + }, + { + "id": "319", + "answertype": "number", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "How many pages does War and Peace have?", + "keywords": "pages, War and Peace" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?n WHERE { res:War_and_Peace dbo:numberOfPages ?n }" + }, + "answers": [ + { + "head": { "vars": ["c"] }, + "results": { + "bindings": [{ "c": { "type": "literal", "value": "1225" } }] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/War_and_Peace", + "surface form": "War and Peace" + } + ], + "relations": [] + }, + { + "id": "320", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Who is the oldest child of Meryl Streep?", + "keywords": "oldest child, Meryl Streep" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Meryl_Streep dbo:child ?uri . ?uri dbo:birthDate ?d } ORDER BY ASC(?d) OFFSET 0 LIMIT 1" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Henry_Wolfe_Gummer" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Meryl_Streep", + "surface form": "Meryl Streep" + } + ], + "relations": [ + { "URI": "http://dbpedia.org/ontology/child", "surface form": "child" } + ] + }, + { + "id": "321", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Which television shows were created by Walt Disney?", + "keywords": "television show, create, Walt Disney" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:TelevisionShow ; dbo:creator res:Walt_Disney }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mickey_Mouse_Clubhouse" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Alice_Comedies" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/List_of_Jiminy_Cricket_educational_serials" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Walt_Disney_anthology_television_series" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Mickey_Mouse_Club" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Walt_Disney", + "surface form": "Walt Disney" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/televisionSeries", + "surface form": "television shows" + }, + { + "URI": "http://dbpedia.org/ontology/creator", + "surface form": "created" + } + ] + }, + { + "id": "322", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "What does IYCM stand for?", + "keywords": "IYCM, stand for" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { ?uri dbo:abbreviation \"IYCM\" }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Youth_Climate_Movement" + } + } + ] + } + } + ], + "entities": [], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/position", + "surface form": "stand" + } + ] + }, + { + "id": "323", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Which types of grapes grow in Oregon?", + "keywords": "grape types, grow, Oregon" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Oregon_wine dbo:growingGrape ?uri }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tempranillo" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pinotage" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Riesling" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vermentino" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Muller_Thurgau" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ehrenfelser" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chasselas" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dolcetto" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Frontenac_(grape)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Malbec" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pinot_gris" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Grenache_blanc" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/St_Croix_(grape)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Blaufr\u00e4nkisch" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Verdejo" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Roussanne" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chardonnay" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Huxelrebe" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Early_Muscat" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Durif" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pinot_noir" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pinot_blanc" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Black_Muscat" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Traminette" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nebbiolo" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Baco_noir" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Marechal_Foch" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Coda_di_Volpe" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/La_Crescent_(grape)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Petit_Verdot" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cabernet_Franc" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/St._Laurent_(grape)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Scheurebe" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Teroldego" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Montepulciano_(grape)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Syrah" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Leon_Millot" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Chenin_blanc" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sauvignon_vert" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Niagara_(grape)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pinot_Meunier" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/La_Crosse_(grape)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kerner_(grape)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tinta_Amarela" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gruner_Veltliner" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Marquette_(grape)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Caprettone" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Grenache" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Lagrein" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Zinfandel" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tinta_Cao" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Marsanne" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cayuga_White" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cabernet_Sauvignon" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Merlot" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Petit_Manseng" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Carm\u00e9n\u00e8re" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mourv\u00e8dre" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Muscat_Canelli" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Fiano_(grape)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sauvignon_blanc" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Aligot\u00e9" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Trousseau_(grape)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sangiovese" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/S\u00e9millon" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gamay_noir" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Counoise" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vignoles_(grape)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Touriga_Nacional" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Sylvaner" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Muscat_Ottonel" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Melon_de_Bourgogne" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Arneis" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Graciano" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Viognier" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Gewurztraminer" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mondeuse_noire" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Auxerrois_Blanc" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Malvasia" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Albari\u00f1o" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tannat" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Barbera" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Oregon", + "surface form": "Oregon" + } + ], + "relations": [ + { "URI": "http://dbpedia.org/property/type", "surface form": "types" }, + { + "URI": "http://dbpedia.org/property/grass", + "surface form": "grapes" + }, + { "URI": "http://dbpedia.org/property/flag", "surface form": "grow" } + ] + }, + { + "id": "324", + "answertype": "boolean", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Was U.S. president Jackson involved in a war?", + "keywords": "U.S. president, Jackson, war" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> ASK WHERE { res:Andrew_Jackson dbo:battle ?battle }" + }, + "answers": [{ "head": {}, "results": {}, "boolean": true }], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Andrew_Jackson", + "surface form": "Jackson" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/address", + "surface form": "involved" + }, + { + "URI": "http://dbpedia.org/ontology/profession", + "surface form": "war" + } + ] + }, + { + "id": "325", + "answertype": "date", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "When was the Titanic completed?", + "keywords": "Titanic, completion date" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?date WHERE { res:RMS_Titanic dbo:completionDate ?date }" + }, + "answers": [ + { + "head": { "vars": ["date"] }, + "results": { + "bindings": [ + { "date": { "type": "literal", "value": "1912-04-02" } } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Titanic_(1953_film)", + "surface form": "Titanic" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/completionDate", + "surface form": "completed" + } + ] + }, + { + "id": "326", + "answertype": "boolean", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Did Tesla win a nobel prize in physics?", + "keywords": "Tesla, nobel prize, physics" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> ASK WHERE { res:Nikola_Tesla dbo:award res:Nobel_Prize_in_Physics }" + }, + "answers": [{ "head": {}, "results": {}, "boolean": false }], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Nikola_Tesla", + "surface form": "Tesla" + }, + { + "URI": "http://dbpedia.org/resource/Nobel_Prize_in_Physics", + "surface form": "nobel prize" + } + ], + "relations": [ + { "URI": "http://dbpedia.org/ontology/award", "surface form": "win" }, + { + "URI": "http://dbpedia.org/property/title", + "surface form": "nobel prize" + }, + { + "URI": "http://dbpedia.org/ontology/animal", + "surface form": "physics" + } + ] + }, + { + "id": "327", + "answertype": "number", + "aggregation": true, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "How many states are in Mexico?", + "keywords": "states, Mexico" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT (COUNT(?uri) AS ?count) WHERE { ?uri dbo:type dbr:States_of_Mexico }" + }, + "answers": [ + { + "head": { "vars": ["c"] }, + "results": { + "bindings": [{ "c": { "type": "literal", "value": "31" } }] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Mexico", + "surface form": "Mexico" + } + ], + "relations": [] + }, + { + "id": "328", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Which scientist is known for the Manhattan Project and the Nobel Peace Prize?", + "keywords": "scientist, known for, Manhattan Project, Nobel Peace Prize" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri dbo:knownFor res:Manhattan_Project ; rdf:type dbo:Scientist ; dbo:knownFor res:Nobel_Peace_Prize }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Joseph_Rotblat" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Manhattan_Project", + "surface form": "Manhattan Project" + }, + { + "URI": "http://dbpedia.org/resource/Nobel_Peace_Prize", + "surface form": "Nobel Peace Prize" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/knownFor", + "surface form": "known for" + }, + { + "URI": "http://dbpedia.org/ontology/knownFor", + "surface form": "known for" + } + ] + }, + { + "id": "329", + "answertype": "number", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "How much did the Lego Movie cost?", + "keywords": "Lego Movie, cost" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?n WHERE { res:The_Lego_Movie dbo:budget ?n }" + }, + "answers": [ + { + "head": { "vars": ["c"] }, + "results": { + "bindings": [{ "c": { "type": "literal", "value": "6.0E7" } }] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/The_Lego_Movie", + "surface form": "Lego Movie" + } + ], + "relations": [ + { "URI": "http://dbpedia.org/ontology/budget", "surface form": "cost" } + ] + }, + { + "id": "330", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Who composed the music for Harold and Maude?", + "keywords": "Harold and Maude, compose, music" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Harold_and_Maude dbo:musicComposer ?uri }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cat_Stevens" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Harold_and_Maude", + "surface form": "Harold and Maude" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/musicComposer", + "surface form": "composed" + }, + { + "URI": "http://dbpedia.org/ontology/musicComposer", + "surface form": "music" + } + ] + }, + { + "id": "331", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "List all episodes of the first season of the HBO television series The Sopranos.", + "keywords": "HBO, television series, Sopranos, first season, episodes" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { ?uri dbo:series res:The_Sopranos ; dbo:seasonNumber 1 }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Isabella_(The_Sopranos)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Meadowlands_(The_Sopranos)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/I_Dream_of_Jeannie_Cusamano" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Legend_of_Tennessee_Moltisanti" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Boca_(The_Sopranos)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nobody_Knows_Anything" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pax_Soprana" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/A_Hit_Is_a_Hit" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Denial,_Anger,_Acceptance" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/College_(The_Sopranos)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/46_Long" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Sopranos_(episode)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Down_Neck" + } + } + ] + } + } + ], + "entities": [ + { "URI": "http://dbpedia.org/resource/HBO", "surface form": "HBO" }, + { + "URI": "http://dbpedia.org/resource/The_Sopranos_(episode)", + "surface form": "television series The Sopranos" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/episodeNumber", + "surface form": "episodes" + }, + { + "URI": "http://dbpedia.org/ontology/seasonNumber", + "surface form": "season" + } + ] + }, + { + "id": "332", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Which city has the least inhabitants?", + "keywords": "city, the least inhabitants" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:City ; dbo:populationTotal ?pop } ORDER BY ASC(?pop) OFFSET 0 LIMIT 1" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Bakhdida" + } + } + ] + } + } + ], + "entities": [], + "relations": [ + { "URI": "http://dbpedia.org/ontology/city", "surface form": "city" }, + { + "URI": "http://dbpedia.org/ontology/country", + "surface form": "inhabitants" + } + ] + }, + { + "id": "333", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Where is Syngman Rhee buried?", + "keywords": "Syngman Rhee, buried" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Syngman_Rhee dbo:restingPlace ?uri }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Seoul_National_Cemetery" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Syngman_Rhee", + "surface form": "Syngman Rhee" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/restingPlace", + "surface form": "buried" + } + ] + }, + { + "id": "334", + "answertype": "boolean", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Does Neymar play for Real Madrid?", + "keywords": "Neymar, play, Real Madrid" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> ASK WHERE { res:Neymar dbo:team <http://dbpedia.org/resource/Real_Madrid_C.F.> }" + }, + "answers": [{ "head": {}, "results": {}, "boolean": false }], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Neymar", + "surface form": "Neymar" + }, + { + "URI": "http://dbpedia.org/resource/Jorge_Mer\u00e9", + "surface form": "Real Madrid" + } + ], + "relations": [ + { "URI": "http://dbpedia.org/ontology/team", "surface form": "play" } + ] + }, + { + "id": "335", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Who wrote the book The Pillars of the Earth?", + "keywords": "wrote, book, The pillars of the Earth" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:The_Pillars_of_the_Earth dbo:author ?uri }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ken_Follett" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/The_Pillars_of_the_Earth", + "surface form": "The Pillars of the Earth" + } + ], + "relations": [ + { "URI": "http://dbpedia.org/ontology/author", "surface form": "wrote" } + ] + }, + { + "id": "336", + "answertype": "boolean", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Do Prince Harry and Prince William have the same parents?", + "keywords": "Prince Harry, Prince William, same, parents" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> ASK WHERE { <http://dbpedia.org/resource/Prince_William,_Duke_of_Cambridge> dbo:parent ?x . res:Prince_Harry dbo:parent ?x }" + }, + "answers": [{ "head": {}, "results": {}, "boolean": true }], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Prince_Harry", + "surface form": "Prince Harry" + }, + { + "URI": "http://dbpedia.org/resource/Prince_William,_Duke_of_Cambridge", + "surface form": "Prince William" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/parent", + "surface form": "parents" + } + ] + }, + { + "id": "337", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Who was the doctoral supervisor of Albert Einstein?", + "keywords": "doctoral supervisor, Albert Einstein" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Albert_Einstein dbo:doctoralAdvisor ?uri }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Alfred_Kleiner" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Albert_Einstein", + "surface form": "Albert Einstein" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/doctoralAdvisor", + "surface form": "doctoral supervisor" + } + ] + }, + { + "id": "338", + "answertype": "boolean", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Does Breaking Bad have more episodes than Game of Thrones?", + "keywords": "Breaking Bad, episodes, more than, Game of Thrones" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> ASK WHERE { res:Breaking_Bad dbo:numberOfEpisodes ?x . res:Game_of_Thrones dbo:numberOfEpisodes ?y FILTER ( ?y > ?x ) }" + }, + "answers": [{ "head": {}, "results": {}, "boolean": false }], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Breaking_Bad", + "surface form": "Breaking Bad" + }, + { + "URI": "http://dbpedia.org/resource/Game_of_Thrones", + "surface form": "Game of Thrones" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/episodeNumber", + "surface form": "episodes" + } + ] + }, + { + "id": "339", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Who was Vincent van Gogh inspired by?", + "keywords": "person, inspiring, Vincent van Gogh" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { ?uri dbo:influenced res:Vincent_van_Gogh }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Anton_Mauve" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Vincent_van_Gogh", + "surface form": "Vincent van Gogh" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/influenced", + "surface form": "inspired" + } + ] + }, + { + "id": "340", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Which building after the Burj Khalifa has the most floors?", + "keywords": "building, after, Burj Khalifa, most floors" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { res:Burj_Khalifa dbo:floorCount ?burj . ?uri rdf:type dbo:Building ; dbo:floorCount ?proj FILTER ( ?proj < ?burj ) } ORDER BY DESC(?proj) LIMIT 1" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/102_Incheon_Tower" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Burj_Khalifa", + "surface form": "Burj Khalifa" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/building", + "surface form": "building" + }, + { + "URI": "http://dbpedia.org/ontology/floorCount", + "surface form": "floors" + } + ] + }, + { + "id": "341", + "answertype": "string", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "What was the final result of the War of the Roses?", + "keywords": "result, War of Roses" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT DISTINCT ?result WHERE { ?uri dbo:isPartOfMilitaryConflict dbr:Wars_of_the_Roses ; dbo:result ?result ; dbo:date ?date } ORDER BY DESC(?date) OFFSET 0 LIMIT 1" + }, + "answers": [ + { + "head": { "vars": ["string"] }, + "results": { + "bindings": [ + { + "string": { + "type": "literal", + "value": "Decisive Tudor victory" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/The_War_of_the_Roses_(film)", + "surface form": "War of the Roses" + } + ], + "relations": [] + }, + { + "id": "342", + "answertype": "number", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "How much did Pulp Fiction cost?", + "keywords": "cost, Pulp Fiction" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?n WHERE { res:Pulp_Fiction dbo:budget ?n }" + }, + "answers": [ + { + "head": { "vars": ["c"] }, + "results": { + "bindings": [{ "c": { "type": "literal", "value": "8.0" } }] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Pulp_Fiction", + "surface form": "Pulp Fiction" + } + ], + "relations": [ + { "URI": "http://dbpedia.org/ontology/budget", "surface form": "cost" } + ] + }, + { + "id": "343", + "answertype": "boolean", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Is proinsulin a protein?", + "keywords": "proinsulin, protein" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> ASK WHERE { res:Proinsulin rdf:type dbo:Protein }" + }, + "answers": [{ "head": {}, "results": {}, "boolean": true }] + }, + { + "id": "344", + "answertype": "boolean", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Do Urdu and Persian have a common root?", + "keywords": "Urdu, Persian, common root" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> ASK WHERE { dbr:Urdu dbo:languageFamily ?uri . dbr:Persian_language dbo:languageFamily ?uri }" + }, + "answers": [{ "head": {}, "results": {}, "boolean": true }], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Urdu_Wikipedia", + "surface form": "Urdu and Persian" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/parent", + "surface form": "common root" + } + ] + }, + { + "id": "345", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Who is starring in Spanish movies produced by Benicio del Toro?", + "keywords": "starring, Spanish movies, produced, Benicio del Toro" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?film rdf:type dbo:Film ; dbo:country res:Spain ; dbo:producer res:Benicio_del_Toro ; dbo:starring ?uri . ?uri rdf:type dbo:Person }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Benicio_del_Toro" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Spain", + "surface form": "Spanish movies" + }, + { + "URI": "http://dbpedia.org/resource/The_Movies_(film)", + "surface form": "Spanish movies" + }, + { + "URI": "http://dbpedia.org/resource/Benicio_del_Toro", + "surface form": "Benicio del Toro" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/starring", + "surface form": "starring" + }, + { + "URI": "http://dbpedia.org/ontology/wineProduced", + "surface form": "produced" + }, + { "URI": "http://dbpedia.org/ontology/country", "surface form": "" } + ] + }, + { + "id": "346", + "answertype": "boolean", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Is Lake Baikal bigger than the Great Bear Lake?", + "keywords": "Lake Baikal, bigger than, Great Bear Lake" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> ASK WHERE { res:Lake_Baikal dbo:areaTotal ?a1 . res:Great_Bear_Lake dbo:areaTotal ?a2 FILTER ( ?a1 > ?a2 ) }" + }, + "answers": [{ "head": {}, "results": {}, "boolean": true }], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Lake_Baikal", + "surface form": "\"Lake Baikal" + }, + { + "URI": "http://dbpedia.org/resource/Great_Bear_Lake", + "surface form": "\"Great Bear Lake" + } + ], + "relations": [] + }, + { + "id": "347", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Show me all books in Asimov's Foundation series.", + "keywords": "books, Asimov, Foundation series" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { ?uri dbo:series res:Foundation_series }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Originist" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Foundation_and_Earth" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Forward_the_Foundation" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Asimov_(disambiguation)", + "surface form": "Asimov" + }, + { + "URI": "http://dbpedia.org/resource/Foundation_series", + "surface form": " Foundation series" + } + ], + "relations": [ + { "URI": "http://dbpedia.org/ontology/show", "surface form": "show" }, + { "URI": "http://dbpedia.org/property/books", "surface form": "books" } + ] + }, + { + "id": "348", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Where was Bach born?", + "keywords": "birthplace, Bach" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Johann_Sebastian_Bach dbo:birthPlace ?uri }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Eisenach" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Johann_Sebastian_Bach", + "surface form": "Bach" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/birthPlace", + "surface form": "born" + } + ] + }, + { + "id": "349", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Which city has the oldest running metro?", + "keywords": "city, oldest running metro" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT ?loc WHERE { ?uri dbo:type dbr:Rapid_transit ; dbo:openingYear ?date ; dbo:location ?loc . ?loc rdf:type dbo:City } ORDER BY ASC(?date) LIMIT 1" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Almaty" + } + } + ] + } + } + ], + "entities": [], + "relations": [ + { "URI": "http://dbpedia.org/ontology/city", "surface form": "city" }, + { + "URI": "http://dbpedia.org/ontology/government", + "surface form": "running" + }, + { + "URI": "http://dbpedia.org/ontology/populationMetro", + "surface form": "metro" + } + ] + }, + { + "id": "350", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Who designed the Brooklyn Bridge?", + "keywords": "Brooklyn Bridge, design" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Brooklyn_Bridge dbo:architect ?uri }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/John_Augustus_Roebling" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Brooklyn_Bridge", + "surface form": "Brooklyn Bridge" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/property/designer", + "surface form": "designed" + } + ] + }, + { + "id": "351", + "answertype": "number", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "How many people live in Eurasia?", + "keywords": "people, Eurasia" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?population WHERE { res:Eurasia dbo:populationTotal ?population }" + }, + "answers": [ + { + "head": { "vars": ["c"] }, + "results": { + "bindings": [{ "c": { "type": "literal", "value": "5041175000" } }] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Eurasia", + "surface form": "Eurasia" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/populationTotal", + "surface form": "live" + } + ] + }, + { + "id": "352", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Who is the host of the BBC Wildlife Specials?", + "keywords": "host, BBC Wildlife Specials" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:BBC_Wildlife_Specials dbo:presenter ?uri }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/David_Attenborough" + } + } + ] + } + } + ], + "entities": [ + { "URI": "http://dbpedia.org/resource/BBC", "surface form": "BBC" }, + { + "URI": "http://dbpedia.org/resource/BBC_Wildlife_Specials", + "surface form": "Wildlife Specials" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/presenter", + "surface form": "host" + } + ] + }, + { + "id": "353", + "answertype": "number", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "What is the total population of Melbourne, Florida?", + "keywords": "total population, Melbourne Florida" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> SELECT ?uri WHERE { <http://dbpedia.org/resource/Melbourne,_Florida> dbo:populationTotal ?uri }" + }, + "answers": [ + { + "head": { "vars": ["c"] }, + "results": { + "bindings": [{ "c": { "type": "literal", "value": "76068" } }] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Melbourne,_Florida", + "surface form": "Melbourne, Florida" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/populationTotal", + "surface form": "total population" + } + ] + }, + { + "id": "354", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "What country is Mount Everest in?", + "keywords": "country, Mount Everest" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { res:Mount_Everest dbo:locatedInArea ?uri . ?uri rdf:type dbo:Country }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/China" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Nepal" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Mount_Everest", + "surface form": "Mount Everest" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/country", + "surface form": "country" + } + ] + }, + { + "id": "355", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "To which artistic movement did the painter of The Three Dancers belong?", + "keywords": "artistic movement, painter, The Three Dancers" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:The_Three_Dancers dbo:author ?person . ?person dbo:movement ?uri }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cubism" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Surrealism" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/The_Three_Dancers", + "surface form": "The Three Dancers" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/movement", + "surface form": "artistic movement" + }, + { + "URI": "http://dbpedia.org/ontology/painter", + "surface form": "painter" + }, + { "URI": "http://dbpedia.org/ontology/date", "surface form": "belong" } + ] + }, + { + "id": "356", + "answertype": "date", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "When did Operation Overlord commence?", + "keywords": "when, Operation Overlord, commence" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?d WHERE { res:Operation_Overlord dbo:date ?d }" + }, + "answers": [ + { + "head": { "vars": ["date"] }, + "results": { + "bindings": [ + { "date": { "type": "literal", "value": "1944-08-30" } } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Operation_Overlord", + "surface form": "Operation Overlord commence" + } + ], + "relations": [ + { "URI": "http://dbpedia.org/ontology/date", "surface form": "when" } + ] + }, + { + "id": "357", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "What is the bridge with the longest span?", + "keywords": "bridge, longest span" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Bridge ; dbo:mainspan ?s } ORDER BY DESC(?s) OFFSET 0 LIMIT 1" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Overseas_Highway" + } + } + ] + } + } + ], + "entities": [], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/discipline", + "surface form": "bridge" + }, + { + "URI": "http://dbpedia.org/ontology/mainspan", + "surface form": "span" + } + ] + }, + { + "id": "358", + "answertype": "boolean", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Is there a video game called Battle Chess?", + "keywords": "video game, Battle Chess" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> ASK WHERE { ?uri rdf:type dbo:VideoGame ; rdfs:label \"Battle Chess\"@en }" + }, + "answers": [{ "head": {}, "results": {}, "boolean": true }], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Battle_Chess", + "surface form": "Battle Chess" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/property/release", + "surface form": "video game" + }, + { "URI": "http://dbpedia.org/ontology/alias", "surface form": "called" } + ] + }, + { + "id": "359", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Who was buried in the Great Pyramid of Giza?", + "keywords": "buried, Great Pyramid of Giza" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?uri WHERE { ?uri dbo:restingPlace dbr:Great_Pyramid_of_Giza }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hetepheres_II" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hetepheres_I" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Great_Pyramid_of_Giza", + "surface form": "Great Pyramid of Giza" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/weight", + "surface form": "buried" + } + ] + }, + { + "id": "360", + "answertype": "boolean", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Does the Ford Motor Company have a manufacturing plant in Malaysia?", + "keywords": "Ford Motor Company, manufacturing plant, Malaysia" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> ASK WHERE { ?uri dbo:assembly dbr:Malaysia ; dbo:manufacturer dbr:Ford_Motor_Company }" + }, + "answers": [{ "head": {}, "results": {}, "boolean": true }], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Ford_Motor_Company", + "surface form": "Ford Motor Company" + }, + { + "URI": "http://dbpedia.org/resource/Malaysia", + "surface form": "Malaysia" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/property/industry", + "surface form": "manufacturing plant" + } + ] + }, + { + "id": "361", + "answertype": "boolean", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Did Socrates influence Aristotle?", + "keywords": "Socrates, influence, Aristotle" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> ASK WHERE { res:Aristotle dbo:influencedBy res:Socrates }" + }, + "answers": [{ "head": {}, "results": {}, "boolean": true }], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Socrates", + "surface form": "Socrates" + }, + { + "URI": "http://dbpedia.org/resource/Aristotle", + "surface form": "Aristotle" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/influencedBy", + "surface form": "influence" + } + ] + }, + { + "id": "362", + "answertype": "number", + "aggregation": true, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "How many children did Benjamin Franklin have?", + "keywords": "Benjamin Franklin, child" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT (COUNT(DISTINCT ?uri) AS ?c) WHERE { res:Benjamin_Franklin dbo:child ?uri }" + }, + "answers": [ + { + "head": { "vars": ["c"] }, + "results": { + "bindings": [{ "c": { "type": "literal", "value": "3" } }] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Benjamin_Franklin", + "surface form": "Benjamin Franklin" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/property/children", + "surface form": "children" + } + ] + }, + { + "id": "363", + "answertype": "number", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "How tall is Michael Jordan?", + "keywords": "tall, Michael Jordan" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?num WHERE { res:Michael_Jordan dbo:height ?num }" + }, + "answers": [ + { + "head": { "vars": ["c"] }, + "results": { + "bindings": [{ "c": { "type": "literal", "value": "1.9812" } }] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Michael_Jordan", + "surface form": "Michael Jordan" + } + ], + "relations": [ + { "URI": "http://dbpedia.org/ontology/height", "surface form": "tall" } + ] + }, + { + "id": "364", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "In which UK city are the headquarters of the MI6?", + "keywords": "MI6, headquarters, city, UK" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { res:Secret_Intelligence_Service dbo:headquarter ?uri . ?uri dbo:country res:United_Kingdom }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/London" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/United_Kingdom", + "surface form": "UK" + }, + { + "URI": "http://dbpedia.org/resource/Secret_Intelligence_Service", + "surface form": "MI6" + } + ], + "relations": [ + { "URI": "http://dbpedia.org/ontology/city", "surface form": "city" }, + { + "URI": "http://dbpedia.org/ontology/headquarter", + "surface form": "headquarters" + } + ] + }, + { + "id": "365", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Who created Family Guy?", + "keywords": "create, Family Guy" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Family_Guy dbo:creator ?uri }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Seth_MacFarlane" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Family_Guy", + "surface form": "Family Guy" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/creator", + "surface form": "created" + } + ] + }, + { + "id": "366", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "In which city does the Chile Route 68 end?", + "keywords": "city, Chile Route 68, ends" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Chile_Route_68 dbo:routeEnd ?uri }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Valpara\u00edso" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Chile_Route_68", + "surface form": "Chile Route 68 end" + } + ], + "relations": [ + { "URI": "http://dbpedia.org/ontology/city", "surface form": "city" } + ] + }, + { + "id": "367", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Give me the grandchildren of Elvis Presley.", + "keywords": "Elvis Presley, grandchildren" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Elvis_Presley dbo:child ?child . ?child dbo:child ?uri }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Riley_Keough" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Elvis_Presley", + "surface form": "Elvis Presley" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/child", + "surface form": "grandchildren" + } + ] + }, + { + "id": "368", + "answertype": "date", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "When did the Ming dynasty dissolve?", + "keywords": "dissolve, Ming dynasty" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?date WHERE { res:Ming_dynasty dbo:dissolutionDate ?date }" + }, + "answers": [ + { + "head": { "vars": ["date"] }, + "results": { + "bindings": [ + { "date": { "type": "literal", "value": "1644-04-25" } } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Ming_dynasty", + "surface form": "Ming dynasty dissolve" + } + ], + "relations": [ + { "URI": "http://dbpedia.org/ontology/date", "surface form": "when" } + ] + }, + { + "id": "369", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "In which military conflicts did Lawrence of Arabia participate?", + "keywords": "Lawrence of Arabia, military conflict" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:T._E._Lawrence dbo:battle ?uri }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Battle_of_Aqaba" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/World_War_I" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Capture_of_Damascus" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Siege_of_Medina" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Arab_Revolt" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Battle_of_Megiddo_(1918)" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/T._E._Lawrence", + "surface form": "Lawrence of Arabia" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/militaryBranch", + "surface form": "military conflicts" + }, + { + "URI": "http://dbpedia.org/ontology/participant", + "surface form": "participate" + } + ] + }, + { + "id": "370", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "What is the timezone in San Pedro de Atacama?", + "keywords": "timezone, San Pedro de Atacama" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:San_Pedro_de_Atacama dbo:timeZone ?uri }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Time_in_Chile" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/San_Pedro_de_Atacama", + "surface form": "San Pedro de Atacama" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/timeZone", + "surface form": "timezone" + } + ] + }, + { + "id": "371", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Give me all books by William Goldman with more than 300 pages.", + "keywords": "book, William Goldman, pages, more than 300" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Book ; dbo:author res:William_Goldman ; dbo:numberOfPages ?x FILTER ( ?x > 300 ) }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Marathon_Man_(novel)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Which_Lie_Did_I_Tell%3F" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Hype_and_Glory" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Boys_and_Girls_Together" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tinsel_(novel)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Control_(novel)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Color_of_Light" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Princess_Bride" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Wait_Till_Next_Year" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Brothers_(Goldman_novel)" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/William_Goldman", + "surface form": "William Goldman" + }, + { "URI": "http://dbpedia.org/resource/300", "surface form": "300" } + ], + "relations": [ + { "URI": "http://dbpedia.org/ontology/volume", "surface form": "books" } + ] + }, + { + "id": "372", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "What did Bruce Carver die from?", + "keywords": "Bruce Carver, die" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Bruce_Carver dbo:deathCause ?uri }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Cancer" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Bruce_Carver", + "surface form": "Bruce Carver" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/deathCause", + "surface form": "die" + } + ] + }, + { + "id": "373", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Which subsidiary of Lufthansa serves both Dortmund and Berlin Tegel?", + "keywords": "subsidiary, Lufthansa, serve, Dortmund, Berlin Tegel" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Lufthansa dbo:subsidiary ?uri . ?uri dbo:targetAirport res:Dortmund_Airport ; dbo:targetAirport res:Berlin_Tegel_Airport }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Germanwings" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Lufthansa", + "surface form": "Lufthansa" + }, + { + "URI": "http://dbpedia.org/resource/Dortmund_Airport", + "surface form": "Dortmund" + }, + { + "URI": "http://dbpedia.org/resource/Berlin_Tegel_Airport", + "surface form": "Berlin Tegel" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/subsidiary", + "surface form": "subsidiary" + }, + { "URI": "http://dbpedia.org/ontology/chain", "surface form": "serves" } + ] + }, + { + "id": "374", + "answertype": "boolean", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Does Abraham Lincoln's death place have a website?", + "keywords": "Abraham Lincoln, death place, website" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> ASK WHERE { res:Abraham_Lincoln dbo:deathPlace ?p . ?p dbo:website ?w }" + }, + "answers": [{ "head": {}, "results": {}, "boolean": false }], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Abraham_Lincoln", + "surface form": "Abraham Lincoln" + }, + { + "URI": "http://dbpedia.org/resource/This_Place_Is_Death", + "surface form": " death place" + }, + { + "URI": "http://dbpedia.org/resource/Website", + "surface form": "website" + } + ], + "relations": [] + }, + { + "id": "375", + "answertype": "boolean", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Did Elvis Presley have children?", + "keywords": "Elvis Presley, children" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> ASK WHERE { res:Elvis_Presley dbo:child ?uri }" + }, + "answers": [{ "head": {}, "results": {}, "boolean": true }], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Elvis_Presley", + "surface form": "Elvis Presley" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/child", + "surface form": "children" + } + ] + }, + { + "id": "376", + "answertype": "boolean", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Is Michelle Obama the wife of Barack Obama?", + "keywords": "Michelle Obama, wife, Barack Obama" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> ASK WHERE { res:Barack_Obama dbo:spouse res:Michelle_Obama }" + }, + "answers": [{ "head": {}, "results": {}, "boolean": true }], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Michelle_Obama", + "surface form": "Michelle Obama" + }, + { + "URI": "http://dbpedia.org/resource/Barack_Obama", + "surface form": "Barack Obama" + } + ], + "relations": [ + { "URI": "http://dbpedia.org/ontology/spouse", "surface form": "wife" } + ] + }, + { + "id": "377", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "In which city does Sylvester Stallone live?", + "keywords": "city, live, Sylvester Stallone" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:City . res:Sylvester_Stallone dbo:residence ?uri }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Beverly_Hills,_California" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Sylvester_Stallone", + "surface form": "Sylvester Stallone" + } + ], + "relations": [ + { "URI": "http://dbpedia.org/ontology/city", "surface form": "city" }, + { + "URI": "http://dbpedia.org/ontology/residence", + "surface form": "live" + } + ] + }, + { + "id": "378", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Which books by Kerouac were published by Viking Press?", + "keywords": "book, Kerouac, publish, Viking Press" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Book ; dbo:publisher res:Viking_Press ; dbo:author res:Jack_Kerouac }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/On_the_Road" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Door_Wide_Open" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Atop_an_Underwood:_Early_Stories_and_Other_Writings" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Jack_Kerouac", + "surface form": "Kerouac" + }, + { + "URI": "http://dbpedia.org/resource/Viking_Press", + "surface form": "Viking Press" + } + ], + "relations": [ + { "URI": "http://dbpedia.org/ontology/title", "surface form": "books" }, + { + "URI": "http://dbpedia.org/ontology/publisher", + "surface form": "published" + } + ] + }, + { + "id": "379", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Who wrote the song Hotel California?", + "keywords": "write, song, Hotel California" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Hotel_California dbo:writer ?uri }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Don_Felder" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Glenn_Frey" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Don_Henley" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Hotel_California", + "surface form": "song Hotel California" + } + ], + "relations": [ + { "URI": "http://dbpedia.org/ontology/writer", "surface form": "wrote" } + ] + }, + { + "id": "380", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "What is the capital of Canada?", + "keywords": "capital, Canada" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Canada dbo:capital ?uri }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ottawa" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Canada", + "surface form": "Canada" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/capital", + "surface form": "capital" + } + ] + }, + { + "id": "381", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Who is the mayor of Tel Aviv?", + "keywords": "Tel Aviv, mayor" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Tel_Aviv dbo:leaderName ?uri }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ron_Huldai" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Tel_Aviv", + "surface form": "Tel Aviv" + } + ], + "relations": [ + { "URI": "http://dbpedia.org/ontology/mayor", "surface form": "mayor" } + ] + }, + { + "id": "382", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "What form of government does Russia have?", + "keywords": "form of government, Russia" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Russia dbo:governmentType ?uri }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Federalism" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Russia", + "surface form": "Russia" + } + ], + "relations": [ + { "URI": "http://dbpedia.org/ontology/type", "surface form": "form" }, + { + "URI": "http://dbpedia.org/ontology/governmentType", + "surface form": "government" + } + ] + }, + { + "id": "383", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Show me the book that Muhammad Ali wrote.", + "keywords": "book, wrote, Muhammad Ali" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Book ; dbo:author res:Muhammad_Ali }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Greatest:_My_Own_Story" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Soul_of_a_Butterfly" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Muhammad_Ali", + "surface form": "Muhammad Ali" + } + ], + "relations": [ + { "URI": "http://dbpedia.org/ontology/author", "surface form": "wrote" } + ] + }, + { + "id": "384", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Who was the first to climb Mount Everest?", + "keywords": "first, climb, mount Everest" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Mount_Everest dbo:firstAscentPerson ?uri }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tenzing_Norgay" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Edmund_Hillary" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Krzysztof_Wielicki" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Leszek_Cichy" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Mount_Everest", + "surface form": "Mount Everest" + } + ], + "relations": [ + { "URI": "http://dbpedia.org/ontology/board", "surface form": "climb" } + ] + }, + { + "id": "385", + "answertype": "number", + "aggregation": true, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "How many languages are spoken in Colombia?", + "keywords": "languages, Colombia" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT (COUNT(DISTINCT ?uri) AS ?c) WHERE { ?uri rdf:type dbo:Language . res:Colombia dbo:language ?uri }" + }, + "answers": [ + { + "head": { "vars": ["c"] }, + "results": { + "bindings": [{ "c": { "type": "literal", "value": "2" } }] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Colombia", + "surface form": "Colombia" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/language", + "surface form": "languages" + }, + { + "URI": "http://dbpedia.org/ontology/spokenIn", + "surface form": "spoken" + } + ] + }, + { + "id": "386", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "What is the currency of the Czech Republic?", + "keywords": "Czech republic, currency" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Czech_Republic dbo:currency ?uri }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Czech_koruna" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Czech_Republic", + "surface form": "Czech Republic" + }, + { + "URI": "http://dbpedia.org/resource/Czech_Republic", + "surface form": "Czech Republic" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/currency", + "surface form": "currency" + }, + { "URI": "http://dbpedia.org/ontology/country", "surface form": "" } + ] + }, + { + "id": "387", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Where in France is sparkling wine produced?", + "keywords": "produced, France, sparkling wine" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { ?uri dbo:wineProduced res:Sparkling_wine ; dbo:location res:France }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Loire_Valley_(wine)" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Sparkling_wines", + "surface form": "sparkling wine" + }, + { + "URI": "http://dbpedia.org/resource/France", + "surface form": "France" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/parkingInformation", + "surface form": "sparkling" + }, + { + "URI": "http://dbpedia.org/ontology/wineRegion", + "surface form": "wine produced" + } + ] + }, + { + "id": "388", + "answertype": "date", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "When did Boris Becker end his active career?", + "keywords": "Boris Becker, end career" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?d WHERE { res:Boris_Becker dbo:activeYearsEndDate ?d }" + }, + "answers": [ + { + "head": { "vars": ["date"] }, + "results": { + "bindings": [ + { "date": { "type": "literal", "value": "1999-06-25" } } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Boris_Becker", + "surface form": "Boris Becker" + } + ], + "relations": [ + { "URI": "http://dbpedia.org/ontology/result", "surface form": "end" }, + { + "URI": "http://dbpedia.org/ontology/careerPrizeMoney", + "surface form": "active career" + } + ] + }, + { + "id": "389", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Which movies starring Mickey Rourke were directed by Guy Ritchie?", + "keywords": "movies, starring, Mickey Rourke, directed, Guy Ritchie" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Film ; dbo:starring res:Mickey_Rourke ; dbo:director res:Guy_Ritchie }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Hire" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Mickey_Rourke", + "surface form": "Mickey Rourke" + }, + { + "URI": "http://dbpedia.org/resource/Guy_Ritchie", + "surface form": "Guy Ritchie" + } + ], + "relations": [ + { "URI": "http://dbpedia.org/ontology/film", "surface form": "movies" }, + { + "URI": "http://dbpedia.org/ontology/starring", + "surface form": "starring" + }, + { + "URI": "http://dbpedia.org/ontology/president", + "surface form": "directed" + } + ] + }, + { + "id": "390", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "In which films did Julia Roberts as well as Richard Gere play?", + "keywords": "film, play, Julia Roberts, Richard Gere" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Film ; dbo:starring res:Julia_Roberts ; dbo:starring res:Richard_Gere }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Runaway_Bride_(film)" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Pretty_Woman" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Julia_Roberts", + "surface form": "Julia Roberts" + }, + { + "URI": "http://dbpedia.org/resource/Richard_Gere", + "surface form": "Richard Gere" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/numberOfFilms", + "surface form": "films" + }, + { + "URI": "http://dbpedia.org/ontology/starring", + "surface form": "play" + } + ] + }, + { + "id": "391", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Show me Hemingway's autobiography.", + "keywords": "autobiography, Hemingway" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { ?uri dbo:author res:Ernest_Hemingway ; dbo:literaryGenre res:Autobiography }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/A_Moveable_Feast" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Hemingway_House", + "surface form": "Hemingway" + }, + { + "URI": "http://dbpedia.org/resource/Autobiography", + "surface form": " autobiography" + } + ], + "relations": [ + { "URI": "http://dbpedia.org/ontology/show", "surface form": "show" } + ] + }, + { + "id": "392", + "answertype": "number", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "How tall is Amazon Eve?", + "keywords": "Amazon Eve, tall" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?height WHERE { res:Amazon_Eve dbo:height ?height }" + }, + "answers": [ + { + "head": { "vars": ["c"] }, + "results": { + "bindings": [{ "c": { "type": "literal", "value": "2.02" } }] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Amazon_Eve", + "surface form": "Amazon Eve" + } + ], + "relations": [ + { "URI": "http://dbpedia.org/ontology/height", "surface form": "tall" } + ] + }, + { + "id": "393", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "What are the five boroughs of New York?", + "keywords": "five boroughs, New York" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?uri dbo:governmentType <http://dbpedia.org/resource/Borough_(New_York_City)> }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Queens" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Staten_Island" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Manhattan" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/The_Bronx" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Brooklyn" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/New_York", + "surface form": "New York" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/municipality", + "surface form": "boroughs" + } + ] + }, + { + "id": "394", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Give me all Canadian Grunge record labels.", + "keywords": "record label, Canadian, Grunge" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:RecordLabel ; dbo:genre res:Grunge ; dbo:country res:Canada }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Murderecords" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Canada", + "surface form": "Canadian Grunge record labels" + }, + { + "URI": "http://dbpedia.org/resource/Canadian_independent_record_labels", + "surface form": "Canadian Grunge record labels" + } + ], + "relations": [ + { "URI": "http://dbpedia.org/ontology/country", "surface form": "" } + ] + }, + { + "id": "395", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "In which country does the Ganges start?", + "keywords": "Ganges, start, country" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Ganges dbo:sourceCountry ?uri }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/India" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Ganges", + "surface form": "Ganges" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/country", + "surface form": "country" + }, + { "URI": "http://dbpedia.org/ontology/source", "surface form": "start" } + ] + }, + { + "id": "396", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Who is the founder of Penguin Books?", + "keywords": "founder, Penguin Books" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { res:Penguin_Books dbo:founder ?uri }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Allen_Lane" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Penguin_Books", + "surface form": "Penguin Books" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/founder", + "surface form": "founder" + } + ] + }, + { + "id": "397", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Who wrote the Game of Thrones theme?", + "keywords": "writer, Game of Thrones" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Game_of_Thrones dbo:composer ?uri }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Ramin_Djawadi" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Game_of_Thrones", + "surface form": "Game of Thrones" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/composer", + "surface form": "wrote" + } + ] + }, + { + "id": "398", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Who is the president of Eritrea?", + "keywords": "president, Eritrea" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Eritrea dbo:leader ?uri ; dbo:leaderTitle \"President\"@en }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Isaias_Afwerki" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Eritrea", + "surface form": "Eritrea" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/president", + "surface form": "president" + } + ] + }, + { + "id": "399", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "In which city did John F. Kennedy die?", + "keywords": "city, John F. Kennedy, die" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { res:John_F._Kennedy dbo:deathPlace ?uri . ?uri rdf:type dbo:City }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Dallas" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/John_F._Kennedy", + "surface form": "John F. Kennedy" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/deathPlace", + "surface form": "die" + } + ] + }, + { + "id": "400", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "What is the highest mountain in Australia?", + "keywords": "Australia, highest mountain" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Mountain ; dbo:locatedInArea res:Australia ; dbo:elevation ?elevation } ORDER BY DESC(?elevation) LIMIT 1" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mawson_Peak" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Australia", + "surface form": "Australia" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/property/elevation", + "surface form": "highest mountain" + } + ] + }, + { + "id": "401", + "answertype": "string", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Who writes the Farmers' Almanac?", + "keywords": "writes, Farmers' Almanac" + } + ], + "query": { + "sparql": "PREFIX dbp: <http://dbpedia.org/property/> SELECT ?uri WHERE { <http://dbpedia.org/resource/Farmers'_Almanac> dbp:editor ?uri }" + }, + "answers": [ + { + "head": { "vars": ["string"] }, + "results": { + "bindings": [ + { "string": { "type": "literal", "value": "Sandi Duncan" } }, + { "string": { "type": "literal", "value": "Peter Geiger" } } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Farmers_Creek_Township,_Jackson_County,_Iowa", + "surface form": "Farmers" + }, + { + "URI": "http://dbpedia.org/resource/Project_Almanac", + "surface form": " Almanac" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/property/writer", + "surface form": "writes" + } + ] + }, + { + "id": "402", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Give me the currency of China.", + "keywords": "currency, China" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:China dbo:currency ?uri }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Renminbi" + } + } + ] + } + } + ], + "entities": [ + { "URI": "http://dbpedia.org/resource/China", "surface form": "China" } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/currency", + "surface form": "currency" + } + ] + }, + { + "id": "403", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Give me all Swedish oceanographers.", + "keywords": "Swedish, oceanographer" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { ?uri dbo:field res:Oceanography ; dbo:birthPlace res:Sweden }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Vagn_Walfrid_Ekman" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Sweden", + "surface form": "Swedish oceanographers" + }, + { + "URI": "http://dbpedia.org/resource/Swedish", + "surface form": "Swedish oceanographers" + } + ], + "relations": [ + { "URI": "http://dbpedia.org/ontology/country", "surface form": "" }, + { "URI": "http://dbpedia.org/ontology/country", "surface form": "" } + ] + }, + { + "id": "404", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "In which city are the headquarters of the United Nations?", + "keywords": "city, headquarters of the United Nations" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { res:Headquarters_of_the_United_Nations dbo:location ?uri . ?uri rdf:type dbo:City }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/New_York_City" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Headquarters_of_the_United_Nations", + "surface form": "headquarters of the United Nations" + } + ], + "relations": [ + { "URI": "http://dbpedia.org/ontology/city", "surface form": "city" }, + { + "URI": "http://dbpedia.org/ontology/headquarter", + "surface form": "headquarters" + } + ] + }, + { + "id": "405", + "answertype": "boolean", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Is Rita Wilson the wife of Tom Hanks?", + "keywords": "Rita Wilson, wife, Tom Hanks" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> ASK WHERE { res:Tom_Hanks dbo:spouse res:Rita_Wilson }" + }, + "answers": [{ "head": {}, "results": {}, "boolean": true }], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Rita_Wilson", + "surface form": "Rita Wilson" + }, + { + "URI": "http://dbpedia.org/resource/Tom_Hanks", + "surface form": "Tom Hanks" + } + ], + "relations": [ + { "URI": "http://dbpedia.org/property/spouse", "surface form": "wife" } + ] + }, + { + "id": "406", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "In which countries do people speak Japanese?", + "keywords": "which countries, speak, Japanese" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Country ; dbo:language res:Japanese_language }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Japan" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Palau" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Allied_Military_Government_for_Occupied_Territories" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Countries_of_the_United_Kingdom", + "surface form": "countries" + }, + { + "URI": "http://dbpedia.org/resource/Japan", + "surface form": "Japanese" + }, + { + "URI": "http://dbpedia.org/resource/Japanese", + "surface form": "Japanese" + } + ], + "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": "407", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Which of Tim Burton's films had the highest budget?", + "keywords": "highest budget, film, Tim Burton" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { ?uri dbo:director res:Tim_Burton ; dbo:budget ?b } ORDER BY ?b OFFSET 0 LIMIT 1" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Big_Eyes" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Tim_Burton", + "surface form": "Tim Burton" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/numberOfFilms", + "surface form": " films" + }, + { + "URI": "http://dbpedia.org/ontology/elevation", + "surface form": "highest budget" + } + ] + }, + { + "id": "408", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Which museum in New York has the most visitors?", + "keywords": "museum, New York, the most visitors" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Museum ; dbo:location res:New_York_City ; dbo:numberOfVisitors ?num } ORDER BY DESC(?num) OFFSET 0 LIMIT 1" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Metropolitan_Museum_of_Art" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/New_York_City", + "surface form": "New York" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/museum", + "surface form": "museum" + }, + { + "URI": "http://dbpedia.org/ontology/numberOfVisitors", + "surface form": "visitors" + } + ] + }, + { + "id": "409", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "What was the first Queen album?", + "keywords": "first album, Queen" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Album ; dbo:artist <http://dbpedia.org/resource/Queen_(band)> ; dbo:releaseDate ?d } ORDER BY ASC(?d) OFFSET 0 LIMIT 1" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Queen_(Queen_album)" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Queen_(Queen_album)", + "surface form": "Queen album" + } + ], + "relations": [] + }, + { + "id": "410", + "answertype": "string", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "What was the first name of the band Queens of the Stone Age?", + "keywords": "first name, Queens of the Stone Age" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?name WHERE { res:Queens_of_the_Stone_Age dbo:alias ?name }" + }, + "answers": [ + { + "head": { "vars": ["string"] }, + "results": { + "bindings": [ + { + "string": { + "type": "literal", + "value": "Gamma Ray (1996\u20131997)" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Queens_of_the_Stone_Age", + "surface form": "band Queens of the Stone Age" + } + ], + "relations": [] + }, + { + "id": "411", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "What was the last movie with Alec Guinness?", + "keywords": "Alec Guinness, last, movie" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Film ; dbo:starring res:Alec_Guinness ; dbo:releaseDate ?date } ORDER BY DESC(?date) LIMIT 1" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Kafka_(film)" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Alec_Guinness", + "surface form": "Alec Guinness" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/picture", + "surface form": "movie" + } + ] + }, + { + "id": "412", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Give me all actors starring in Last Action Hero.", + "keywords": "actor, starring, Last Action Hero" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Last_Action_Hero dbo:starring ?uri }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Tom_Noonan" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/F._Murray_Abraham" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Arnold_Schwarzenegger" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Mercedes_Ruehl" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Charles_Dance" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Art_Carney" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Frank_McRae" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Austin_O'Brien" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Robert_Prosky" + } + }, + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Anthony_Quinn" + } + } + ] + } + } + ], + "entities": [ + { + "URI": "http://dbpedia.org/resource/Last_Action_Hero", + "surface form": "Last Action Hero" + } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/starring", + "surface form": "starring" + } + ] + }, + { + "id": "413", + "answertype": "resource", + "aggregation": false, + "onlydbo": true, + "hybrid": false, + "question": [ + { + "language": "en", + "string": "Who discovered Pluto?", + "keywords": "discovered, Pluto" + } + ], + "query": { + "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?uri WHERE { dbr:Pluto dbo:discoverer ?uri }" + }, + "answers": [ + { + "head": { "vars": ["uri"] }, + "results": { + "bindings": [ + { + "uri": { + "type": "uri", + "value": "http://dbpedia.org/resource/Clyde_Tombaugh" + } + } + ] + } + } + ], + "entities": [ + { "URI": "http://dbpedia.org/resource/Pluto", "surface form": "Pluto" } + ], + "relations": [ + { + "URI": "http://dbpedia.org/ontology/discovered", + "surface form": "discovered" + } + ] + } + ] +} diff --git a/data/tokenizer.py b/data/tokenizer.py index 45a1dce5ce4c7b95a00c6cb3d5136271d13f27ec..c9c0661fd19c70512256382cb43e7c216277cfba 100644 --- a/data/tokenizer.py +++ b/data/tokenizer.py @@ -1,16 +1,31 @@ -# Parameters: input_file output_file - +# Parameters: input_file output_file er_link_style(optional) +# Example usage: python tokenizer.py qald-9-test-linked.json qald-9-test-tokenized +# Example usage: python tokenizer.py qald-9-test-linked.json qald-9-test-tokenized REPLACE +# Note: output_file is the name of the output file without the extension +# Note: er_link_style is the style of entity linking to use. +# It can be "REPLACE", "APPEND" or blank. Default is no usage of entity links. import sys import json def main(): print(sys.argv[0]) - input_file = sys.argv[1] or "qald-9-test-linked.json" - output_file = sys.argv[2] or "qald-9-test-tokenized" - import json - - # Decides if objects are changed to <objx> or not - TOKENIZE = False + if len(sys.argv) > 1: + input_file = sys.argv[1] + else: + print("Please provide input file") + sys.exit(1) + if len(sys.argv) > 2: + output_file = sys.argv[2] + else: + print("Please provide output file") + sys.exit(1) + if len(sys.argv) > 3: + er_link_style = sys.argv[3] + if (er_link_style != "REPLACE" and er_link_style != "APPEND"): + print("Please provide a valid entity/relationship linking style") + sys.exit(1) + else: + er_link_style = "" prefixes = { "http://dbpedia.org/resource/": "res:", @@ -36,42 +51,23 @@ def main(): out.write("text,summary\n") for item in data["questions"]: # Keeps track of how many objects we have replaced - obj_count = 0 question_string = item["question"][0]["string"] query_string = item["query"]["sparql"] entities = item.get("entities") or [] - # out.write(f'\"{question_string}\", \"{query_string}\"\n') - # out.write(" ".join(["-".join(ent) for ent in entities])+"\n") - # print(query_string) + relations = item.get("relations") or [] # Find first occurence of PREFIX prefix_index = query_string.find("PREFIX") # While there is a PREFIX, find the next one while prefix_index != -1: - # Find the word after PREFIX - prefixed_word = query_string[prefix_index + 7:query_string.find(" ", prefix_index + 7)] # Find next occurence of /> end_index = query_string.find(">", prefix_index) # Remove the prefix query_string = query_string[:prefix_index] + query_string[end_index+2:] - if TOKENIZE: - # Find occurence of prefixed word:xyz in query and replace it with <obj{obj_count}> - obj_index = query_string.find(prefixed_word) - obj_end_index = query_string.find(" ", obj_index) - while obj_index != -1: - query_string = query_string[:obj_index] + f"<obj{obj_count}>" + query_string[obj_end_index:] - obj_index = query_string.find(prefixed_word) - obj_end_index = query_string.find(" ", obj_index) - obj_count += 1 - - # Find next occurence of PREFIX prefix_index = query_string.find("PREFIX") - obj_count = 0 - # Loop through all entities and repalce them with <obj{obj_count}> - # Replace all occurences of the prefix with value in prefixes for prefix in prefixes: @@ -87,17 +83,63 @@ def main(): # Replace all occurences of "COUNT(" with "COUNT( " query_string = query_string.replace("COUNT(", "COUNT( ") - if TOKENIZE: - for entity in entities: - entity_token = entity[1] - entity_index = question_string.find(entity_token) - # print(entity_token) - while entity_index != -1 and question_string[entity_index - 1] != "j": - question_string = question_string[:entity_index] + f"<obj{obj_count}>" + question_string[entity_index+len(entity_token):] - entity_index = question_string.find(entity_token) - obj_count += 1 - - # print("question_string", question_string) + if er_link_style == "APPEND": + # Append all entities to the end of the question + if (len(entities) > 0): + question_string += " | " + + for k, entity in enumerate(entities): + if k > 0: + question_string += " | " + + uri = entity["URI"] + # Hopefully the uri includes a uri which we know how to shorten + + for prefix in prefixes: + if uri.startswith(prefix): + uri = prefixes[prefix] + uri[len(prefix):] + break + question_string += f"{uri}" + + if er_link_style == "REPLACE": + # Helper function since entities and relations are replaced in the same way. + def replace_entity_or_relation(er_source, question_string): + for er in er_source: + uri = er["URI"].strip() + surface_form = er["surface form"].strip() + if not surface_form: + continue + # Hopefully the uri includes a uri which we know how to shorten + + for prefix in prefixes: + if uri.startswith(prefix): + uri = prefixes[prefix] + uri[len(prefix):] + break + + # Find the first occurence of the surface form + er_index = question_string.find(surface_form) + while er_index != -1: + + # Check if the surface form is not part of an already replaced entity/relation + previous_colon = question_string.rfind(":", 0, er_index) + previous_space = question_string.rfind(" ", 0, er_index) + previous_space = max(0, previous_space) + + # If there is a colon to the left and there is a space after it then it is part of an entity/relation + if previous_colon > previous_space and previous_colon != -1: + next_space = question_string.find(" ", er_index) + er_index = question_string.find(surface_form, next_space) + continue + + # Else replace the surface form with the uri + question_string = question_string[:er_index] + uri + question_string[er_index+len(surface_form):] + # Find the next occurence of the surface form + er_index = question_string.find(surface_form, er_index + len(uri)) + return question_string + + question_string = replace_entity_or_relation(entities, question_string) + question_string = replace_entity_or_relation(relations, question_string) + out.write(f'\"{question_string}\", \"{query_string}\"\n') if __name__ == "__main__": diff --git a/data/train-test-split.py b/data/train-test-split.py new file mode 100644 index 0000000000000000000000000000000000000000..4a66e477348ba340ee2edc4e5f42630928fcc939 --- /dev/null +++ b/data/train-test-split.py @@ -0,0 +1,32 @@ +import sys +import json +import random + + + +if __name__ == "__main__": + if len(sys.argv) != 3: + print("Usage: python train-test-split.py <train_percentage> <input_file>") + sys.exit(1) + + train_percentage = int(sys.argv[1]) + input_file = sys.argv[2] + file_name = input_file.split(".json")[0] + + questions = [] + with open(input_file, "r") as f: + data = json.load(f) + questions = data["questions"] + train_size = int(len(questions) * train_percentage / 100) + test_size = len(questions) - train_size + train_questions = random.choices(questions, k=train_size) + test_questions = [q for q in questions if q not in train_questions] + train_data = {"questions": train_questions} + test_data = {"questions": test_questions} + with open(file_name + "-train.json", "w") as f: + json.dump(train_data, f) + + with open(file_name + "-test.json", "w") as f: + json.dump(test_data, f) + +